Skip to content

Commit

Permalink
Use Normal background for Conceal
Browse files Browse the repository at this point in the history
Differing Conceal background visually breaks vim-pandoc-syntax
otherwise. Explicitely specifying the Normal background used in the
dark/light versions fixes the problem.
  • Loading branch information
Julian Theis committed Feb 19, 2019
1 parent 921777a commit 55ab6c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion colors/flattened_dark.vim
Expand Up @@ -17,7 +17,7 @@ set background=dark
hi ColorColumn cterm=NONE ctermbg=0 guibg=#073642 gui=NONE
hi Comment cterm=NONE ctermfg=10 guifg=#586e75 gui=italic
hi ConId cterm=NONE ctermfg=3 guifg=#b58900 gui=NONE
hi Conceal cterm=NONE ctermfg=4 guifg=#268bd2 gui=NONE
hi Conceal cterm=NONE ctermfg=4 ctermbg=8 guifg=#268bd2 guibg=#002b36 gui=NONE
hi Constant cterm=NONE ctermfg=6 guifg=#2aa198 gui=NONE
hi Cursor cterm=NONE ctermfg=8 ctermbg=12 guifg=#002b36 guibg=#839496 gui=NONE
hi CursorColumn cterm=NONE ctermbg=0 guibg=#073642 gui=NONE
Expand Down
2 changes: 1 addition & 1 deletion colors/flattened_light.vim
Expand Up @@ -17,7 +17,7 @@ set background=light
hi ColorColumn cterm=NONE ctermbg=7 guibg=#eee8d5 gui=NONE
hi Comment cterm=NONE ctermfg=14 guifg=#93a1a1 gui=italic
hi ConId cterm=NONE ctermfg=3 guifg=#b58900 gui=NONE
hi Conceal cterm=NONE ctermfg=4 guifg=#268bd2 gui=NONE
hi Conceal cterm=NONE ctermfg=4 ctermbg=15 guifg=#268bd2 guibg=#fdf6e3 gui=NONE
hi Constant cterm=NONE ctermfg=6 guifg=#2aa198 gui=NONE
hi Cursor cterm=NONE ctermfg=15 ctermbg=11 guifg=#fdf6e3 guibg=#657b83 gui=NONE
hi CursorColumn cterm=NONE ctermbg=7 guibg=#eee8d5 gui=NONE
Expand Down

0 comments on commit 55ab6c5

Please sign in to comment.