mirror of
https://github.com/maxmx03/solarized.nvim.git
synced 2026-09-10 07:26:26 -04:00
18 lines
671 B
Lua
18 lines
671 B
Lua
return function(c, config)
|
|
local utils = require('solarized.utils')
|
|
local set_hl = utils.set_hl
|
|
|
|
set_hl('WhichKey', { fg = c.base0 }) -- the key
|
|
set_hl(
|
|
'WhichKeyNormal',
|
|
{ fg = c.base0, bg = c.base02 },
|
|
{ transparent = config.transparent }
|
|
)
|
|
set_hl('WhichKeyGroup', { fg = c.blue }) -- a group
|
|
set_hl('WhichKeySeparator', { fg = c.magenta }) -- the separator between the key and its label
|
|
set_hl('WhichKeyDesc', { fg = c.base2 }) -- the label of the key
|
|
-- set_hl('WhichKeyFloat') -- Normal in the popup window
|
|
-- set_hl('WhichKeyBorder', { link = 'WinSeparator' })
|
|
-- set_hl('WhichKeyValue') -- used by plugins that provide values
|
|
end
|