diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2017-08-26 23:19:04 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2017-08-26 23:23:47 +0200 |
| commit | bc394ac7112f8d0611841c15b4763141caebac2e (patch) | |
| tree | 1a9f308a2b29abe178b5024f464045dfe1fa69e9 /eighters-theme.el | |
| parent | 2e11f5f2650a7f86b4cc17bfd87432fb83a1f2f8 (diff) | |
| download | eighters-theme-bc394ac7112f8d0611841c15b4763141caebac2e.tar.xz | |
Simplify string/type face and customize ANSI colors
Diffstat (limited to 'eighters-theme.el')
| -rw-r--r-- | eighters-theme.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eighters-theme.el b/eighters-theme.el index fbf6ffa..c6b8b4f 100644 --- 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) |
