diff options
| author | 2021-05-08 22:14:56 -0700 | |
|---|---|---|
| committer | 2021-05-08 22:14:56 -0700 | |
| commit | d05f775c5868e14ab5a5cbeca62ee8d5e124982a (patch) | |
| tree | bf6e9941cc4e4dca8fb90341084be89904a77a2a | |
| parent | 317ebeb0d0f1efd2bda2ae0224a8bc815ff5b426 (diff) | |
| download | yoshi-theme-d05f775c5868e14ab5a5cbeca62ee8d5e124982a.tar.gz yoshi-theme-d05f775c5868e14ab5a5cbeca62ee8d5e124982a.zip | |
Add some tab bar faces
| -rw-r--r-- | CHANGELOG.org | 4 | ||||
| -rw-r--r-- | yoshi-theme.el | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/CHANGELOG.org b/CHANGELOG.org index 4d93fdf..6cbf5ad 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -70,6 +70,10 @@ I hope that these changes make the mode-line more distinctive and nicer to look Made =org-block= inherit from the =fixed-pitch= face so that when =variable-pitch-mode= is used for Org mode, code in code blocks are still using monospaced fonts. +** ADDED Some tab bar faces + +Add the =tab-bar=, =tab-bar-tab=, and =tab-bar-tab-inactive= faces. + * [[https://github.com/ryuslash/yoshi-theme/compare/v6.1.0...v6.2.0][6.2.0]] -- 2019-05-05 :PROPERTIES: :CUSTOM_ID: release-6.2.0 diff --git a/yoshi-theme.el b/yoshi-theme.el index a2e368e..5e8525e 100644 --- a/yoshi-theme.el +++ b/yoshi-theme.el @@ -502,6 +502,12 @@ `(smerge-refined-change ((t (:inherit diff-refine-change)))) `(smerge-refined-removed ((t (:inherit diff-refine-removed)))) + ;; Tab bar + + `(tab-bar ((t (:background ,yoshi-1 :foreground ,yoshi-5)))) + `(tab-bar-tab ((t (:background ,fgred :foreground ,yoshi-6 :box (:color ,fgred :line-width 5 :style nil))))) + `(tab-bar-tab-inactive ((t (:background ,yoshi-2 :foreground ,yoshi-6 :box (:color ,yoshi-2 :line-width 5 :style nil))))) + ;; Term `(term-color-black ((t (:background ,yoshi-0 :foreground ,yoshi-5)))) `(term-color-blue ((t (:background ,bgblue :foreground ,fgblue)))) |
