Skip to content

Commit

Permalink
feat(palette): use darker background in hard/dark
Browse files Browse the repository at this point in the history
  • Loading branch information
sainnhe committed Dec 5, 2022
1 parent 9b1f8c7 commit c7d3ffe
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions autoload/everforest.vim
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ function! everforest#get_palette(background, colors_override) "{{{
if a:background ==# 'hard' "{{{
if &background ==# 'dark'
let palette1 = {
\ 'bg_dim': ['#21282c', '233'],
\ 'bg0': ['#2b3339', '235'],
\ 'bg1': ['#323c41', '236'],
\ 'bg2': ['#3a454a', '237'],
\ 'bg3': ['#445055', '238'],
\ 'bg4': ['#4c555b', '239'],
\ 'bg5': ['#53605c', '240'],
\ 'bg_visual': ['#503946', '52'],
\ 'bg_red': ['#4e3e43', '52'],
\ 'bg_green': ['#404d44', '22'],
\ 'bg_blue': ['#394f5a', '17'],
\ 'bg_yellow': ['#4a4940', '136'],
\ 'bg_dim': ['#1e2326', '233'],
\ 'bg0': ['#272e33', '235'],
\ 'bg1': ['#2e383c', '236'],
\ 'bg2': ['#374145', '237'],
\ 'bg3': ['#414b50', '238'],
\ 'bg4': ['#495156', '239'],
\ 'bg5': ['#4f5b58', '240'],
\ 'bg_visual': ['#4c3743', '52'],
\ 'bg_red': ['#493b40', '52'],
\ 'bg_green': ['#3c4841', '22'],
\ 'bg_blue': ['#384b55', '17'],
\ 'bg_yellow': ['#45443c', '136'],
\ }
else
let palette1 = {
Expand Down

0 comments on commit c7d3ffe

Please sign in to comment.