diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-10-30 23:11:34 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-10-30 23:11:34 -0400 |
commit | 22d5e321086a720359db658367e7f31d91641ef6 (patch) | |
tree | 2b8eee16a753eb527840fb37156ecf8803d65a65 /lisp | |
parent | 46ff13167cd43c32954ee6a4fa49e6978865297b (diff) | |
download | emacs.d-22d5e321086a720359db658367e7f31d91641ef6.tar.gz |
agenda: Use fewer colors
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-theme.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/km-theme.el b/lisp/km-theme.el index 936f56e..ab59915 100644 --- a/lisp/km-theme.el +++ b/lisp/km-theme.el @@ -86,16 +86,16 @@ '(match ((t (:inherit default :background "PaleGreen1")))) '(org-agenda-calendar-event ((t (:inherit font-lock-function-name-face)))) '(org-agenda-calendar-sexp ((t (:inherit font-lock-variable-name-face)))) - '(org-agenda-date ((t (:inherit default)))) + '(org-agenda-date ((t (:foreground "gray40")))) '(org-agenda-date-today ((t (:weight bold)))) '(org-agenda-date-weekend ((t (:inherit org-agenda-date)))) - '(org-agenda-structure ((t (:foreground "gray40")))) + '(org-agenda-structure ((t (:foreground "gray60")))) '(org-date ((t (:inherit font-lock-type-face)))) '(org-done ((t (:foreground "#557755" :background "gray95")))) - '(org-scheduled ((t (:foreground "SeaGreen")))) - '(org-scheduled-today ((t (:inherit org-scheduled :weight bold)))) + '(org-scheduled ((t (:inherit default)))) + '(org-scheduled-today ((t (:inherit org-scheduled)))) '(org-todo ((t (:inherit font-lock-string-face :background "gray95")))) - '(org-upcoming-deadline ((t (:inherit font-lock-constant-face)))) + '(org-upcoming-deadline ((t (:inherit default)))) '(org-warning ((t (:inherit font-lock-string-face)))) '(outline-1 ((t (:inherit font-lock-doc-face)))) '(outline-2 ((t (:inherit font-lock-function-name-face)))) |