aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorProtesilaos Stavrou <info@protesilaos.com>2025-09-02 12:41:35 +0300
committerProtesilaos Stavrou <info@protesilaos.com>2025-09-02 12:41:35 +0300
commit9b07413ecaccaecb878a52604de0b507226108aa (patch)
treeda5480b2d73567cf65e8dc63710f52e6af693c56
parentabd3b5816e152b190abe1d768035a4d055817810 (diff)
Make the mode lines have a book or underline
-rw-r--r--ef-themes.el12
1 files changed, 10 insertions, 2 deletions
diff --git a/ef-themes.el b/ef-themes.el
index 74010fc..4a68371 100644
--- a/ef-themes.el
+++ b/ef-themes.el
@@ -1946,12 +1946,20 @@ text should not be underlined as well) yet still blend in."
`(message-mml ((,c :foreground ,mail-part)))
`(message-separator ((,c :background ,bg-dim :foreground ,fg-main)))
;;;; mode-line
- `(mode-line ((,c :inherit ef-themes-ui-variable-pitch :background ,bg-mode-line :foreground ,fg-mode-line)))
+ `(mode-line
+ ((default :inherit ef-themes-ui-variable-pitch :background ,bg-mode-line :foreground ,fg-mode-line)
+ (((supports :box t))
+ :box ,border)
+ (t :underline ,border)))
`(mode-line-active ((,c :inherit mode-line)))
`(mode-line-buffer-id ((,c :inherit bold)))
`(mode-line-emphasis ((,c :inherit bold :foreground ,modeline-info)))
`(mode-line-highlight ((,c :inherit highlight)))
- `(mode-line-inactive ((,c :inherit ef-themes-ui-variable-pitch :background ,bg-alt :foreground ,fg-dim)))
+ `(mode-line-inactive
+ ((default :inherit ef-themes-ui-variable-pitch :background ,bg-alt :foreground ,fg-dim)
+ (((supports :box t))
+ :box ,border)
+ (t :underline ,border)))
;;;; mood-line
`(mood-line-modified ((,c :inherit italic)))
`(mood-line-status-error ((,c :inherit error)))