diff options
| author | Protesilaos Stavrou <info@protesilaos.com> | 2022-08-22 19:50:28 +0300 |
|---|---|---|
| committer | Protesilaos Stavrou <info@protesilaos.com> | 2022-08-22 19:50:28 +0300 |
| commit | fb54a224a3191f6acb17e92c12f1615f25e5f48b (patch) | |
| tree | b04099314b6a395f08e246c442a6aa1713c14bd0 | |
| parent | a2dea907c7f14998615438e9fe7c8a9d83a50b7e (diff) | |
Simplify :line-width value of :box in tabs
| -rw-r--r-- | ef-themes.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ef-themes.el b/ef-themes.el index 97e7791..c4573ab 100644 --- a/ef-themes.el +++ b/ef-themes.el @@ -1334,17 +1334,17 @@ Helper function for `ef-themes-preview-colors'." `(smerge-upper ((,c :inherit diff-removed))) ;;;; tab-bar-mode `(tab-bar ((,c :inherit ef-themes-ui-variable-pitch :background ,bg-alt))) - `(tab-bar-tab-group-current ((,c :inherit bold :background ,bg-main :box (:line-width (2 . -2) :color ,bg-main) :foreground ,fg-alt))) - `(tab-bar-tab-group-inactive ((,c :background ,bg-alt :box (:line-width (2 . -2) :color ,bg-alt) :foreground ,fg-alt))) - `(tab-bar-tab ((,c :inherit bold :box (:line-width (2 . -2) :color ,bg-main) :background ,bg-main :foreground ,fg-main))) - `(tab-bar-tab-inactive ((,c :box (:line-width (2 . -2) :color ,bg-dim) :background ,bg-dim :foreground ,fg-dim))) + `(tab-bar-tab-group-current ((,c :inherit bold :background ,bg-main :box (:line-width -2 :color ,bg-main) :foreground ,fg-alt))) + `(tab-bar-tab-group-inactive ((,c :background ,bg-alt :box (:line-width -2 :color ,bg-alt) :foreground ,fg-alt))) + `(tab-bar-tab ((,c :inherit bold :box (:line-width -2 :color ,bg-main) :background ,bg-main :foreground ,fg-main))) + `(tab-bar-tab-inactive ((,c :box (:line-width -2 :color ,bg-dim) :background ,bg-dim :foreground ,fg-dim))) ;;;; tab-line-mode `(tab-line ((,c :inherit ef-themes-ui-variable-pitch :background ,bg-alt :height 0.95))) `(tab-line-close-highlight ((,c :foreground ,err))) `(tab-line-highlight ((,c :inherit highlight))) `(tab-line-tab (( ))) - `(tab-line-tab-current ((,c :inherit bold :box (:line-width (2 . -2) :color ,bg-main) :background ,bg-main :foreground ,fg-main))) - `(tab-line-tab-inactive ((,c :box (:line-width (2 . -2) :color ,bg-dim) :background ,bg-dim :foreground ,fg-dim))) + `(tab-line-tab-current ((,c :inherit bold :box (:line-width -2 :color ,bg-main) :background ,bg-main :foreground ,fg-main))) + `(tab-line-tab-inactive ((,c :box (:line-width -2 :color ,bg-dim) :background ,bg-dim :foreground ,fg-dim))) `(tab-line-tab-inactive-alternate ((,c :inherit tab-line-tab-inactive :foreground ,fg-alt))) `(tab-line-tab-modified ((,c :foreground ,warning))) ;;;; term |
