changeset 97073:7159ef9ad909

whitespace-newline: change initilization to have a low contrast relative to the background color.
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Tue, 29 Jul 2008 01:56:57 +0000
parents 9b141ec374d8
children 8b6a3348313d
files lisp/ChangeLog lisp/whitespace.el
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Jul 28 22:30:25 2008 +0000
+++ b/lisp/ChangeLog	Tue Jul 29 01:56:57 2008 +0000
@@ -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):
--- a/lisp/whitespace.el	Mon Jul 28 22:30:25 2008 +0000
+++ b/lisp/whitespace.el	Tue Jul 29 01:56:57 2008 +0000
@@ -570,10 +570,10 @@
 
 (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'."