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.
55 lines
832 B
55 lines
832 B
local colors = require("base46").get_theme_tb "base_30"
|
|
|
|
local M = {
|
|
NvimTreeWinSeparator = {
|
|
fg = colors.one_bg2,
|
|
bg = "NONE",
|
|
},
|
|
|
|
TelescopeResultsTitle = {
|
|
fg = colors.black,
|
|
bg = colors.blue,
|
|
},
|
|
}
|
|
|
|
-- for hl groups which need bg = "NONE" only!
|
|
local hl_groups = {
|
|
"NormalFloat",
|
|
"Normal",
|
|
"Folded",
|
|
"NvimTreeNormal",
|
|
"NvimTreeNormalNC",
|
|
"NvimTreeCursorLine",
|
|
"TelescopeNormal",
|
|
"TelescopePrompt",
|
|
"TelescopeResults",
|
|
"TelescopePromptNormal",
|
|
"TelescopePromptPrefix",
|
|
"CursorLine",
|
|
"Pmenu",
|
|
"CmpPmenu",
|
|
}
|
|
|
|
for _, groups in ipairs(hl_groups) do
|
|
M[groups] = {
|
|
bg = "NONE",
|
|
}
|
|
end
|
|
|
|
M.TelescopeBorder = {
|
|
fg = colors.grey,
|
|
bg = "NONE",
|
|
}
|
|
|
|
M.TelescopePromptBorder = {
|
|
fg = colors.grey,
|
|
bg = "NONE",
|
|
}
|
|
|
|
M.CmpDocBorder = {
|
|
bg = "none",
|
|
fg = colors.grey,
|
|
}
|
|
|
|
return M
|