diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-11-02 22:04:57 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-11-02 22:04:57 +0100 |
commit | 93f6b53704a657a58a441cec2ed23eaa5f719393 (patch) | |
tree | 715a28eb322e9149ce01996fcd64f1f7c5fa8413 /.config/emacs/mango-theme.el | |
parent | 511be034b5f35cdec917214f60d4c0689436bae3 (diff) |
emacs: Work on modeline themeing
Diffstat (limited to '.config/emacs/mango-theme.el')
-rw-r--r-- | .config/emacs/mango-theme.el | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/.config/emacs/mango-theme.el b/.config/emacs/mango-theme.el index 231896a..a18b9ce 100644 --- a/.config/emacs/mango-theme.el +++ b/.config/emacs/mango-theme.el @@ -37,6 +37,7 @@ graphically, so I shouldn’t need to have multiple specs per face. (violet . "#E57AE5") (khaki . "#F0E68C") (lime . "#B8F182") + (dark-red . "#841A11") (orange . "#F1B282") (pink . "#ED97F5") (spanish-red . "#E60026")) @@ -84,6 +85,24 @@ graphically, so I shouldn’t need to have multiple specs per face. (font-lock-doc-face :inherit font-lock-comment-face) + ;; Modeline + (mm-modeline-readonly-face + :weight bold) + (mm-modeline-buffer-name-face + :inherit font-lock-constant-face) + (mm-modeline-buffer-modified-face + :inherit shadow) + (mm-modeline-major-mode-name-face + :weight bold) + (mm-modeline-major-mode-symbol-face + :inherit shadow) + (mm-modeline-narrow-face + :background ,(mango-theme--color 'dark-red) + :box ,(mango-theme--color 'dark-red) + :weight bold) + (mm-modeline-git-branch-face + :inherit font-lock-constant-face) + ;; Core Language (font-lock-keyword-face :foreground ,(mango-theme--color 'violet)) @@ -164,4 +183,4 @@ graphically, so I shouldn’t need to have multiple specs per face. :background ,(mango-theme--color 'middleground)) (tempel-form :slant italic - :background ,(mango-theme--color 'middleground))) + :background ,(mango-theme--color 'middleground)))
\ No newline at end of file |