From 7cd2a7e4f60f589fb48b448d68559e54fae0b6c5 Mon Sep 17 00:00:00 2001 From: Patrick Stockwell Date: Sat, 27 Nov 2021 22:20:05 +1100 Subject: [PATCH] Use darker background for statusline --- colors/vim-monokai-tasty.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index e99482a..2c256b2 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -113,7 +113,7 @@ call Highlight('NonText', { 'fg': s:darker_grey, 'bg': s:none, 'style': s:none } call Highlight('TabLineFill', { 'fg': s:none, 'bg': s:darker_grey, 'style': s:none }) call Highlight('LineNr', { 'fg': s:dark_grey, 'bg': s:none, 'style': s:none }) call Highlight('VertSplit', { 'fg': s:darker_grey, 'bg': s:charcoal, 'style': s:none }) -call Highlight('StatusLine', { 'fg': s:light_grey, 'bg': s:darker_grey, 'style': s:none }) +call Highlight('StatusLine', { 'fg': s:light_grey, 'bg': s:charcoal, 'style': s:none }) call Highlight('StatusLineNC', { 'fg': s:grey, 'bg': s:darker_grey, 'style': s:none }) call Highlight('StatusLineBase', { 'fg': s:white, 'bg': s:darker_grey, 'style': s:none })