* lisp/tab-bar.el (tab-bar):
* lisp/tab-line.el (tab-line):
Inherit face from variable-pitch.
(defface tab-bar
'((((type x w32 ns) (class color))
:height 1.1
+ :inherit variable-pitch
:background "grey85"
:foreground "black")
(((type x) (class mono))
:group 'tab-bar-faces)
(defface tab-bar-tab
- '((((class color) (min-colors 88))
+ '((default
+ :inherit tab-bar)
+ (((class color) (min-colors 88))
:box (:line-width 1 :style released-button))
(t
:inverse-video nil))
(defface tab-line
'((((type x w32 ns) (class color))
+ :inherit variable-pitch
:background "grey85"
:foreground "black")
(((type x) (class mono))
:group 'tab-line-faces)
(defface tab-line-tab
- '((((class color) (min-colors 88))
- :box (:line-width 1 :style released-button)
- :background "grey85")
+ '((default
+ :inherit tab-line)
+ (((class color) (min-colors 88))
+ :box (:line-width 1 :style released-button))
(t
:inverse-video nil))
"Tab line face for selected tab."