aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-26 09:39:06 -0500
committerCraig Jennings <c@cjennings.net>2026-05-26 09:39:06 -0500
commitb45c8890e28f23b5fe4abe709f041044191e3696 (patch)
tree21942d0bdb8bd84f6953c877d36cac7fceb1be4f
parent8b1db5455efe868d91d6510f2cc3acfd4bac964f (diff)
downloaddotemacs-b45c8890e28f23b5fe4abe709f041044191e3696.tar.gz
dotemacs-b45c8890e28f23b5fe4abe709f041044191e3696.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.
-rw-r--r--themes/dupre-faces.el4
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))))