diff options
| -rw-r--r-- | bard-emacs-modules/bard-emacs-modeline.el | 12 |
1 files 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) |
