1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

(flymake-errline, flymake-warnline): Use more suitable colors on dark

displays.
This commit is contained in:
Chong Yidong 2008-07-23 21:54:48 +00:00
parent 3689dfeeb4
commit 0880f4fcb1

View file

@ -787,15 +787,15 @@ Return t if it has at least one flymake overlay, nil if no overlay."
has-flymake-overlays))
(defface flymake-errline
;;+ '((((class color)) (:foreground "OrangeRed" :bold t :underline t))
;;+ '((((class color)) (:underline "OrangeRed"))
'((((class color)) (:background "LightPink"))
'((((background dark)) (:background "Firebrick4"))
(((background light)) (:background "LightPink"))
(t (:bold t)))
"Face used for marking error lines."
:group 'flymake)
(defface flymake-warnline
'((((class color)) (:background "LightBlue2"))
'((((background dark)) (:background "DarkBlue"))
(((background light)) (:background "LightBlue2"))
(t (:bold t)))
"Face used for marking warning lines."
:group 'flymake)