diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-20 21:07:43 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-20 21:07:43 +0200 |
| commit | ed79c3acfeb457e9d1b6fbb3c97269723e99f633 (patch) | |
| tree | 5432b7dee4c73c7b68d9d397fc733cb722501957 /soria-theme.el | |
| parent | 44acc3ffb23aae72b2025f17a52b1c7f3dfb3c28 (diff) | |
| download | soria-ed79c3acfeb457e9d1b6fbb3c97269723e99f633.tar.gz soria-ed79c3acfeb457e9d1b6fbb3c97269723e99f633.zip | |
Added support for mode-line and doom-modeline
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'soria-theme.el')
| -rw-r--r-- | soria-theme.el | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/soria-theme.el b/soria-theme.el index 6f0a2f3..1aa10cb 100644 --- a/soria-theme.el +++ b/soria-theme.el @@ -1345,7 +1345,44 @@ The theme has to be reloaded after changing anything in this group." ((,class (:inherit org-done)))) `(org-date - ((,class (:foreground ,soria-gray, :weight normal :underline nil)))))) + ((,class (:foreground ,soria-gray, :weight normal :underline nil)))) + + ;; modeline: this is the base for faces from some modelines (doom-modeline). + + `(mode-line-emphasis + ((,class (:foreground ,soria-white :inherit bold)))) + + `(mode-line-buffer-id + ((,class (:foreground ,soria-white :inherit bold)))) + + `(mode-line-highlight + ((,class (:foreground ,soria-yellow)))) + + ;; doom-modeline + + `(doom-modeline-buffer-modified + ((,class (:foreground ,soria-orange :weight normal)))) + + `(doom-modeline-buffer-path + ((,class (:foreground ,soria-white :weight normal)))) + + `(doom-modeline-project-dir + ((,class (:foreground ,soria-yellow :weight normal)))) + + `(doom-modeline-evil-emacs-state + ((,class (:foreground ,soria-darkpurple :weight bold)))) + + `(doom-modeline-evil-insert-state + ((,class (:foreground ,soria-orange :weight bold)))) + + `(doom-modeline-evil-visual-state + ((,class (:foreground ,soria-purple :weight bold)))) + + `(doom-modeline-info + ((,class (:foreground ,soria-green :weight normal)))) + + `(doom-modeline-warning + ((,class (:foreground ,soria-orange :weight normal)))))) (defun soria-theme-purple-identifiers () "Make function identifiers purple. |
