comparison lisp/faces.el @ 44590:59d5728240b3

(highlight): Force foreground to be black on a tty, so this face is readable on a dark-background tty.
author Miles Bader <miles@gnu.org>
date Mon, 15 Apr 2002 06:16:28 +0000
parents d15360503e4e
children fe167023fdf0
comparison
equal deleted inserted replaced
44589:cff126affe7f 44590:59d5728240b3
1883 :group 'basic-faces) 1883 :group 'basic-faces)
1884 1884
1885 1885
1886 (defface highlight 1886 (defface highlight
1887 '((((type tty) (class color)) 1887 '((((type tty) (class color))
1888 :background "green") 1888 :background "green" :foreground "black")
1889 (((class color) (background light)) 1889 (((class color) (background light))
1890 :background "darkseagreen2") 1890 :background "darkseagreen2")
1891 (((class color) (background dark)) 1891 (((class color) (background dark))
1892 :background "darkolivegreen") 1892 :background "darkolivegreen")
1893 (t :inverse-video t)) 1893 (t :inverse-video t))