summaryrefslogtreecommitdiff
path: root/lisp/whitespace.el
diff options
context:
space:
mode:
authorVinicius Jose Latorre <viniciusjl@ig.com.br>2008-07-29 01:56:57 +0000
committerVinicius Jose Latorre <viniciusjl@ig.com.br>2008-07-29 01:56:57 +0000
commit178620169cd4ccc133db091fdf3bb0ba785ed3ce (patch)
treefa249511da5f069e9d0691db2f4d6171075891dd /lisp/whitespace.el
parent0e134ea0ce5e10748230480b0d04f9fdcc3cb6b3 (diff)
whitespace-newline: change initilization to have a low contrast relative to the background color.
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r--lisp/whitespace.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index d30933fdca3..1e46c3c808a 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -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'."