biogoo: Get green from MatchParen instead of PmenuThumb

The foreground color of PmenuThumb is not actually used for anything by
Vim. It was by mistake that I defined it in the first place, and this
vim-airline theme should refer to a different highlighting group in
order to get a green color.
This commit is contained in:
Benjamin Esham 2020-01-26 13:39:50 -08:00
parent 7f2081e2cb
commit eac720427e
1 changed files with 2 additions and 2 deletions

View File

@ -16,10 +16,10 @@ function! airline#themes#biogoo#refresh()
let s:N3 = airline#themes#get_highlight2(['Include', 'fg'], ['VertSplit', 'bg'], 'bold')
let g:airline#themes#biogoo#palette.normal = airline#themes#generate_color_map(s:N1, s:N2, s:N3)
let s:Nmod = airline#themes#get_highlight2(['PmenuThumb', 'fg'],['VertSplit', 'bg'])
let s:Nmod = airline#themes#get_highlight2(['MatchParen', 'bg'], ['VertSplit', 'bg'])
let g:airline#themes#biogoo#palette.normal_modified = {'airline_c': s:Nmod}
let s:I1 = airline#themes#get_highlight2(['VertSplit', 'bg'], ['PmenuThumb', 'fg'], 'bold')
let s:I1 = airline#themes#get_highlight2(['VertSplit', 'bg'], ['MatchParen', 'bg'], 'bold')
let s:I2 = s:N2
let s:I3 = s:N3
let g:airline#themes#biogoo#palette.insert = airline#themes#generate_color_map(s:I1, s:I2, s:I3)