summaryrefslogtreecommitdiff
path: root/lisp/km-theme.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2019-08-10 22:33:41 -0400
committerKyle Meyer <kyle@kyleam.com>2019-08-10 22:33:41 -0400
commit6ffe7b068ee37de30db0131aad00077a9e9384ba (patch)
tree4722f6b6a9ff09042777227ee7e7ff9541ae6f18 /lisp/km-theme.el
parent07c64b9875a6f8f39392b32e5b65aedc9d7f9c89 (diff)
downloademacs.d-6ffe7b068ee37de30db0131aad00077a9e9384ba.tar.gz
theme: Avoid setting faces outside theme
Diffstat (limited to 'lisp/km-theme.el')
-rw-r--r--lisp/km-theme.el14
1 files changed, 6 insertions, 8 deletions
diff --git a/lisp/km-theme.el b/lisp/km-theme.el
index 3d8ccff..962ffd5 100644
--- a/lisp/km-theme.el
+++ b/lisp/km-theme.el
@@ -24,11 +24,16 @@
(custom-theme-set-faces
'stekene-light
+ '(Info-quoted ((t (:inherit default))))
'(compilation-info ((t (:inherit font-lock-function-name-face))))
+ '(cursor ((t (:background "#f08080"))))
'(default ((t (:background "white"))))
'(diff-added ((t (:foreground "DarkGreen" :background "grey98"))))
'(diff-context ((t (:foreground "grey10" :background "grey98"))))
'(diff-removed ((t (:foreground "#aa2222" :background "grey98"))))
+ '(dired-subtree-depth-1-face ((t (:background "gray80"))))
+ '(dired-subtree-depth-2-face ((t (:background "gray90"))))
+ '(dired-subtree-depth-3-face ((t (:background "gray95"))))
'(dired-symlink ((t (:inherit font-lock-constant-face))))
'(font-latex-math-face ((t (:inherit font-lock-builtin-face))))
'(font-latex-string-face ((t (:inherit default))))
@@ -108,14 +113,7 @@
'(term-color-green ((t (:foreground "#3cb371"))))
'(term-color-magenta ((t (:foreground "#8b008b"))))
'(term-color-red ((t (:inherit font-lock-string-face))))
- '(term-color-yellow ((t (:inherit font-lock-doc-face)))))
-
-(custom-set-faces
- '(cursor ((t (:background "#f08080"))))
- '(dired-subtree-depth-1-face ((t (:background "gray80"))))
- '(dired-subtree-depth-2-face ((t (:background "gray90"))))
- '(dired-subtree-depth-3-face ((t (:background "gray95"))))
- '(Info-quoted ((t (:inherit default))))
+ '(term-color-yellow ((t (:inherit font-lock-doc-face))))
'(whitespace-indentation ((t (:background "gray90"))))
'(whitespace-trailing ((t (:background "gray90")))))