blob: d81da87f9c1384e1a797bb2704e88bae31b5660d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local M = {}
function M.highlight(palette)
return {
TelescopeNormal = { fg = palette.fg, bg = palette.bg },
TelescopeSelection = { fg = palette.fg, bg = palette.accent },
TelescopeMatching = { fg = palette.info_yellow, style = "bold" },
TelescopeBorder = { fg = palette.medium_gray, bg = palette.bg },
}
end
return M
|