summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-12-30 02:33:34 +0100
committerGravatar Tom Willemsen2012-12-30 02:33:34 +0100
commit3fc11c073a8dc4bec85d32b0a7b642d6d0be0ab4 (patch)
tree327dfcb8a3416d976d61a4c6f5e9920d76b8e289
parent430729835bcd48744c736d5d90140723dc9e79e3 (diff)
downloaddotfiles-3fc11c073a8dc4bec85d32b0a7b642d6d0be0ab4.tar.gz
dotfiles-3fc11c073a8dc4bec85d32b0a7b642d6d0be0ab4.zip
Emacs: Change colors of org todo states
Make them look better with yoshi-theme.
-rw-r--r--.emacs.d/site-lisp/org-init.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/.emacs.d/site-lisp/org-init.el b/.emacs.d/site-lisp/org-init.el
index 9d61396..23ae6a5 100644
--- a/.emacs.d/site-lisp/org-init.el
+++ b/.emacs.d/site-lisp/org-init.el
@@ -81,16 +81,16 @@
(setq org-tags-column -101)
(setq org-tags-exclude-from-inheritance '("crypt"))
(setq org-todo-keyword-faces
- '(("TODO" :background "red")
- ("DONE" :background "forest green")
- ("SUCCEEDED" :background "forest green")
- ("WAITING" :background "orange" :foreground "black")
- ("CANCELLED" :background "orange red")
- ("FAILED" :background "orange red")
- ("WIP" :background "#ff9800" :foreground "black")
- ("HOLD" :background "orange" :foreground "black")
- ("ACQUIRE" :background "red")
- ("IGNORED" :background "#555555")))
+ '(("TODO" :foreground "#ff756e" :background "#171719" :box (:width 1 :color "#282830"))
+ ("DONE" :foreground "#9ad870" :background "#222224" :box (:width 1 :color "#333335"))
+ ("SUCCEEDED" :foreground "#9ad870" :background "#222224" :box (:width 1 :color "#333335"))
+ ("WAITING" :foreground "#ffbb56" :background "#171719" :box (:width 1 :color "#282830"))
+ ("CANCELLED" :foreground "#93d8d8" :background "#222224" :box (:width 1 :color "#333335"))
+ ("FAILED" :foreground "#93d8d8" :background "#222224" :box (:width 1 :color "#333335"))
+ ("WIP" :foreground "#ff756e" :background "#171719" :box (:width 1 :color "#282830"))
+ ("HOLD" :foreground "#ffbb56" :background "#171719" :box (:width 1 :color "#282830"))
+ ("ACQUIRE" :foreground "#ff756e" :background "#171719" :box (:width 1 :color "#282830"))
+ ("IGNORED" :foreground "#999999" :background "#222224" :box (:width 1 :color "#333335"))))
(setq org-use-fast-todo-selection t)
(setq org-use-property-inheritance '("slug"))