# HG changeset patch # User Miles Bader # Date 969208862 0 # Node ID 08829d84231201b125574bb302c877368cc38b7a # Parent 94a313b4dca54d82275553c123422c42818624aa (header-line): Change defaults to be less confusing when mixed with mode-lines. diff -r 94a313b4dca5 -r 08829d842312 lisp/faces.el --- a/lisp/faces.el Sun Sep 17 16:21:42 2000 +0000 +++ b/lisp/faces.el Sun Sep 17 16:41:02 2000 +0000 @@ -1529,12 +1529,20 @@ (put 'modeline 'face-alias 'mode-line) (defface header-line - '((((type x) (class color)) - (:box (:line-width 2 :style released-button) - :background "grey75" :foreground "black")) - (((type w32) (class color)) - (:box (:line-width 2 :style released-button) - :background "grey75" :foreground "black")) + '((((type tty)) + (:inverse-video t)) + (((class color) (background light)) + (:box (:line-width 1 :style released-button) + :background "grey90" + :inherit mode-line)) + (((class color) (background dark)) + (:box (:line-width 1 :style released-button) + :background "grey20" + :inherit mode-line)) + (((class mono)) + (:box (:line-width 1 :style released-button) + :background "grey" + :inherit mode-line)) (t (:inverse-video t))) "Basic header-line face."