vim-monochrome

My fork of github.com/fxn/vim-monochrome
git clone https://git.sr.ht/~jbauer/vim-monochrome
Log | Files | Refs | README | LICENSE

commit 41131630dab4770648db1315c0b84635004c6e03
parent e264bde93e825bef540af9b2c40aaa8111e2f841
Author: Jake Bauer <jbauer@paritybit.ca>
Date:   Fri, 26 Aug 2022 22:04:03 -0400

Add/Fix missing colour definitions

Diffstat:
Mcolors/monochrome-light.vim | 12+++++++++---
Mcolors/monochrome.vim | 4++++
2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/colors/monochrome-light.vim b/colors/monochrome-light.vim @@ -22,7 +22,9 @@ let s:white = ['#EEEEEE', 255] let s:accent = ['#6C6C6C', 242] let s:cursorline = ['#DADADA', 253] let s:comment = ['#585858', 240] -let s:faded = ['#BCBCBC', 252] +let s:faded = ['#D0D0D0', 252] +let s:menu = ['#BCBCBC', 250] +let s:menusel = ['#9E9E9E', 247] let s:default_fg = s:black let s:default_bg = s:white @@ -75,6 +77,10 @@ call s:hi('Search', s:black, s:faded) call s:hi('Visual', s:black, s:faded) call s:hi('ErrorMsg', s:red, s:default_bg) +" Status bar +call s:hi('StatusLine', s:black, s:faded) +call s:hi('StatusLineNC', s:black, s:faded) + " Tildes at the bottom of a buffer, etc. call s:hi('NonText', s:faded) @@ -97,8 +103,8 @@ call s:hi('helpHyperTextJump', s:accent, s:default_bg, s:underline) call s:hi('helpNote') " Popup menu. -call s:hi('Pmenu', s:black, s:accent) -call s:hi('PmenuSel', s:accent, s:black) +call s:hi('Pmenu', s:black, s:menu) +call s:hi('PmenuSel', s:black, s:menusel) " Notes. call s:hi('Todo', s:black, s:default_bg, s:bold) diff --git a/colors/monochrome.vim b/colors/monochrome.vim @@ -75,6 +75,10 @@ call s:hi('Search', s:white, s:accent) call s:hi('Visual', s:white, s:accent) call s:hi('ErrorMsg', s:red, s:default_bg) +" Status bar +call s:hi('StatusLine', s:white, s:faded) +call s:hi('StatusLineNC', s:white, s:faded) + " Tildes at the bottom of a buffer, etc. call s:hi('NonText', s:faded)