From f06aaac16082e01158954d1e3a3e877277a2e2af Mon Sep 17 00:00:00 2001 From: rearman Date: Thu, 9 Oct 2025 08:35:11 -0400 Subject: [PATCH] Make modeline better Inactive buffers blended into the text of the buffer below them. Can't use inverse-video in mode-line-active due to the border becoming white, making the modelines different apparent sizes. --- re/wobow-themes.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/re/wobow-themes.el b/re/wobow-themes.el index 905e6ae..1d0519c 100644 --- a/re/wobow-themes.el +++ b/re/wobow-themes.el @@ -63,8 +63,8 @@ (link (:underline t)) ;; mode line - (mode-line (:box nil :background ,background :foreground ,foreground)) - (mode-line-active (:inverse-video t)) + (mode-line (:box t :foreground ,foreground :background ,background)) + (mode-line-active (:foreground ,background :background ,foreground :box ,foreground)) ; inverse-video affects the box too (mode-line-inactive (:inherit mode-line)) ;; font lock -- 2.39.5