forked from folke/tokyonight.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhich-key.lua
More file actions
30 lines (27 loc) · 972 Bytes
/
which-key.lua
File metadata and controls
30 lines (27 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
local M = {}
M.url = "https://github.com/folke/which-key.nvim"
---@type oq.HighlightsFn
function M.get(c, opts)
-- stylua: ignore
return {
WhichKey = { fg = c.fg_strong },
WhichKeyBorder = { fg = c.border, bg = c.bg_float },
WhichKeyDesc = { fg = c.fg },
WhichKeyGroup = { fg = c.fg_muted, italic = true },
WhichKeyIcon = { fg = c.accent2 },
WhichKeylconAzure = { fg = c.azure },
WhichKeylconBlue = { fg = c.iris },
WhichKeylconCyan = { fg = c.cyan },
WhichKeylconGreen = { fg = c.moss },
WhichKeylconGrey = { fg = c.stone },
WhichKeylconOrange = { fg = c.coral },
WhichKeylconPurple = { fg = c.mauve },
WhichKeylconRed = { fg = c.rose },
WhichKeylconYellow = { fg = c.amber },
WhichKeyNormal = { bg = c.bg_float },
WhichKeySeparator = { fg = c.comment },
WhichKeyTitle = { fg = c.fg_strong, bg = c.bg_float },
WhichKeyValue = { fg = c.fg },
}
end
return M