summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/groups/whichkey.lua
blob: 6af4936c5833f3e2e08dd2c233ab2f8e1a2655a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local M = {}

function M.highlight(palette, opts)
  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