summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-22 00:39:16 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-22 00:39:47 -0500
commitcb8ce7e1fe866f75b88d370f4db8a0b9960a8930 (patch)
treef44cd0649d597d495094d987a5119d71296c67a2
parent764d9bf9dec44b9f636da8d569a264c80132c036 (diff)
downloadorg-mode-cb8ce7e1fe866f75b88d370f4db8a0b9960a8930.tar.gz
Harmonized org-habit.el's light background color scheme
All the colors used now relate on the color wheel. The blues have been shifted to 15% less saturation than greens, and reds are shifted to 10% greater saturation. The colors are very close to what was there before, but now they harmonize much more closely.
-rw-r--r--lisp/org-habit.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/org-habit.el b/lisp/org-habit.el
index d3179cf..b40bcf7 100644
--- a/lisp/org-habit.el
+++ b/lisp/org-habit.el
@@ -67,52 +67,52 @@ relative to the current effective date."
:type 'boolean)
(defface org-habit-clear-face
- '((((background light)) (:background "slateblue"))
+ '((((background light)) (:background "#8270f9"))
(((background dark)) (:background "blue")))
"Face for days on which a task shouldn't be done yet."
:group 'org-habit
:group 'org-faces)
(defface org-habit-clear-future-face
- '((((background light)) (:background "powderblue"))
+ '((((background light)) (:background "#d6e4fc"))
(((background dark)) (:background "midnightblue")))
"Face for future days on which a task shouldn't be done yet."
:group 'org-habit
:group 'org-faces)
(defface org-habit-ready-face
- '((((background light)) (:background "green"))
+ '((((background light)) (:background "#4df946"))
(((background dark)) (:background "forestgreen")))
"Face for days on which a task should start to be done."
:group 'org-habit
:group 'org-faces)
(defface org-habit-ready-future-face
- '((((background light)) (:background "palegreen"))
+ '((((background light)) (:background "#acfca9"))
(((background dark)) (:background "darkgreen")))
"Face for days on which a task should start to be done."
:group 'org-habit
:group 'org-faces)
(defface org-habit-alert-face
- '((((background light)) (:background "yellow"))
+ '((((background light)) (:background "#f5f946"))
(((background dark)) (:background "gold")))
"Face for days on which a task is due."
:group 'org-habit
:group 'org-faces)
(defface org-habit-alert-future-face
- '((((background light)) (:background "palegoldenrod"))
+ '((((background light)) (:background "#fafca9"))
(((background dark)) (:background "darkgoldenrod")))
"Face for days on which a task is due."
:group 'org-habit
:group 'org-faces)
(defface org-habit-overdue-face
- '((((background light)) (:background "red"))
+ '((((background light)) (:background "#f9372d"))
(((background dark)) (:background "firebrick")))
"Face for days on which a task is overdue."
:group 'org-habit
:group 'org-faces)
(defface org-habit-overdue-future-face
- '((((background light)) (:background "mistyrose"))
+ '((((background light)) (:background "#fc9590"))
(((background dark)) (:background "darkred")))
"Face for days on which a task is overdue."
:group 'org-habit