branch: elpa/zenburn-theme commit 4788de0bcfecf8faec69251decb9924492d008f3 Author: Gulshan Singh <gsingh2...@gmail.com> Commit: Bozhidar Batsov <bozhi...@batsov.dev>
Add tab-line support --- CHANGELOG.md | 1 + zenburn-theme.el | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00544e3f1e..e80cb35367 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ * Add `helm-ff-file-extension` face. * Add `rmail` support. * Add `tab-bar-mode` support. +* Add `tab-line-mode` support. * [#367](https://github.com/bbatsov/zenburn-emacs/pull/367): Brighten org headline levels 7 and 8 to improve contrast and possibly help those with color blindness. * Add support for `ansi-color` faces. * Add support for SLY faces. diff --git a/zenburn-theme.el b/zenburn-theme.el index b9974c373f..002e5cac5d 100644 --- a/zenburn-theme.el +++ b/zenburn-theme.el @@ -1556,6 +1556,18 @@ Also bind `class' to ((class color) (min-colors 89))." `(tab-bar-tab-inactive ((t (:foreground ,zenburn-fg :background ,zenburn-bg+1 :box (:line-width -1 :style released-button))))) +;;;;; tab-line + `(tab-line ((t (:background ,zenburn-bg+1)))) + `(tab-line-tab ((t (:foreground ,zenburn-fg + :background ,zenburn-bg + :weight bold + :box (:line-width -1 :style released-button))))) + `(tab-line-tab-inactive ((t (:foreground ,zenburn-fg + :background ,zenburn-bg+1 + :box (:line-width -1 :style released-button))))) + `(tab-line-tab-current ((t (:foreground ,zenburn-fg + :background ,zenburn-bg+1 + :box (:line-width -1 :style pressed-button))))) ;;;;; term `(term-color-black ((t (:foreground ,zenburn-bg :background ,zenburn-bg-1))))