mirror of https://github.com/gabehf/base46.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.1 KiB
78 lines
1.1 KiB
local colors = require("base46").get_theme_tb "base_30"
|
|
|
|
return {
|
|
|
|
TblineFill = {
|
|
bg = colors.black2,
|
|
},
|
|
|
|
TbLineBufOn = {
|
|
fg = colors.white,
|
|
bg = colors.black,
|
|
},
|
|
|
|
TbLineBufOff = {
|
|
fg = colors.light_grey,
|
|
bg = colors.black2,
|
|
},
|
|
|
|
TbLineBufOnModified = {
|
|
fg = colors.green,
|
|
bg = colors.black,
|
|
},
|
|
|
|
TbBufLineBufOffModified = {
|
|
fg = colors.red,
|
|
bg = colors.black2,
|
|
},
|
|
|
|
TbLineBufOnClose = {
|
|
fg = colors.red,
|
|
bg = colors.black,
|
|
},
|
|
|
|
TbLineBufOffClose = {
|
|
fg = colors.light_grey,
|
|
bg = colors.black2,
|
|
},
|
|
|
|
TblineTabNewBtn = {
|
|
fg = colors.white,
|
|
bg = colors.one_bg3,
|
|
bold = true,
|
|
},
|
|
|
|
TbLineTabOn = {
|
|
fg = colors.black,
|
|
bg = colors.nord_blue,
|
|
bold = true,
|
|
},
|
|
|
|
TbLineTabOff = {
|
|
fg = colors.white,
|
|
bg = colors.one_bg2,
|
|
},
|
|
|
|
TbLineTabCloseBtn = {
|
|
fg = colors.black,
|
|
bg = colors.nord_blue,
|
|
},
|
|
|
|
TBTabTitle = {
|
|
fg = colors.black,
|
|
bg = colors.white,
|
|
},
|
|
|
|
TbLineThemeToggleBtn = {
|
|
bold = true,
|
|
fg = colors.white,
|
|
bg = colors.one_bg3,
|
|
},
|
|
|
|
TbLineCloseAllBufsBtn = {
|
|
bold = true,
|
|
bg = colors.red,
|
|
fg = colors.black,
|
|
},
|
|
}
|