From ca7d04cd66309485ded08e169fa8287af56c489b Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 12 Dec 2011 14:49:54 +0100 Subject: [PATCH] Use the default face instead of fancy colors. * org-faces.el (org-agenda-calendar-event) (org-agenda-calendar-sexp): Use the default face. Thanks to Detlef Steuer for reporting this. --- lisp/org-faces.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/org-faces.el b/lisp/org-faces.el index c15cb7d41..c2cfd210f 100644 --- a/lisp/org-faces.el +++ b/lisp/org-faces.el @@ -696,14 +696,14 @@ month and 365.24 days for a year)." :group 'org-faces) (defface org-agenda-calendar-event - '((((background light)) (:foreground "#FFFFFF" :background "#1662AF")) - (((background dark)) (:foreground "blue"))) + (org-compatible-face 'default + nil) "Face used to show events and appointments in the agenda." :group 'org-faces) (defface org-agenda-calendar-sexp - '((((background light)) (:background "light blue")) - (((background dark)) (:foreground "light blue"))) + (org-compatible-face 'default + nil) "Face used to show events computed from a S-expression." :group 'org-faces) -- 2.11.4.GIT