From 62b4c6f4efdfb612e949da6b9bf265a7e5e79a6a Mon Sep 17 00:00:00 2001 From: Jonathan Leech-Pepin Date: Mon, 9 Jun 2025 20:05:28 -0400 Subject: [PATCH] Fix org faces for hl-line mode --- emacs/.config/emacs/post-init.el | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/emacs/.config/emacs/post-init.el b/emacs/.config/emacs/post-init.el index 1855896..963df64 100644 --- a/emacs/.config/emacs/post-init.el +++ b/emacs/.config/emacs/post-init.el @@ -1150,6 +1150,7 @@ methods the save hook cannot detect, like file synchronization." (sequence "LOG(l)" "FUP(f)" "|" "LOGD(L@)") (sequence "TBR(T)" "RDN(R)" "|" "READ(D@)") (sequence "BLOG(g)" "|" "BLGD(G@)")) + org-modern-todo-faces `(("TODO" . (:foreground ,(doom-color 'base1) :background ,(doom-color 'green) :weight bold)) @@ -1182,13 +1183,9 @@ methods the save hook cannot detect, like file synchronization." ("READ" . (:foreground ,(doom-color 'dark-cyan) :background ,(doom-color 'base0) :weight bold)) ;; Blogging faces - ("IDEA" . (:foreground ,(doom-color 'base1) :background ,(doom-color 'green) - :weight bold)) - ("WRITE" . (:foreground ,(doom-color 'base1) :background ,(doom-color 'dark-cyan) - :weight bold)) - ("TITLE" . (:foreground ,(doom-color 'magenta) - :weight bold - :inverse-video t)) + ("IDEA" . (:foreground ,(doom-color 'green) :weight bold :inverse-video t)) + ("WRITE" . (:foreground ,(doom-color 'dark-cyan) :weight bold :inverse-video t)) + ("TITLE" . (:foreground ,(doom-color 'magenta) :weight bold :inverse-video t)) ("POSTED" . (:foreground ,(doom-color 'base5) :background ,(doom-color 'base0) :weight bold)) )