From 4593f083e6b6c73bd3643b514d1153b05c73bdf1 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 7 Jun 2025 20:34:58 +0200 Subject: [PATCH] Fix inheritance setting for Org mode line face Should not inherit from any face, so that the background is consistent with the rest of the mode-line. --- themes/db-dark-theme.el | 2 +- themes/db-light-theme.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/db-dark-theme.el b/themes/db-dark-theme.el index 732f466..7a1682d 100644 --- a/themes/db-dark-theme.el +++ b/themes/db-dark-theme.el @@ -18,7 +18,7 @@ Known to work well with the `solarized-dark’ theme.") '(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal)))) '(org-headline-done ((t (:foreground "#859900")))) '(org-link ((t (:inherit link :weight normal)))) - '(org-mode-line-clock ((t (:inherit default)))) + '(org-mode-line-clock ((t (:inherit nil)))) '(outline-4 ((t (:inherit org-level-4)))) '(flyspell-duplicate ((t (:underline (:color "orange red" :style wave))))) '(flyspell-incorrect ((t (:underline (:color "orange red" :style wave))))) diff --git a/themes/db-light-theme.el b/themes/db-light-theme.el index d4f9785..a5420b7 100644 --- a/themes/db-light-theme.el +++ b/themes/db-light-theme.el @@ -18,7 +18,7 @@ '(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal :height 110 :family "DejaVu Sans Mono")))) '(org-headline-done ((t (:foreground "#859900")))) '(org-link ((t (:inherit link :weight normal)))) - '(org-mode-line-clock ((t (:inherit default)))) + '(org-mode-line-clock ((t (:inherit nil)))) '(outline-4 ((t (:inherit org-level-4)))) '(flyspell-duplicate ((t (:underline (:color "orange red" :style wave))))) '(flyspell-incorrect ((t (:underline (:color "orange red" :style wave)))))