From 6ffe7b068ee37de30db0131aad00077a9e9384ba Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sat, 10 Aug 2019 22:33:41 -0400 Subject: theme: Avoid setting faces outside theme --- lisp/km-theme.el | 14 ++++++-------- 1 file 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"))))) -- cgit v1.2.3