blob: 66ac15395666db9fe39ae341ebda8ea95730b3b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local M = {}
function M.highlight(palette)
return {
WhichKey = { fg = palette.light_gray },
WhichKeySeperator = { fg = palette.gray },
WhichKeyGroup = { fg = palette.red },
WhichKeyDesc = { fg = palette.light_gray },
WhichKeyFloat = { bg = palette.bg },
}
end
return M
|