From 3f85c76a2c07447f0017f50778beb98ddea258f4 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 18 Mar 2018 03:36:36 -0400 Subject: [PATCH] ui/doom: use ':weight light' in +doom-folded-face --- modules/ui/doom/config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui/doom/config.el b/modules/ui/doom/config.el index 11e19cf0c..084b583e1 100644 --- a/modules/ui/doom/config.el +++ b/modules/ui/doom/config.el @@ -39,9 +39,9 @@ (after! hideshow (defface +doom-folded-face `((((background dark)) - (:inherit font-lock-comment-face :background ,(doom-color 'base0))) + (:inherit font-lock-comment-face :background ,(doom-color 'base0) :weight light)) (((background light)) - (:inherit font-lock-comment-face :background ,(doom-color 'base3)))) + (:inherit font-lock-comment-face :background ,(doom-color 'base3) :weight light))) "Face to hightlight `hideshow' overlays." :group 'doom-themes)