emacs icon indicating copy to clipboard operation
emacs copied to clipboard

Nord colors for org habits consistency graph

Open JonathanReeve opened this issue 7 years ago • 2 comments

Some themes use theme colors for the org habits consistency graph (in the org agenda view), which is a lot more pleasant than seeing theme colors everywhere, but bright red, bright yellow, etc, in the habits graph. I imagine this is as simple as linking four or five color names together, and would be a big improvement for me and others that use org mode.

JonathanReeve avatar Jan 27 '18 17:01 JonathanReeve

For instance, here is how the gotham theme does it: https://github.com/wasamasa/gotham-theme/blob/master/gotham-theme.el#L931

JonathanReeve avatar Jan 27 '18 17:01 JonathanReeve

If someone is looking for a quick setup, here is my implementation:

image
(custom-set-faces
 '(org-habit-alert-face ((t (:background "#3C4251" :foreground "#94BECE"))))
 '(org-habit-alert-future-face ((t (:background "#3C4251"))))
 '(org-habit-clear-face ((t (:background "black"))))
 '(org-habit-clear-future-face ((t (:background "#3C4251"))))
 '(org-habit-overdue-face ((t (:background "#454C5C" :foreground "#B3666C"))))
 '(org-habit-overdue-future-face ((t (:background "#4E5668"))))
 '(org-habit-ready-face ((t (:background "#3C4251" :foreground "#A8BD91")))))

asiegf avatar Sep 22 '23 13:09 asiegf