solarized-emacs

a fork of Bozhidar Batsov's solarized-emacs
git clone https://git.trogloxene.org/solarized-emacs.git
Log | Files | Refs | README

commit 9ac9fb9158006f804428e8322425b70b0d0176b9
parent a9aa77af723cb9282560e31915b693febe23955f
Author: Bozhidar Batsov <bozhidar.batsov@gmail.com>
Date:   Thu, 12 Apr 2012 14:48:17 -0700

Merge pull request #16 from thomasf/org-color

Set org-agenda-structure to solarized foreground color
Diffstat:
Msolarized-theme.el | 21+++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/solarized-theme.el b/solarized-theme.el @@ -326,12 +326,12 @@ `(nav-face-hfile ((,class (:foreground ,red)))) ;; org-mode - `(org-agenda-date-today - ((,class (:foreground "white" :slant italic :weight bold))) t) `(org-agenda-structure - ((,class (:inherit font-lock-comment-face)))) + ((,class (:inherit font-lock-comment-face :foreground ,solarized-fg)))) + `(org-agenda-date-today + ((,class (:slant italic :weight bold))) t) `(org-archived ((,class (:foreground ,solarized-fg :weight bold)))) - `(org-checkbox ((,class (:background ,solarized-bg :foreground "white" + `(org-checkbox ((,class (:background ,solarized-bg :foreground ,solarized-fg :box (:line-width 1 :style released-button))))) `(org-date ((,class (:foreground ,blue :underline t)))) `(org-deadline-announce ((,class (:foreground ,red)))) @@ -358,6 +358,19 @@ `(org-todo ((,class (:bold t :foreground ,red :weight bold)))) `(org-upcoming-deadline ((,class (:inherit font-lock-keyword-face)))) `(org-warning ((,class (:bold t :foreground ,red :weight bold)))) + ;; org-habit + `(org-habit-clear-face ((,class ,(if (eq variant 'light) + `(:foreground ,base02 :background "#bbbbff") + `(:foreground ,base01 :background "blue"))))) + `(org-habit-clear-future-face ((,class (:foreground ,(if (eq variant 'light) base02 base00))))) + `(org-habit-ready-face ((,class ,(if (eq variant 'light) + `(:foreground ,base02 :background "#aaffbb") + `(:foreground ,base02 :background "forestgreen"))))) + `(org-habit-ready-future-face ((,class (:foreground ,base01)))) + `(org-habit-alert-face ((,class (:foreground ,base01)))) + `(org-habit-alert-future-face ((,class (:foreground ,base02)))) + `(org-habit-overdue-face ((,class (:foreground ,base01)))) + `(org-habit-overdue-future-face ((,class (:foreground ,base01)))) ;; outline `(outline-8 ((,class (:inherit default))))