diff options
-rw-r--r-- | lisp/tab-line.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/tab-line.el b/lisp/tab-line.el index 890d1243e73..78c06bbb64d 100644 --- a/lisp/tab-line.el +++ b/lisp/tab-line.el @@ -119,7 +119,11 @@ function `tab-line-tab-face-group'." :group 'tab-line-faces) (defface tab-line-highlight - '((t :inherit tab-line-tab)) + '((((class color) (min-colors 88)) + :box (:line-width 1 :style released-button) + :background "grey85" + :foreground "black") + (t :inverse-video nil)) "Tab line face for highlighting." :version "27.1" :group 'tab-line-faces) |