Skip to content

Commit

Permalink
meltbus: Adapt vterm colours to match user's expectations
Browse files Browse the repository at this point in the history
vterm abuses the background colour of the first eight colours to
generate the upper eight colours.
  • Loading branch information
spacefrogg committed Dec 15, 2022
1 parent 7e3edd7 commit 2b62ce8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions themes/doom-meltbus-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -346,14 +346,14 @@ highlight interactive elements."
(treemacs-git-conflict-face :foreground vc-conflict)
(treemacs-git-modified-face :foreground vc-modified)
;;;; vterm
(vterm-color-black :inherit 'term-color-black)
(vterm-color-red :inherit 'term-color-red)
(vterm-color-blue :inherit 'term-color-blue)
(vterm-color-green :inherit 'term-color-green)
(vterm-color-yellow :inherit 'term-color-yellow)
(vterm-color-magenta :inherit 'term-color-magenta)
(vterm-color-cyan :inherit 'term-color-cyan)
(vterm-color-white :inherit 'term-color-white)
(vterm-color-black :inherit 'term-color-black :background base3)
(vterm-color-red :inherit 'term-color-red :background (face-foreground 'term-color-bright-red))
(vterm-color-blue :inherit 'term-color-blue :background (face-foreground 'term-color-bright-blue))
(vterm-color-green :inherit 'term-color-green :background (face-foreground 'term-color-bright-green))
(vterm-color-yellow :inherit 'term-color-yellow :background (face-foreground 'term-color-bright-yellow))
(vterm-color-magenta :inherit 'term-color-magenta :background (face-foreground 'term-color-bright-magenta))
(vterm-color-cyan :inherit 'term-color-cyan :background (face-foreground 'term-color-bright-cyan))
(vterm-color-white :inherit 'term-color-white :background (face-foreground 'term-color-bright-white))
;;;; which-key
(which-key-key-face :foreground base5)
(which-key-group-description-face :foreground base5)
Expand Down

0 comments on commit 2b62ce8

Please sign in to comment.