mirror of
https://github.com/gabehf/base46.git
synced 2026-03-15 18:25:56 -07:00
rename some tbline hlgroups
This commit is contained in:
parent
eafffd4c1f
commit
def1981785
1 changed files with 28 additions and 31 deletions
|
|
@ -4,74 +4,71 @@ local config = require("nvconfig").ui
|
||||||
|
|
||||||
local highlights = {
|
local highlights = {
|
||||||
|
|
||||||
TblineFill = {
|
TbFill = {
|
||||||
bg = colors.black2,
|
bg = colors.black2,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineBufOn = {
|
TbBufOn = {
|
||||||
fg = colors.white,
|
fg = colors.white,
|
||||||
bg = colors.black,
|
bg = colors.black,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineBufOff = {
|
TbBufOff = {
|
||||||
fg = colors.light_grey,
|
fg = colors.light_grey,
|
||||||
bg = colors.black2,
|
bg = colors.black2,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineBufOnModified = {
|
TbBufOnModified = {
|
||||||
fg = colors.green,
|
fg = colors.green,
|
||||||
bg = colors.black,
|
bg = colors.black,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineBufOffModified = {
|
TbBufOffModified = {
|
||||||
fg = colors.red,
|
fg = colors.red,
|
||||||
bg = colors.black2,
|
bg = colors.black2,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineBufOnClose = {
|
TbBufOnClose = {
|
||||||
fg = colors.red,
|
fg = colors.red,
|
||||||
bg = colors.black,
|
bg = colors.black,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineBufOffClose = {
|
TbBufOffClose = {
|
||||||
fg = colors.light_grey,
|
fg = colors.light_grey,
|
||||||
bg = colors.black2,
|
bg = colors.black2,
|
||||||
},
|
},
|
||||||
|
|
||||||
TblineTabNewBtn = {
|
TbTabNewBtn = {
|
||||||
fg = colors.white,
|
|
||||||
bg = colors.one_bg3,
|
|
||||||
bold = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
TbLineTabOn = {
|
|
||||||
fg = colors.black,
|
|
||||||
bg = colors.nord_blue,
|
|
||||||
bold = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
TbLineTabOff = {
|
|
||||||
fg = colors.white,
|
fg = colors.white,
|
||||||
bg = colors.one_bg2,
|
bg = colors.one_bg2,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineTabCloseBtn = {
|
TbTabOn = {
|
||||||
|
fg = colors.red,
|
||||||
|
},
|
||||||
|
|
||||||
|
TbTabOff = {
|
||||||
|
fg = colors.white,
|
||||||
|
bg = colors.black2,
|
||||||
|
},
|
||||||
|
|
||||||
|
TbTabCloseBtn = {
|
||||||
fg = colors.black,
|
fg = colors.black,
|
||||||
bg = colors.nord_blue,
|
bg = colors.nord_blue,
|
||||||
},
|
},
|
||||||
|
|
||||||
TBTabTitle = {
|
TBTabTitle = {
|
||||||
fg = colors.black,
|
fg = colors.black,
|
||||||
bg = colors.white,
|
bg = colors.blue,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineThemeToggleBtn = {
|
TbThemeToggleBtn = {
|
||||||
bold = true,
|
bold = true,
|
||||||
fg = colors.white,
|
fg = colors.white,
|
||||||
bg = colors.one_bg3,
|
bg = colors.one_bg3,
|
||||||
},
|
},
|
||||||
|
|
||||||
TbLineCloseAllBufsBtn = {
|
TbCloseAllBufsBtn = {
|
||||||
bold = true,
|
bold = true,
|
||||||
bg = colors.red,
|
bg = colors.red,
|
||||||
fg = colors.black,
|
fg = colors.black,
|
||||||
|
|
@ -79,13 +76,13 @@ local highlights = {
|
||||||
}
|
}
|
||||||
|
|
||||||
local hlgroups_glassy = {
|
local hlgroups_glassy = {
|
||||||
"TblineFill",
|
"TbFill",
|
||||||
"TbLineBufOn",
|
"TbBufOn",
|
||||||
"TbLineBufOff",
|
"TbBufOff",
|
||||||
"TbLineBufOnClose",
|
"TbBufOnClose",
|
||||||
"TbLineBufOffClose",
|
"TbBufOffClose",
|
||||||
"TbLineBufOnModified",
|
"TbBufOnModified",
|
||||||
"TbLineBufOffModified",
|
"TbBufOffModified",
|
||||||
}
|
}
|
||||||
|
|
||||||
if config.transparency then
|
if config.transparency then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue