branch: elpa/dracula-theme
commit 5ce43ed733c2cdfdb436253bcd83bab3558ba2a5
Author: Sebastian Reuße <[email protected]>
Commit: Sebastian Reuße <[email protected]>
Emacs: improve isearch faces.
By default, isearch-fail doesn’t set a foreground color and will thus
inherit
the default white text foreground. This will be illegible on top of the
warning-colored background, so we explicitly set the foreground color now.
---
dracula-theme.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/dracula-theme.el b/dracula-theme.el
index 32099d6..0f2d7dc 100644
--- a/dracula-theme.el
+++ b/dracula-theme.el
@@ -70,6 +70,7 @@
`(cursor ((,class (:background ,fg3))))
`(show-paren-match-face ((,class (:background ,warning))))
`(isearch ((,class (:bold t :foreground ,warning :background ,bg3))))
+ `(isearch-fail ((,class (:foreground ,bg1 :background ,warning))))
`(mode-line ((,class (:foreground nil :background ,bg3 :box ,bg3))))
`(mode-line-inactive ((,class (:foreground ,fg1 :background ,bg1 :box
,bg1))))
`(vertical-border ((,class (:foreground ,bg2))))