Modified dark.vim commandline foreground color

The foreground color for `commandline` mode is the same as `normal` mode, which is easier to read against the green background
This commit is contained in:
Félix Léger 2019-09-11 15:25:52 -04:00 committed by GitHub
parent 63d8764f9d
commit f4f9a8a241
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ let g:airline#themes#dark#palette.inactive_modified = {
\ }
" For commandline mode, we use the colors from normal mode, except the mode
" indicator should be colored differently, e.g. blue on light green
let s:airline_a_commandline = [ '#0000ff' , '#0cff00' , 63 , 40 ]
" indicator should be colored differently, e.g. light green
let s:airline_a_commandline = [ '#0000ff' , '#0cff00' , 17 , 40 ]
let s:airline_b_commandline = [ '#ffffff' , '#444444' , 255 , 238 ]
let s:airline_c_commandline = [ '#9cffd3' , '#202020' , 85 , 234 ]
let g:airline#themes#dark#palette.commandline = airline#themes#generate_color_map(s:airline_a_commandline, s:airline_b_commandline, s:airline_c_commandline)