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:
parent
3689dfeeb4
commit
0880f4fcb1
1 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue