Skip to content

Commit

Permalink
soda theme
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeriozambon committed Oct 15, 2017
1 parent af3292d commit fc875ce
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
33 changes: 33 additions & 0 deletions autoload/airline/themes/soda.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
let g:airline#themes#soda#palette = {}

let g:airline#themes#soda#palette.normal = airline#themes#generate_color_map(
\['#ffffff', '#875faf', 255, 97],
\['#ffffff', '#875f87', 255, 91],
\['#ffffff', '#5f0087', 255, 54])

let g:airline#themes#soda#palette.insert = airline#themes#generate_color_map(
\['#ffffff', '#005f00', 255, 22],
\['#ffffff', '#008700', 255, 28],
\['#ffffff', '#00af00', 255, 34])

let g:airline#themes#soda#palette.replace = {'airline_a': ['#767676', '#ffff5f', 243, 227]}

let g:airline#themes#soda#palette.visual = airline#themes#generate_color_map(
\['#767676', '#ffff5f', 243, 227],
\['#767676', '#ffd75f', 243, 221],
\['#767676', '#ffaf5f', 243, 215])

let g:airline#themes#soda#palette.inactive = airline#themes#generate_color_map(
\['#767676', '#ffffff', 243, 255],
\['#767676', '#ffffff', 243, 255],
\['#767676', '#ffffff', 243, 255])

let g:airline#themes#soda#palette.inactive_modified = {'airline_c': ['#ffffff', '#df0000', 255, 160]}

let g:airline#themes#soda#palette.tabline = {
\'airline_tab': ['#ffffff', '#5f0087', 255, 54],
\'airline_tabsel': ['#ffffff', '#875faf', 255, 97],
\'airline_tabtype': ['#ffffff', '#00af00', 255, 34],
\'airline_tabfill': ['#767676', '#ffffff', 243, 255],
\'airline_tabmod': ['#ffffff', '#767676', 255, 243]}

1 change: 1 addition & 0 deletions doc/airline-themes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ Currently this repository contains the following themes:
* sierra
* silver
* simple
* soda
* sol
* solarized (|airline-theme-solarized|)
* term
Expand Down

0 comments on commit fc875ce

Please sign in to comment.