diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-26 09:39:06 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-26 09:39:06 -0500 |
| commit | da65742b889631df15cc96234438ca12c81a4c8a (patch) | |
| tree | 643ea8882dd916e836c8a9bd23659e568805b484 /themes | |
| parent | f03e9d5384a9a6d1ff657cb1ffb413c18280e57e (diff) | |
| download | dotemacs-da65742b889631df15cc96234438ca12c81a4c8a.tar.gz dotemacs-da65742b889631df15cc96234438ca12c81a4c8a.zip | |
fix(dupre): tone down the org TODO and warning reds
org-todo was intense-red (#ff2a00), the brightest red in the palette. Every TODO-state keyword that isn't in org-todo-keyword-faces falls back to org-todo. So the Linear states (IN-PROGRESS, BACKLOG-PRIORITIZED, and the rest) all rendered in that hot red, and the whole view shouted.
I moved org-todo to red-1 (#a7502d) and org-warning to red (#d47c59). They're distinct now, so an overdue deadline reads a shade warmer than a plain keyword. intense-red stays reserved for the FAILED face.
Diffstat (limited to 'themes')
| -rw-r--r-- | themes/dupre-faces.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/dupre-faces.el b/themes/dupre-faces.el index d7b6e07b2..1bc8b132d 100644 --- a/themes/dupre-faces.el +++ b/themes/dupre-faces.el @@ -205,7 +205,7 @@ `(org-level-6 ((t (:foreground ,gray+1)))) `(org-level-7 ((t (:foreground ,gray)))) `(org-level-8 ((t (:foreground ,gray)))) - `(org-todo ((t (:foreground ,intense-red :weight bold)))) + `(org-todo ((t (:foreground ,red-1 :weight bold)))) `(org-done ((t (:foreground ,green :weight bold)))) `(org-headline-done ((t (:foreground ,gray)))) `(org-headline-todo ((t (:foreground ,fg)))) @@ -266,7 +266,7 @@ `(org-scheduled-today ((t (:foreground ,fg :weight bold)))) `(org-scheduled-previously ((t (:foreground ,gray+1)))) `(org-upcoming-deadline ((t (:foreground ,yellow+1)))) - `(org-warning ((t (:foreground ,intense-red :weight bold)))) + `(org-warning ((t (:foreground ,red :weight bold)))) `(org-agenda-structure ((t (:foreground ,blue :weight bold)))) `(org-agenda-date ((t (:foreground ,fg)))) `(org-agenda-date-today ((t (:foreground ,yellow :weight bold)))) |
