From aaa378e721dfd012fdc592647451f9c9c755d7fe Mon Sep 17 00:00:00 2001 From: bard Date: Fri, 2 Feb 2024 04:48:24 -0500 Subject: fix: conflicting faces spacious padding --- bard-emacs-modules/bard-emacs-modeline.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bard-emacs-modules/bard-emacs-modeline.el b/bard-emacs-modules/bard-emacs-modeline.el index 2a2ed6f..acec052 100644 --- a/bard-emacs-modules/bard-emacs-modeline.el +++ b/bard-emacs-modules/bard-emacs-modeline.el @@ -34,17 +34,17 @@ (defun bard/modus-light-faces () (modus-themes-with-colors - (custom-set-faces - `(mode-line ((t :background ,bg-ochre :foreground ,fg-main :box ,yellow-warmer)))) - (custom-set-faces - `(mode-line-inactive ((t :background ,bg-ochre :foreground ,fg-dim :box ,yellow-cooler)))))) + (custom-set-faces + `(mode-line ((t :background ,bg-ochre :foreground ,fg-main :box (:line-width 6 :color ,bg-ochre :style nil))))) + (custom-set-faces + `(mode-line-inactive ((t :background ,bg-mode-line-inactive :foreground ,fg-dim :box (:line-width 6 :color ,bg-mode-line-inactive :style nil))))))) (defun bard/modus-dark-faces () (modus-themes-with-colors (custom-set-faces - `(mode-line ((t :background ,bg-magenta-subtle :foreground ,fg-main :box ,magenta-cooler)))) + `(mode-line ((t :background ,bg-magenta-subtle :foreground ,fg-main :box (:line-width 6 :color ,bg-magenta-subtle :style nil))))) (custom-set-faces - `(mode-line-inactive ((t :background ,bg-magenta-subtle :foreground ,fg-dim :box ,magenta-faint)))))) + `(mode-line-inactive ((t :background ,bg-mode-line-inactive :foreground ,fg-dim :box (:line-width 6 :color ,bg-mode-line-inactive :style nil))))))) (defun bard/modus-themes-faces () (if (or (memq 'modus-operandi custom-enabled-themes) -- cgit v1.2.3