From ba9427329ac49fa2e060da2c16507feed62ad890 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 24 Feb 2023 23:40:43 -0800 Subject: [PATCH] fix: Make the black color in vterm stand out from the background MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The black color is used, for one, for predictive completion in zsh and fish. For some reason, without this change, the color doesn't show up at all in ‘vterm’, even though it works fine in ‘term’. --- yoshi-theme.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yoshi-theme.el b/yoshi-theme.el index c1ebeb4..6f955af 100644 --- a/yoshi-theme.el +++ b/yoshi-theme.el @@ -564,6 +564,9 @@ `(rpm-spec-ghost-face ((t (:foreground ,fgred)))) `(rpm-spec-section-face ((t (:foreground ,fgyellow :underline t)))) + ;; vterm + `(vterm-color-black ((t (:background ,yoshi-2 :inherit term-color-black)))) + ;; Window dividers `(window-divider ((t (:foreground ,yoshi-2)))) `(window-divider-first-pixel ((t (:foreground unspecified :inherit window-divider))))