Skip to content

Commit

Permalink
feat(palette): adjust soft/dark based on medium/dark
Browse files Browse the repository at this point in the history
  • Loading branch information
sainnhe committed Dec 3, 2022
1 parent cec50f9 commit e1fdfc8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions autoload/everforest.vim
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,17 @@ function! everforest#get_palette(background, colors_override) "{{{
else "{{{
if &background ==# 'dark'
let palette1 = {
\ 'bg_dim': ['#283136', '233'],
\ 'bg0': ['#323d43', '235'],
\ 'bg1': ['#3c474d', '236'],
\ 'bg2': ['#465258', '237'],
\ 'bg3': ['#505a60', '238'],
\ 'bg4': ['#576268', '239'],
\ 'bg5': ['#5f6d67', '240'],
\ 'bg_visual': ['#5d4251', '52'],
\ 'bg_red': ['#59454b', '52'],
\ 'bg_green': ['#48584d', '22'],
\ 'bg_blue': ['#3d5665', '17'],
\ 'bg_dim': ['#293136', '233'],
\ 'bg0': ['#333c43', '235'],
\ 'bg1': ['#3a464c', '236'],
\ 'bg2': ['#434f55', '237'],
\ 'bg3': ['#4d5960', '238'],
\ 'bg4': ['#555f66', '239'],
\ 'bg5': ['#5d6b66', '240'],
\ 'bg_visual': ['#5c4150', '52'],
\ 'bg_red': ['#59464c', '52'],
\ 'bg_green': ['#48584e', '22'],
\ 'bg_blue': ['#3f5865', '17'],
\ 'bg_yellow': ['#55544a', '136'],
\ }
else
Expand Down

0 comments on commit e1fdfc8

Please sign in to comment.