commit 4782035d3997aba7e7504874112c2cde7362c6e3
parent 539a38ba9b67d0daf933c7b55b47b93d704ed7e8
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date: Thu, 30 Nov 2017 22:40:56 +0100
Change "white smoke" to "gainsboro"
Less contrast.
Diffstat:
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/eighters-theme.el b/eighters-theme.el
@@ -1,14 +1,16 @@
(deftheme eighters
"Eighters gonna eight.")
+;; TODO: make comment foreground lighter? (eg ala linum, shadow)
+
(custom-theme-set-faces
'eighters
- '(default ((t (:background "gray20" :foreground "white smoke" :height 90 :family "DejaVu Sans Mono"))))
+ '(default ((t (:background "gray20" :foreground "gainsboro" :height 90 :family "DejaVu Sans Mono"))))
'(fringe ((t (:foreground "gray50"))))
'(escape-glyph ((t (:foreground "red1"))))
'(minibuffer-prompt ((t (:foreground "steelblue1" :weight bold))))
'(highlight ((t (:background "gray25"))))
- '(region ((t (:background "steel blue" :foreground "white smoke"))))
+ '(region ((t (:background "steel blue" :foreground "gainsboro"))))
'(font-lock-builtin-face ((t (:foreground "steelblue1" :weight bold))))
'(font-lock-comment-face ((t (:foreground "gray50" :slant italic))))
'(font-lock-constant-face ((t (:foreground "maroon1"))))
@@ -64,7 +66,7 @@
'(term-color-green ((t (:foreground "green3" :background "green3"))))
'(term-color-magenta ((t (:foreground "maroon1" :background "maroon1"))))
'(term-color-red ((t (:foreground "red" :background "red"))))
- '(term-color-white ((t (:foreground "white smoke" :background "white smoke"))))
+ '(term-color-white ((t (:foreground "gainsboro" :background "gainsboro"))))
'(term-color-yellow ((t (:foreground "gold" :background "gold"))))
'(which-func ((t (:inherit (font-lock-function-name-face)))))
'(sh-heredoc ((t (:foreground "gold"))))
@@ -76,6 +78,6 @@
(custom-theme-set-variables 'eighters
'(ansi-color-names-vector
["black" "red" "green3" "gold" "steelblue1" "maroon1" "cyan"
- "white smoke"]))
+ "gainsboro"]))
(provide-theme 'eighters)