commit bc394ac7112f8d0611841c15b4763141caebac2e
parent 2e11f5f2650a7f86b4cc17bfd87432fb83a1f2f8
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date: Sat, 26 Aug 2017 23:19:04 +0200
Simplify string/type face and customize ANSI colors
Diffstat:
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/eighters-theme.el b/eighters-theme.el
@@ -16,10 +16,10 @@
'(font-lock-function-name-face ((t (:foreground "steelblue1" :weight bold))))
'(font-lock-keyword-face ((t (:foreground "cyan" :weight bold))))
'(font-lock-preprocessor-face ((t (:inherit (font-lock-builtin-face)))))
- '(font-lock-string-face ((t (:foreground "lime green" :slant italic))))
+ '(font-lock-string-face ((t (:foreground "green3" :slant italic))))
'(font-lock-regexp-grouping-backslash ((t (:foreground "olivedrab4"))))
'(font-lock-regexp-grouping-construct ((t (:foreground "olivedrab2" :weight bold))))
- '(font-lock-type-face ((t (:foreground "green3" :slant italic))))
+ '(font-lock-type-face ((t (:foreground "green3"))))
'(font-lock-variable-name-face ((t (:foreground "gold"))))
'(completions-common-part ((t (:inherit (font-lock-comment-face)))))
'(link ((t (:underline t :foreground "steelblue1"))))
@@ -66,4 +66,9 @@
'(magit-section-highlight ((t (:inherit (highlight)))))
'(magit-diff-context-highlight ((t (:foreground "grey70" :inherit (magit-section-highlight))))))
+(custom-theme-set-variables 'eighters
+ '(ansi-color-names-vector
+ ["black" "red" "green3" "gold" "steelblue1" "maroon1" "cyan"
+ "white smoke"]))
+
(provide-theme 'eighters)