Use more humane color names

This commit is contained in:
mokou 2020-05-28 18:17:19 +02:00
parent 5d9b3d8c8f
commit d9de809c1c

View file

@ -59,14 +59,14 @@
(quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d)")
(sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING"))))
(setq-default org-todo-keyword-faces
(quote (("TODO" :foreground "red" :weight bold)
("NEXT" :foreground "blue" :weight bold)
(quote (("TODO" :foreground "tomato" :weight bold)
("NEXT" :foreground "royal blue" :weight bold)
("DONE" :foreground "forest green" :weight bold)
("WAITING" :foreground "orange" :weight bold)
("HOLD" :foreground "magenta" :weight bold)
("CANCELLED" :foreground "forest green" :weight bold)
("MEETING" :foreground "forest green" :weight bold)
("PHONE" :foreground "forest green" :weight bold))))
("WAITING" :foreground "chocolate" :weight bold)
("HOLD" :foreground "orchid" :weight bold)
("CANCELLED" :foreground "yellow" :weight bold)
("MEETING" :foreground "gold" :weight bold)
("PHONE" :foreground "orange" :weight bold))))
(setq org-capture-templates
(quote (("t" "todo" entry (file "~/code/personal/org/capture.org")
"* TODO %?\n%U\n" :clock-in t :clock-resume t)