Skip to content

Commit

Permalink
molokai: black color (16) to orange color (208)
Browse files Browse the repository at this point in the history
  • Loading branch information
mimame committed Mar 24, 2018
1 parent 4b7f77e commit f0e6137
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions autoload/airline/themes/molokai.vim
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let g:airline#themes#molokai#palette.accents = {

" Normal mode
let s:N1 = [ '#080808' , '#e6db74' , 232 , 144 ] " mode
let s:N2 = [ '#f8f8f0' , '#232526' , 253 , 16 ] " info
let s:N2 = [ '#f8f8f0' , '#232526' , 253 , 208 ] " info
let s:N3 = [ '#f8f8f0' , '#465457' , 253 , 67 ] " statusline

let g:airline#themes#molokai#palette.normal = airline#themes#generate_color_map(s:N1, s:N2, s:N3)
Expand All @@ -17,9 +17,9 @@ let g:airline#themes#molokai#palette.normal_modified = {


" Insert mode
let s:I1 = [ '#080808' , '#66d9ef' , 232 , 81 ]
let s:I2 = [ '#f8f8f0' , '#232526' , 253 , 16 ]
let s:I3 = [ '#f8f8f0' , '#465457' , 253 , 67 ]
let s:I1 = [ '#080808' , '#66d9ef' , 232 , 81 ]
let s:I2 = [ '#f8f8f0' , '#232526' , 253 , 208 ]
let s:I3 = [ '#f8f8f0' , '#465457' , 253 , 67 ]

let g:airline#themes#molokai#palette.insert = airline#themes#generate_color_map(s:I1, s:I2, s:I3)
let g:airline#themes#molokai#palette.insert_modified = {
Expand All @@ -29,8 +29,8 @@ let g:airline#themes#molokai#palette.insert_modified = {

" Replace mode
let s:R1 = [ '#080808' , '#f92672' , 232 , 161 ]
let s:R2 = [ '#f8f8f0' , '#232526' , 253 , 16 ]
let s:R3 = [ '#f8f8f0' , '#465457' , 253 , 67 ]
let s:R2 = [ '#f8f8f0' , '#232526' , 253 , 208 ]
let s:R3 = [ '#f8f8f0' , '#465457' , 253 , 67 ]

let g:airline#themes#molokai#palette.replace = airline#themes#generate_color_map(s:R1, s:R2, s:R3)
let g:airline#themes#molokai#palette.replace_modified = {
Expand All @@ -40,7 +40,7 @@ let g:airline#themes#molokai#palette.replace_modified = {

" Visual mode
let s:V1 = [ '#080808' , '#a6e22e' , 232 , 118 ]
let s:V2 = [ '#f8f8f0' , '#232526' , 253 , 16 ]
let s:V2 = [ '#f8f8f0' , '#232526' , 253 , 208 ]
let s:V3 = [ '#f8f8f0' , '#465457' , 253 , 67 ]

let g:airline#themes#molokai#palette.visual = airline#themes#generate_color_map(s:V1, s:V2, s:V3)
Expand Down

0 comments on commit f0e6137

Please sign in to comment.