Skip to content

Commit

Permalink
Merge pull request challenger-deep-theme#12 from huyvohcmc/request/ch…
Browse files Browse the repository at this point in the history
…ange-cursorline-number-color

Change CursorLineNr color
  • Loading branch information
MaxSt authored May 23, 2018
2 parents 8ddf697 + 8781f1f commit 17f8eeb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 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 All @@ -164,7 +164,7 @@ call s:h("Search", {"bg": s:bg_dark})
call s:h("MoreMsg", {"fg": s:medium_gray, "gui": "bold", "cterm": "bold"})
hi! link ModeMsg MoreMsg
call s:h("LineNr", {"fg": s:dark_asphalt, "bg": s:bg_subtle})
call s:h("CursorLineNr", {"bg": s:blue, "fg": s:bg_subtle})
call s:h("CursorLineNr", {"bg": s:bg_subtle, "fg": s:blue, "gui": "bold"})
call s:h("Question", {"fg": s:red})
call s:h("StatusLine", {"bg": s:bg_dark})
call s:h("Conceal", {"fg": s:norm})
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 17f8eeb

Please sign in to comment.