solarized-emacs

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

commit fd116f4c556ffa9b768b6dc35de15356ce021cdf
parent b4ec56c64e823bb735c2c755f607df71c9ec3692
Author: Thomas Frössman <thomasf@jossystem.se>
Date:   Sat, 14 Apr 2012 15:03:11 +0200

Org-mode colors.

Faces previously unaffected by this theme:

- Source block begin/end: fg:comment+italic

- Inside source block: fg:comment

- Ellipsis/folded: fg:comment

Misc modifications:

- Outline titles with :ARCHIVED: tag change
  fg:normal+bold -> fg:comment
  They are supposed to be "inactive" regions so bolding them makes no sense(?)

- Removed org-deadline-announce since it is not referenced in the org-mode
  git repository.

Agenda view modifications:

- Time grid color
  fg:orange -> fg:cyan
  Using the red-yellow range as a color range for scheduling warnings

- Added bold to the scheduled today face

- Upcoming deadline face
  -> fg:yellow+bold

- Warning/deadline overdue face
  fg:red -> fg:orange

- Scheduled previously.
  fg:red -> fg:orange (warning face except the bold+underline)

Diffstat:
Msolarized-theme.el | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/solarized-theme.el b/solarized-theme.el @@ -335,13 +335,12 @@ `(org-agenda-date-today ((,class (:inherit org-agenda-date :slant italic underline: t))) t) `(org-agenda-done ((,class (:foreground ,green))) t) - `(org-archived ((,class (:foreground ,solarized-fg :weight bold)))) + `(org-archived ((,class (:foreground ,solarized-comments :weight normal)))) `(org-block ((,class (:foreground ,solarized-comments)))) `(org-block-begin-line ((,class (:foreground ,solarized-comments :slant italic)))) `(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)))) `(org-done ((,class (:bold t :weight bold :foreground ,green)))) `(org-ellipsis ((,class (:foreground ,solarized-comments)))) `(org-formula ((,class (:foreground ,yellow)))) @@ -357,15 +356,16 @@ `(org-level-8 ((,class (:foreground ,blue)))) `(org-link ((,class (:foreground ,yellow :underline t)))) `(org-scheduled ((,class (:foreground ,green)))) - `(org-scheduled-previously ((,class (:foreground ,red)))) - `(org-scheduled-today ((,class (:foreground ,blue)))) + `(org-scheduled-previously + ((,class (:foreground ,orange)))) + `(org-scheduled-today ((,class (:bold t :foreground ,blue :weight bold)))) `(org-special-keyword ((,class (:foreground ,yellow)))) `(org-table ((,class (:foreground ,green)))) `(org-tag ((,class (:bold t :weight bold)))) - `(org-time-grid ((,class (:foreground ,orange)))) + `(org-time-grid ((,class (:foreground ,cyan)))) `(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-upcoming-deadline ((,class (:bold t :foreground ,yellow )))) + `(org-warning ((,class (:bold t :foreground ,orange :weight bold :underline t)))) ;; org-habit `(org-habit-clear-face ((,class ,(if (eq variant 'light) `(:foreground ,base02 :background "#bbbbff")