From f070c1bdae29898d948e2df1ff268daad46152f5 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 12 Nov 2023 16:39:39 +0000 Subject: [PATCH] feat(theme/override): invert tab-bar active/inactive background colors Previously the active tab was the same background color as normal buffers, while the rest of the tab-bar had an alternative background color. I feel that it visually fits better when these are swapped, so tab-bar overall has the same background color as normal buffers, and the active tab has an alternative background color. --- themes/siren-doom-themes-overrides-theme.el | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/themes/siren-doom-themes-overrides-theme.el b/themes/siren-doom-themes-overrides-theme.el index 8cb6a72..0f7a424 100644 --- a/themes/siren-doom-themes-overrides-theme.el +++ b/themes/siren-doom-themes-overrides-theme.el @@ -36,13 +36,22 @@ '(trailing-whitespace :foregroup (doom-color base4) :background (doom-color red)) - ;; tab-line - '(tab-line :background bg-alt :foreground fg-alt) - ;; tab-bar - '(tab-bar :background bg-alt :foreground fg-alt) '(tab-bar-tab-group-current :foreground (doom-darken violet 0.3)) + ;; inverted tab-bar and tab-line + '(tab-line :background bg :foreground bg) + '(tab-line-tab :background bg-alt :foreground fg-alt) + '(tab-line-tab-inactive :background bg :foreground fg) + '(tab-line-tab-inactive-alternate :background bg :foreground fg) + '(tab-line-tab-current :background bg-alt :foreground fg-alt) + '(tab-line-highlight :background bg-alt :foreground fg-alt) + '(tab-bar :background bg :foreground fg) + '(tab-bar-tab :background bg-alt :foreground fg-alt) + '(tab-bar-tab-inactive :background bg :foreground fg) + '(siren-tab-bar-tab-hint :inherit 'tab-bar-tab :foreground fg-alt) + '(siren-tab-bar-tab-hint-inactive :inherit 'tab-bar-tab-inactive :foreground fg-alt) + ;; fill-column-indicator '(fill-column-indicator :foreground (doom-lighten base3 0.10))