whitespace-newline: change initilization to have a low contrast relative to the backg...
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Tue, 29 Jul 2008 01:56:57 +0000 (01:56 +0000)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Tue, 29 Jul 2008 01:56:57 +0000 (01:56 +0000)
lisp/ChangeLog
lisp/whitespace.el

index b69f154..226bc0f 100644 (file)
@@ -1,3 +1,9 @@
+2008-07-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
+
+       * whitespace.el (whitespace-newline): Change initialization to have a
+       low contrast relative to the background color.  Suggested by David
+       Reitter <david.reitter@gmail.com>.
+
 2008-07-28  Juri Linkov  <juri@jurta.org>
 
        * dired-aux.el (dired-do-isearch, dired-do-isearch-regexp):
index d30933f..1e46c3c 100644 (file)
@@ -570,10 +570,10 @@ and `newline'."
 
 (defface whitespace-newline
   '((((class color) (background dark))
-     (:background "grey26" :foreground "aquamarine3" :bold t))
+     (:foreground "darkgray" :bold nil))
     (((class color) (background light))
-     (:background "linen"  :foreground "aquamarine3" :bold t))
-    (t (:bold t :underline t)))
+     (:foreground "lightgray" :bold nil))
+    (t (:underline t :bold nil)))
   "Face used to visualize NEWLINE char mapping.
 
 See `whitespace-display-mappings'."