Update indent context colors

This commit is contained in:
Daniel Lynn 2021-09-21 15:40:56 -05:00
parent c5ef9f6afb
commit f98b5a07d5
Signed by: daniel
GPG Key ID: 28496A140E180A9D

View File

@ -37,12 +37,12 @@ function! s:sonokai_custom() abort
call sonokai#highlight('RedSign', l:palette.red, l:palette.bg1)
call sonokai#highlight('YellowSign', l:palette.yellow, l:palette.bg1)
call sonokai#highlight('CocHintSign', l:palette.grey, l:palette.none, 'italic')
call sonokai#highlight('IndentBlanklineContext1', l:palette.red, l:palette.none)
call sonokai#highlight('IndentBlanklineContext2', l:palette.yellow, l:palette.none)
call sonokai#highlight('IndentBlanklineContext3', l:palette.green, l:palette.none)
call sonokai#highlight('IndentBlanklineContext4', l:palette.blue, l:palette.none)
call sonokai#highlight('IndentBlanklineContext5', l:palette.purple, l:palette.none)
call sonokai#highlight('IndentBlanklineContext6', l:palette.orange, l:palette.none)
call sonokai#highlight('IndentBlanklineContext1', l:palette.purple, l:palette.none)
call sonokai#highlight('IndentBlanklineContext2', l:palette.orange, l:palette.none)
call sonokai#highlight('IndentBlanklineContext3', l:palette.blue, l:palette.none)
call sonokai#highlight('IndentBlanklineContext4', l:palette.yellow, l:palette.none)
call sonokai#highlight('IndentBlanklineContext5', l:palette.green, l:palette.none)
call sonokai#highlight('IndentBlanklineContext6', l:palette.red, l:palette.none)
endfunction
augroup CustomColors