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))))