summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/groups/leap.lua
blob: 009e9bb1ae0f46ff7124454f70ebbd984ba4735d (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