add inactive modified support to dark, light, simple. resolves #59.

This commit is contained in:
Bailey Ling 2013-07-16 02:40:08 +00:00
parent 5fefc84413
commit fdc02107c6
3 changed files with 7 additions and 0 deletions

View File

@ -41,4 +41,7 @@ let g:airline#themes#dark#visual_modified = {
let s:IA = [ '#4e4e4e' , '#1c1c1c' , 239 , 234 , '' ]
let g:airline#themes#dark#inactive = airline#themes#generate_color_map(s:IA, s:IA, s:IA, s:file)
let g:airline#themes#dark#inactive_modified = {
\ 'statusline': [ '#5f005f' , '' , '53' , '' , '' ] ,
\ }

View File

@ -42,3 +42,6 @@ let g:airline#themes#light#visual_modified = {
let s:IA = [ '#9e9e9e' , '#ffffff' , 247 , 255 , '' ]
let g:airline#themes#light#inactive = airline#themes#generate_color_map(s:IA, s:IA, s:IA, s:file)
let g:airline#themes#light#inactive_modified = {
\ 'statusline': [ '#df0000' , '' , '160' , '', '' ]
\ }

View File

@ -98,4 +98,5 @@ let g:airline#themes#simple#visual_modified = copy(g:airline#themes#simple#norma
let s:IA = [ '#4e4e4e' , s:guibg , 239 , s:termbg , '' ]
let g:airline#themes#simple#inactive = airline#themes#generate_color_map(s:IA, s:IA, s:IA, s:file)
let g:airline#themes#simple#inactive_modified = copy(g:airline#themes#simple#normal_modified)