blob: ae4b8808dc737dd8327d1f68e650fc1e6898e684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
local M = {}
function M.highlight(palette, opts)
return {
TelescopeNormal = {
fg = palette.fg,
bg = opts.transparent and palette.none or palette.bg,
},
TelescopeSelection = { fg = palette.fg, bg = palette.accent },
TelescopeMatching = { fg = palette.orange, bold = true },
TelescopeBorder = {
fg = palette.light_gray,
bg = opts.transparent and palette.none or palette.bg,
},
}
end
return M
|