From ae1229ac9a7f86fe0ec713f70e64b9cfdec592e3 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 26 Apr 2021 16:09:43 +0200 Subject: Added tab-line and line numbers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- soria-theme.el | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) 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 -- cgit v1.2.3