Add TabLine styling

This commit is contained in:
Jake Bauer 2023-03-07 17:41:08 -05:00
parent 720b21cb94
commit 62219d96ea
2 changed files with 13 additions and 3 deletions

View File

@ -23,8 +23,8 @@ let s:accent = ['#6C6C6C', 242]
let s:cursorline = ['#DADADA', 253]
let s:comment = ['#585858', 240]
let s:faded = ['#D0D0D0', 252]
let s:menu = ['#BCBCBC', 250]
let s:menusel = ['#9E9E9E', 247]
let s:menu = ['#9E9E9E', 247]
let s:menusel = ['#BCBCBC', 250]
let s:default_fg = s:black
let s:default_bg = s:white
@ -81,6 +81,11 @@ call s:hi('ErrorMsg', s:red, s:default_bg)
call s:hi('StatusLine', s:black, s:faded)
call s:hi('StatusLineNC', s:black, s:faded)
" Tabs
call s:hi('TabLine', s:black, s:menusel)
call s:hi('TabLineSel', s:black, s:faded, s:bold)
call s:hi('TabLineFill', s:black, s:menu)
" Tildes at the bottom of a buffer, etc.
call s:hi('NonText', s:accent)
@ -104,7 +109,7 @@ call s:hi('helpNote')
" Popup menu.
call s:hi('Pmenu', s:black, s:menu)
call s:hi('PmenuSel', s:black, s:menusel)
call s:hi('PmenuSel', s:black, s:menusel, s:bold)
" Notes.
call s:hi('Todo', s:black, s:default_bg, s:bold)

View File

@ -79,6 +79,11 @@ call s:hi('ErrorMsg', s:red, s:default_bg)
call s:hi('StatusLine', s:white, s:faded)
call s:hi('StatusLineNC', s:white, s:faded)
" Tabs
call s:hi('TabLine', s:white, s:faded)
call s:hi('TabLineSel', s:white, s:accent, s:bold)
call s:hi('TabLineFill', s:white, s:black)
" Tildes at the bottom of a buffer, etc.
call s:hi('NonText', s:faded)