Skip to content

Commit

Permalink
improvement(palette): adjust ui colors in proton light variant
Browse files Browse the repository at this point in the history
  • Loading branch information
sainnhe committed Mar 2, 2020
1 parent 6dcbc30 commit 3079cc3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions autoload/airline/themes/edge.vim
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ elseif get(g:, 'edge_style', 'default') ==# 'proton'
else
let s:foreground = [ '#4b505b', 241 ]
let s:background = [ '#fafafa', 231 ]
let s:background_alt = [ '#eef2f6', 255 ]
let s:background_grey = [ '#dde4ea', 253 ]
let s:background_alt = [ '#eef1f4', 255 ]
let s:background_grey = [ '#dde3e9', 253 ]
let s:red_sel = [ '#e17373', 167 ]
let s:purple_sel = [ '#bf75d6', 134 ]
let s:green_sel = [ '#76af6f', 107 ]
Expand Down
4 changes: 2 additions & 2 deletions autoload/lightline/colorscheme/edge.vim
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ elseif get(g:, 'edge_style', 'default') ==# 'proton'
else
let s:foreground = [ '#4b505b', 241 ]
let s:background = [ '#fafafa', 231 ]
let s:background_alt = [ '#eef2f6', 255 ]
let s:background_grey = [ '#dde4ea', 253 ]
let s:background_alt = [ '#eef1f4', 255 ]
let s:background_grey = [ '#dde3e9', 253 ]
let s:red = [ '#e17373', 167 ]
let s:purple = [ '#bf75d6', 134 ]
let s:yellow = [ '#e0ac48', 172 ]
Expand Down
12 changes: 6 additions & 6 deletions colors/edge.vim
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ elseif s:configuration.style ==# 'proton'
else
let s:palette = {
\ 'bg0': ['#fafafa', '231', 'White'],
\ 'bg1': ['#f1f5f7', '255', 'LightGrey'],
\ 'bg2': ['#eef2f6', '255', 'LightGrey'],
\ 'bg3': ['#e7ecf1', '254', 'LightGrey'],
\ 'bg4': ['#e5eaf0', '253', 'Grey'],
\ 'bg5': ['#dde4ea', '253', 'Grey'],
\ 'bg_grey': ['#bbc7d3', '246', 'DarkGrey'],
\ 'bg1': ['#f1f4f6', '255', 'LightGrey'],
\ 'bg2': ['#eef1f4', '255', 'LightGrey'],
\ 'bg3': ['#e8ebf0', '254', 'LightGrey'],
\ 'bg4': ['#e6eaf0', '253', 'Grey'],
\ 'bg5': ['#dde3e9', '253', 'Grey'],
\ 'bg_grey': ['#bbc6d1', '246', 'DarkGrey'],
\ 'bg_red': ['#e17373', '167', 'Red'],
\ 'bg_red1': ['#f6e4e4', '217', 'LightRed'],
\ 'bg_red2': ['#f4dada', '217', 'LightRed'],
Expand Down

0 comments on commit 3079cc3

Please sign in to comment.