branch: elpa/spacemacs-theme
commit e9b117ee91673d18ce6200a2479fb77cbffe637e
Author: jixiuf <[email protected]>
Commit: jixiuf <[email protected]>
support vterm
---
spacemacs-common.el | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/spacemacs-common.el b/spacemacs-common.el
index ab51beee92..49bddb4bdb 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -886,6 +886,20 @@ to 'auto, tags may not be properly aligned. "
`(term-color-white ((,class (:foreground ,base))))
`(term-color-yellow ((,class (:foreground ,yellow))))
+;;;;; vterm
+ `(vterm-color-default ((,class (:foreground ,base :background ,bg1))))
+ ;; vterm-color-black used to render black color code.
+ ;; The foreground color is used as ANSI color 0 and the background
+ ;; color is used as ANSI color 8.
+ `(vterm-color-black ((,class (:foreground ,bg4 :background ,bg4))))
+ `(vterm-color-blue ((,class (:foreground ,blue :background ,blue))))
+ `(vterm-color-cyan ((,class (:foreground ,cyan :background ,cyan))))
+ `(vterm-color-green ((,class (:foreground ,green :background ,green))))
+ `(vterm-color-magenta ((,class (:foreground ,magenta :background
,magenta))))
+ `(vterm-color-red ((,class (:foreground ,red :background ,red))))
+ `(vterm-color-white ((,class (:foreground ,base :background ,base))))
+ `(vterm-color-yellow ((,class (:foreground ,yellow :background
,yellow))))
+
;;;;; tide
`(tide-hl-identifier-face ((,class (:foreground ,yellow :background
,yellow-bg))))