diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2004-12-23 18:28:13 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2004-12-23 18:28:13 +0000 |
commit | 11c2175c79f09ceb0a7021a71dbe9ec8686f5fe3 (patch) | |
tree | 1b9afca79c95a9728f6a56cc7abfa249b2564707 /lisp/faces.el | |
parent | aa7d6700031329370636abbef742b86bf31fc956 (diff) | |
download | emacs-11c2175c79f09ceb0a7021a71dbe9ec8686f5fe3.tar.gz |
(mode-line, mode-line-inactive): Use min-colors.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index b215d25bf21..d2ae90805f2 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -1783,7 +1783,7 @@ created." (defface mode-line - '((((type x w32 mac) (class color)) + '((((class color) (min-colors 88)) :box (:line-width -1 :style released-button) :background "grey75" :foreground "black") (t @@ -1796,11 +1796,11 @@ created." (defface mode-line-inactive '((default :inherit mode-line) - (((type x w32 mac) (background light) (class color)) + (((class color) (min-colors 88) (background light)) :weight light :box (:line-width -1 :color "grey75" :style nil) :foreground "grey20" :background "grey90") - (((type x w32 mac) (background dark) (class color)) + (((class color) (min-colors 88) (background dark) ) :weight light :box (:line-width -1 :color "grey40" :style nil) :foreground "grey80" :background "grey30")) |