aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann2000-06-23 05:57:18 +0000
committerGerd Moellmann2000-06-23 05:57:18 +0000
commitf6478c6609a179e023083c1bee8d134469423447 (patch)
tree6fc2e9b92df0d9f154aa90f291052e5e1859a06c /lisp
parent83e7159c66fcff1fd3e0fe8adaf97514cf3549be (diff)
downloademacs-f6478c6609a179e023083c1bee8d134469423447.tar.gz
emacs-f6478c6609a179e023083c1bee8d134469423447.zip
(tool-bar, mode-line, header-line): Specify foreground
color.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/faces.el21
2 files changed, 20 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9816542a339..1955414dda1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,11 @@
12000-06-23 Gerd Moellmann <gerd@gnu.org> 12000-06-23 Gerd Moellmann <gerd@gnu.org>
2 2
3 * cus-edit.el (custom-button-face, custom-button-pressed-face):
4 Specify foreground color.
5
6 * faces.el (tool-bar, mode-line, header-line): Specify foreground
7 color.
8
3 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el. 9 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
4 10
5 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and 11 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
diff --git a/lisp/faces.el b/lisp/faces.el
index 170b0849b7e..4210dd5eccc 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1496,9 +1496,11 @@ created."
1496 1496
1497(defface mode-line 1497(defface mode-line
1498 '((((type x) (class color)) 1498 '((((type x) (class color))
1499 (:box (:line-width 2 :style released-button) :background "grey75")) 1499 (:box (:line-width 2 :style released-button)
1500 :background "grey75" :foreground "black"))
1500 (((type w32) (class color)) 1501 (((type w32) (class color))
1501 (:box (:line-width 2 :style released-button) :background "grey75")) 1502 (:box (:line-width 2 :style released-button)
1503 :background "grey75" :foreground "black"))
1502 (t 1504 (t
1503 (:inverse-video t))) 1505 (:inverse-video t)))
1504 "Basic mode line face." 1506 "Basic mode line face."
@@ -1511,9 +1513,11 @@ created."
1511 1513
1512(defface header-line 1514(defface header-line
1513 '((((type x) (class color)) 1515 '((((type x) (class color))
1514 (:box (:line-width 2 :style released-button) :background "grey75")) 1516 (:box (:line-width 2 :style released-button)
1517 :background "grey75" :foreground "black"))
1515 (((type w32) (class color)) 1518 (((type w32) (class color))
1516 (:box (:line-width 2 :style released-button) :background "grey75")) 1519 (:box (:line-width 2 :style released-button)
1520 :background "grey75" :foreground "black"))
1517 (t 1521 (t
1518 (:inverse-video t))) 1522 (:inverse-video t)))
1519 "Basic header-line face." 1523 "Basic header-line face."
@@ -1523,11 +1527,14 @@ created."
1523 1527
1524(defface tool-bar 1528(defface tool-bar
1525 '((((type x) (class color)) 1529 '((((type x) (class color))
1526 (:box (:line-width 1 :style released-button) :background "grey75")) 1530 (:box (:line-width 1 :style released-button)
1531 :background "grey75" :foreground "black"))
1527 (((type x) (class mono)) 1532 (((type x) (class mono))
1528 (:box (:line-width 1 :style released-button) :background "grey")) 1533 (:box (:line-width 1 :style released-button)
1534 :background "grey" :foreground "black"))
1529 (((type w32) (class color)) 1535 (((type w32) (class color))
1530 (:box (:line-width 1 :style released-button) :background "grey75")) 1536 (:box (:line-width 1 :style released-button)
1537 :background "grey75" :foreground "black"))
1531 (t 1538 (t
1532 ())) 1539 ()))
1533 "Basic tool-bar face." 1540 "Basic tool-bar face."