diff --git a/colors/onedark.vim b/colors/onedark.vim index 67a0457..f81c4dd 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -172,9 +172,9 @@ call s:h("SpellLocal", { "fg": s:dark_yellow }) " Word that is recognized by the call s:h("SpellRare", { "fg": s:dark_yellow }) " Word that is recognized by the spellchecker as one that is hardly ever used. spell This will be combined with the highlighting used otherwise. call s:h("StatusLine", { "fg": s:white, "bg": s:cursor_grey }) " status line of current window call s:h("StatusLineNC", { "fg": s:comment_grey }) " status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window. -call s:h("TabLine", {}) " tab pages line, not active tab page label +call s:h("TabLine", { "fg": s:comment_grey }) " tab pages line, not active tab page label call s:h("TabLineFill", {}) " tab pages line, where there are no labels -call s:h("TabLineSel", {}) " tab pages line, active tab page label +call s:h("TabLineSel", { "fg": s:white }) " tab pages line, active tab page label call s:h("Title", { "fg": s:green }) " titles for output from ":set all", ":autocmd" etc. call s:h("Visual", { "fg": s:visual_black, "bg": s:visual_grey }) " Visual mode selection call s:h("VisualNOS", { "bg": s:visual_grey }) " Visual mode selection when vim is "Not Owning the Selection". Only X11 Gui's gui-x11 and xterm-clipboard supports this.