comparison lisp/font-lock.el @ 38056:f912becdb93a

(font-lock-comment-face): For tty's with dark background, use "red1", since "lightred" is not one of the colors recognized by tty-colors.el.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 15 Jun 2001 10:14:23 +0000
parents 26eb27929419
children 52c02becf8c3
comparison
equal deleted inserted replaced
38055:5b595b92482d 38056:f912becdb93a
1813 1813
1814 ;; But now we do it the custom way. Note that `defface' will not overwrite any 1814 ;; But now we do it the custom way. Note that `defface' will not overwrite any
1815 ;; faces declared above via `custom-declare-face'. 1815 ;; faces declared above via `custom-declare-face'.
1816 (defface font-lock-comment-face 1816 (defface font-lock-comment-face
1817 '((((type tty pc) (class color) (background light)) (:foreground "red")) 1817 '((((type tty pc) (class color) (background light)) (:foreground "red"))
1818 (((type tty pc) (class color) (background dark)) (:foreground "lightred")) 1818 (((type tty pc) (class color) (background dark)) (:foreground "red1"))
1819 (((class grayscale) (background light)) 1819 (((class grayscale) (background light))
1820 (:foreground "DimGray" :bold t :italic t)) 1820 (:foreground "DimGray" :bold t :italic t))
1821 (((class grayscale) (background dark)) 1821 (((class grayscale) (background dark))
1822 (:foreground "LightGray" :bold t :italic t)) 1822 (:foreground "LightGray" :bold t :italic t))
1823 (((class color) (background light)) (:foreground "Firebrick")) 1823 (((class color) (background light)) (:foreground "Firebrick"))