blob: 5dfd394242a43245d6a0ad273bf4b973d9e0af0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local M = {}
function M.highlight(palette, opts)
return {
LeapMatch = { fg = palette.cyan, bold = true },
LeapLabelPrimary = { fg = palette.red, bold = true },
LeapLabelSecondary = { fg = palette.gray_blue },
LeapBackdrop = { fg = palette.gray },
}
end
return M
|