diff options
| -rw-r--r-- | modally.el | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -243,12 +243,14 @@ 'mode-line-active nil :background "black" :foreground "white" - :box '(:line-width (20 . 2) :color "#444444")) + :box `(:line-width (20 . 2) + :color ,(face-attribute 'modally-active :foreground))) (set-face-attribute 'mode-line-inactive nil :background "black" :foreground "grey" - :box '(:line-width (20 . 2) :color "#222222"))) + :box `(:line-width (20 . 2) + :color ,(face-attribute 'modally-inactive :foreground)))) (defun modally--reset-face() "Reset mode-line face." |
