diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-01-14 22:52:48 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-01-16 18:51:46 -0500 |
commit | c36707ea2bdfcb6306fc3a2cdfb5376b07422107 (patch) | |
tree | 9d57d0be3e1208e1e489c725d9b55dc8cca3901a /lisp | |
parent | 0ca7307ae9c4931067925d9bf0b85059a17f6933 (diff) | |
download | emacs.d-c36707ea2bdfcb6306fc3a2cdfb5376b07422107.tar.gz |
km-theme.el: Move match face up
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-theme.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/km-theme.el b/lisp/km-theme.el index 0e9634b..6fafebd 100644 --- a/lisp/km-theme.el +++ b/lisp/km-theme.el @@ -25,6 +25,7 @@ (custom-theme-set-faces 'stekene-light '(default ((t (:background "white")))) + '(match ((t (:inherit default :background "PaleGreen1")))) '(compilation-info ((t (:inherit font-lock-function-name-face)))) '(diff-added ((t (:foreground "DarkGreen" :background "grey98")))) '(diff-context ((t (:foreground "grey50" :background "grey98")))) @@ -83,7 +84,6 @@ '(magit-section-highlight ((t (:background "white")))) '(magit-section-heading ((t (:inherit font-lock-constant-face :weight bold)))) '(magit-section-secondary-heading ((t (:inherit default)))) - '(match ((t (:inherit default :background "PaleGreen1")))) '(org-agenda-calendar-event ((t (:inherit font-lock-function-name-face)))) '(org-agenda-calendar-sexp ((t (:inherit font-lock-variable-name-face)))) '(org-agenda-date ((t (:foreground "gray40")))) |