summaryrefslogtreecommitdiff
path: root/eighters-theme.el
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2017-11-30 22:40:56 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2017-11-30 22:40:56 +0100
commit4782035d3997aba7e7504874112c2cde7362c6e3 (patch)
tree8cfd799ac276f00ad15f90910fe3e6968f2ad526 /eighters-theme.el
parent539a38ba9b67d0daf933c7b55b47b93d704ed7e8 (diff)
downloadeighters-theme-4782035d3997aba7e7504874112c2cde7362c6e3.tar.xz
Change "white smoke" to "gainsboro"
Less contrast.
Diffstat (limited to 'eighters-theme.el')
-rw-r--r--eighters-theme.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/eighters-theme.el b/eighters-theme.el
index 53b0c7b..9480d97 100644
--- 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)