branch: elpa/material-theme
commit bb68740f4e0997d9a03edf228db1ec51d49cf7d0
Author: Christoph Paulik <[email protected]>
Commit: Christoph Paulik <[email protected]>
tweaked colors slightly, made clojure constants inherit from builtins
- fix #7
---
material-theme.el | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/material-theme.el b/material-theme.el
index e97e608..c7c5ae3 100644
--- a/material-theme.el
+++ b/material-theme.el
@@ -68,22 +68,23 @@
`(bold-italic ((,class (:slant italic :weight bold))))
`(underline ((,class (:underline t))))
`(italic ((,class (:slant italic))))
- `(font-lock-builtin-face ((,class (:foreground "#ff7043"))))
+ `(font-lock-builtin-face ((,class (:foreground "#ff8A65"))))
`(font-lock-comment-delimiter-face ((,class (:foreground ,comment))))
`(font-lock-comment-face ((,class (:foreground ,comment))))
`(font-lock-constant-face ((,class (:foreground ,green))))
`(font-lock-doc-face ((,class (:foreground "moccasin"))))
`(font-lock-doc-string-face ((,class (:foreground ,yellow))))
- `(font-lock-function-name-face ((,class (:foreground ,"#b3e5fc"))))
+ `(font-lock-function-name-face ((,class (:foreground ,"#84ffff"))))
`(font-lock-keyword-face ((,class (:foreground ,yellow))))
`(font-lock-negation-char-face ((,class (:foreground ,blue))))
`(font-lock-preprocessor-face ((,class (:foreground "gold"))))
`(font-lock-regexp-grouping-backslash ((,class (:foreground ,yellow))))
`(font-lock-regexp-grouping-construct ((,class (:foreground ,purple))))
`(font-lock-string-face ((,class (:foreground "#9ccc65"))))
- `(font-lock-type-face ((,class (:foreground "CadetBlue1"))))
- `(font-lock-variable-name-face ((,class (:foreground ,yellow))))
+ `(font-lock-type-face ((,class (:foreground "#84ffff"))))
+ `(font-lock-variable-name-face ((,class (:foreground ,"#ffcc80"))))
`(font-lock-warning-face ((,class (:weight bold :foreground ,red))))
+ `(highlight-numbers-number ((,class (:foreground ,"#9ccc65"))))
`(shadow ((,class (:foreground ,comment))))
`(success ((,class (:foreground "SeaGreen2"))))
`(error ((,class (:foreground ,red))))
@@ -123,6 +124,7 @@
`(clojure-test-failure-face ((,class (:background nil :inherit
flymake-warnline))))
`(clojure-test-error-face ((,class (:background nil :inherit
flymake-errline))))
`(clojure-test-success-face ((,class (:background nil :foreground nil
:underline ,green))))
+ `(clojure-keyword-face ((,class (:inherit font-lock-builtin-face))))
;; EDTS errors
`(edts-face-warning-line ((t (:background nil :inherit flymake-warnline))))