From 914a787d5f89011fc721fd00ac4b5ce63067adae Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 7 May 2017 19:14:02 +0200 Subject: [PATCH] ui/doom: polish +doom-folded-face definition --- modules/ui/doom/config.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/ui/doom/config.el b/modules/ui/doom/config.el index 0101c82e6..84adb2723 100644 --- a/modules/ui/doom/config.el +++ b/modules/ui/doom/config.el @@ -50,9 +50,10 @@ :background (face-background 'doom-hl-line)) (defface +doom-folded-face - `((t (:inherit font-lock-comment-face - :background ,(face-background 'doom-default) - :foreground ,(face-foreground 'font-lock-comment-face)))) + `((((background dark)) + (:inherit font-lock-comment-face :background ,(doom-color 'black))) + (((background light)) + (:inherit font-lock-comment-face :background ,(doom-color 'light-grey)))) "Face to hightlight `hideshow' overlays." :group 'doom)