2000-06-23 Gerd Moellmann <gerd@gnu.org>
+ * cus-edit.el (custom-button-face, custom-button-pressed-face):
+ Specify foreground color.
+
+ * faces.el (tool-bar, mode-line, header-line): Specify foreground
+ color.
+
* Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
* eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
(defface mode-line
'((((type x) (class color))
- (:box (:line-width 2 :style released-button) :background "grey75"))
+ (:box (:line-width 2 :style released-button)
+ :background "grey75" :foreground "black"))
(((type w32) (class color))
- (:box (:line-width 2 :style released-button) :background "grey75"))
+ (:box (:line-width 2 :style released-button)
+ :background "grey75" :foreground "black"))
(t
(:inverse-video t)))
"Basic mode line face."
(defface header-line
'((((type x) (class color))
- (:box (:line-width 2 :style released-button) :background "grey75"))
+ (:box (:line-width 2 :style released-button)
+ :background "grey75" :foreground "black"))
(((type w32) (class color))
- (:box (:line-width 2 :style released-button) :background "grey75"))
+ (:box (:line-width 2 :style released-button)
+ :background "grey75" :foreground "black"))
(t
(:inverse-video t)))
"Basic header-line face."
(defface tool-bar
'((((type x) (class color))
- (:box (:line-width 1 :style released-button) :background "grey75"))
+ (:box (:line-width 1 :style released-button)
+ :background "grey75" :foreground "black"))
(((type x) (class mono))
- (:box (:line-width 1 :style released-button) :background "grey"))
+ (:box (:line-width 1 :style released-button)
+ :background "grey" :foreground "black"))
(((type w32) (class color))
- (:box (:line-width 1 :style released-button) :background "grey75"))
+ (:box (:line-width 1 :style released-button)
+ :background "grey75" :foreground "black"))
(t
()))
"Basic tool-bar face."