Added paste and replace mode colourings to themes

This commit is contained in:
Tim Brooks
2013-07-08 12:51:01 +01:00
parent 56ad2f8c24
commit 17b7d187b8
4 changed files with 32 additions and 0 deletions
+8
View File
@@ -29,6 +29,14 @@ let g:airline#themes#light#insert_modified = {
\ 'info_separator': [ '#00df87' , '#ffdfdf' , 42 , 224 , '' ] ,
\ 'statusline': [ '#df0000' , '#ffdfdf' , 160 , 224 , '' ] ,
\ }
let g:airline#themes#light#insert_paste = {
\ 'mode': [ s:I1[0] , '#d78700' , s:I1[2] , 172 , '' ] ,
\ 'mode_separator': [ '#d78700' , s:I2[1] , 172 , s:I2[3] , '' ] ,
\ }
let g:airline#themes#light#insert_replace = {
\ 'mode': [ s:I2[0] , '#ff0000' , s:I1[2] , 196 , '' ] ,
\ 'mode_separator': [ '#ff0000' , s:I2[1] , 196 , s:I2[3] , '' ] ,
\ }
let s:V1 = [ '#ffffff' , '#ff5f00' , 255 , 202 ]
let s:V2 = [ '#5f0000' , '#ffaf00' , 52 , 214 ]