Fixed color of TODOs in org-mode in terminal

In terminals with the Solarized palette, bold green is just base01,
which is just gray.  So we have to unbold it.
This commit is contained in:
Huy 2011-05-04 03:43:01 +10:00
parent bd8f688a8b
commit 35f2377350
1 changed files with 2 additions and 1 deletions

View File

@ -98,6 +98,7 @@ will use the 256 degraded color mode."
(escape-glyph-face ((t (:foreground ,red))))
(fringe ((t (:foreground ,base01 :background ,base02))))
(header-line ((t (:foreground ,base0 :background ,base2))))
(highlight ((t (:background ,base03))))
(highlight ((t (:background ,base02))))
(hl-line ((t (:background ,base02))))
(isearch ((t (:foreground ,yellow :inverse-video t))))
@ -182,7 +183,7 @@ will use the 256 degraded color mode."
;; org
(org-hide ((t (:foreground ,base03))))
(org-todo ((t (:foreground ,base03 :background ,red :weight ,bold))))
(org-done ((t (:foreground ,green :weight ,bold))))
(org-done ((t (:foreground ,base03 :background ,green :weight ,bold))))
(org-todo-kwd-face ((t (:foreground ,red :background ,base03))))
(org-done-kwd-face ((t (:foreground ,green :background ,base03))))
(org-project-kwd-face ((t (:foreground ,violet :background ,base03))))