Skip to content

Commit ef5fba9

Browse files
committed
Fix faces tab-bar and tab-line.
* lisp/tab-bar.el (tab-bar) <defface>: * lisp/tab-line.el (tab-line) <defface>: Check for min-colors 88 instead of type x.
1 parent 8315084 commit ef5fba9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lisp/tab-bar.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
:version "27.1")
5252

5353
(defface tab-bar
54-
'((((type x w32 ns) (class color))
54+
'((((class color) (min-colors 88))
5555
:inherit variable-pitch
5656
:background "grey85"
5757
:foreground "black")
58-
(((type x) (class mono))
58+
(((class mono))
5959
:background "grey")
6060
(t
6161
:inverse-video t))

lisp/tab-line.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@
4242
:version "27.1")
4343

4444
(defface tab-line
45-
'((((type x w32 ns) (class color))
45+
'((((class color) (min-colors 88))
4646
:inherit variable-pitch
4747
:height 0.9
4848
:background "grey85"
4949
:foreground "black")
50-
(((type x) (class mono))
50+
(((class mono))
5151
:background "grey")
5252
(t
5353
:inverse-video t))

0 commit comments

Comments
 (0)