From b7d0ccdac2a400447a5530eed3adeec143d76611 Mon Sep 17 00:00:00 2001 From: Bailey Ling Date: Sat, 24 Aug 2013 04:28:37 +0000 Subject: [PATCH] give the light theme inactive mode some more color. --- autoload/airline/themes/light.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/autoload/airline/themes/light.vim b/autoload/airline/themes/light.vim index c1aab40c..cc84ba3e 100644 --- a/autoload/airline/themes/light.vim +++ b/autoload/airline/themes/light.vim @@ -36,6 +36,8 @@ let g:airline#themes#light#palette.visual_modified = { \ } -let s:IA = [ '#9e9e9e' , '#ffffff' , 247 , 255 , '' ] -let g:airline#themes#light#palette.inactive = airline#themes#generate_color_map(s:IA, s:IA, s:IA, s:file) +let s:IA1 = [ '#666666' , '#b2b2b2' , 242 , 249 , '' ] +let s:IA2 = [ '#8a8a8a' , '#d0d0d0' , 245 , 252 , '' ] +let s:IA3 = [ '#a8a8a8' , '#ffffff' , 248 , 255 , '' ] +let g:airline#themes#light#palette.inactive = airline#themes#generate_color_map(s:IA1, s:IA2, s:IA3, s:file)