diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-11-20 14:40:49 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-11-30 16:09:51 -0500 |
commit | d031c323d2ccdc70123b67423a0043b5145076ec (patch) | |
tree | 189c10437ea16d6800ac9a941e8855d16997acfb /lisp | |
parent | 27bf0b566afa10a120c00e0276978cc8b62cd21a (diff) | |
download | emacs.d-d031c323d2ccdc70123b67423a0043b5145076ec.tar.gz |
Darken font-lock-keyword-face in stekene-light
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-appearance.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el index a80b70e..808e9a4 100644 --- a/lisp/init-appearance.el +++ b/lisp/init-appearance.el @@ -13,6 +13,11 @@ (load-theme 'stekene-light t) +(custom-theme-set-faces + 'stekene-light + ;; Darken a bit (was gray40). + '(font-lock-keyword-face ((t (:foreground "gray33"))))) + (custom-set-faces '(dired-subtree-depth-1-face ((t (:background "gray80")))) '(dired-subtree-depth-2-face ((t (:background "gray90")))) |