diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2021-04-26 16:09:43 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2021-04-26 16:09:43 +0200 |
| commit | ae1229ac9a7f86fe0ec713f70e64b9cfdec592e3 (patch) | |
| tree | 034b313379e60b852f35ad224504bd85abd54b0f /soria-theme.el | |
| parent | f765f193ccaf4ad438e1d9be842efd2f4394efa4 (diff) | |
| download | soria-ae1229ac9a7f86fe0ec713f70e64b9cfdec592e3.tar.gz soria-ae1229ac9a7f86fe0ec713f70e64b9cfdec592e3.zip | |
Added tab-line and line numbers
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'soria-theme.el')
| -rw-r--r-- | soria-theme.el | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/soria-theme.el b/soria-theme.el index 185ae3d..7f55a4c 100644 --- a/soria-theme.el +++ b/soria-theme.el @@ -241,6 +241,49 @@ The theme has to be reloaded after changing anything in this group." `(compilation-mode-line-exit ((,class (:foreground ,soria-brightgreen)))) + ;; Tab line + + `(tab-line + ((,class (:foreground ,soria-white :background ,soria-linegray)))) + + `(tab-line-tab + ((,class (:foreground ,soria-white :background ,soria-linegray)))) + + `(tab-line-tab-inactive + ((,class (:foreground ,soria-statusncgray :background ,soria-linegray)))) + + `(tab-line-tab-current + ((,class (:foreground ,soria-white :background ,soria-statusgray)))) + + `(tab-line-highlight + ((,class (:inherit tab-line-tab)))) + + `(tab-line-close-highlight + ((,class (:inherit tab-line-tab)))) + + `(tab-bar + ((,class (:inherit tab-line)))) + + `(tab-bar-tab + ((,class (:inherit tab-line-tab)))) + + `(tab-bar-tab-inactive + ((,class (:inherit tab-line-tab-inactive)))) + + ;; Line numbers + + `(line-number + ((,class (:inherit default + :foreground ,soria-gray :distant-foreground nil + :background ,soria-darkgray + :weight normal :italic nil :underline nil :strike-through nil)))) + + `(line-number-current-line + ((,class (:inherit default + :foreground ,soria-white :distant-foreground nil + :background ,soria-darkgray + :weight normal :italic nil :underline nil :strike-through nil)))) + ;; Custom `(custom-face-tag |
