branch: elpa/gruvbox-theme commit 9ee1159acd15ee014d5643cdaa4e00e06efa6d63 Author: Christian Vanderwall <christ...@cvdub.net> Commit: Jason Milkins <jason...@users.noreply.github.com>
Fix background color for diredfl-dir-priv and diredfl-exec-priv Previously, the diredfl-dir-priv and diredfl-exec-priv faces had a dark blue background color. This worked in the dark themes, but looked weird in the light themes. This commit removes the dark blue background. --- gruvbox.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gruvbox.el b/gruvbox.el index db79a95d3b..8eb85d907e 100644 --- a/gruvbox.el +++ b/gruvbox.el @@ -718,8 +718,8 @@ Should contain 2 %s constructs to allow for theme name and directory/prefix") (diredfl-deletion-file-name (:foreground gruvbox-bright_red :bold t)) (diredfl-dir-heading (:foreground gruvbox-bright_blue :bold t)) (diredfl-dir-name (:foreground gruvbox-bright_blue)) - (diredfl-dir-priv (:foreground gruvbox-bright_blue :background gruvbox-dark_blue)) - (diredfl-exec-priv (:foreground gruvbox-bright_blue :background gruvbox-dark_blue)) + (diredfl-dir-priv (:foreground gruvbox-bright_blue)) + (diredfl-exec-priv (:foreground gruvbox-bright_blue)) (diredfl-executable-tag (:foreground gruvbox-bright_green)) (diredfl-file-name (:foreground gruvbox-light2)) (diredfl-file-suffix (:foreground gruvbox-light4))