diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-18 16:51:32 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-18 16:51:32 +0000 |
commit | 56dcb0ecb0b1fb4c7c7773cb160c3407e4dc2a37 (patch) | |
tree | f3a6ae9afa8e0c9b81f133d5b3a576a290fc65d0 | |
parent | 0e2402c04073501c0c5be7c87383f4c663d65bf3 (diff) |
org face colours
-rw-r--r-- | myinit.org | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -884,15 +884,15 @@ If failed try to complete the common part with `company-complete-common'" (setq org-todo-keyword-faces - (quote (("TODO" :foreground "red" :weight bold) - ("NEXT" :foreground "cyan" :weight bold) - ("PROJ" :foreground "pink" :weight bold) - ("DOING" :foreground "orchid" :weight bold) + (quote (("TODO" :foreground "tomato4" :weight bold) + ("NEXT" :foreground "turquoise4" :weight bold) + ("PROJ" :foreground "DarkViolet" :weight bold) + ("DOING" :foreground "brown" :weight bold) ("DONE" :foreground "forest green" :weight bold) ("WAITING" :foreground "orange" :weight bold) ("SOMEDAY" :foreground "blue" :weight bold) ("HOLD" :foreground "magenta" :weight bold) - ("CANCELLED" :foreground "forest green" :weight bold)))) + ("CANCELLED" :foreground "snow4" :weight bold)))) #+END_SRC ** org todo state triggers #+BEGIN_SRC emacs-lisp |