Skip to content

Commit

Permalink
Update background color for gitgutter, todo and error group
Browse files Browse the repository at this point in the history
  • Loading branch information
huyvohcmc committed May 23, 2018
1 parent db0d608 commit 8781f1f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions colors/challenger_deep.vim
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ hi! link Debug Special

call s:h("Underlined", {"fg": s:norm , "gui": "underline", "cterm": "underline"})
call s:h("Ignore", {"fg": s:bg })
call s:h("Error", {"fg": s:actual_white, "bg": s:dark_red , "gui": "bold" , "cterm": "bold" })
call s:h("Todo", {"fg": s:actual_white, "bg": s:blue, "gui": "bold" , "cterm": "bold" })
call s:h("Error", {"fg": s:dark_red, "bg": s:bg_subtle , "gui": "bold" , "cterm": "bold" })
call s:h("Todo", {"fg": s:dark_yellow, "bg": s:bg_subtle, "gui": "bold" , "cterm": "bold" })

" ui chrome ====================================================================
" ordered according to `:help hitest.vim`
Expand Down Expand Up @@ -310,10 +310,10 @@ hi! link xmlTagName htmlTagName
hi link SignifySignAdd LineNr
hi link SignifySignDelete LineNr
hi link SignifySignChange LineNr
call s:h("GitGutterAdd",{"fg": s:green})
call s:h("GitGutterDelete",{"fg": s:red})
call s:h("GitGutterChange",{"fg": s:yellow})
call s:h("GitGutterChangeDelete",{"fg": s:red})
call s:h("GitGutterAdd",{"fg": s:green, "bg": s:bg_subtle})
call s:h("GitGutterDelete",{"fg": s:red, "bg": s:bg_subtle})
call s:h("GitGutterChange",{"fg": s:yellow, "bg": s:bg_subtle})
call s:h("GitGutterChangeDelete",{"fg": s:red, "bg": s:bg_subtle})


"nvim terminal colors
Expand Down

0 comments on commit 8781f1f

Please sign in to comment.