You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim/lua/catppuccin/core/integrations/which_key.lua

16 lines
367 B
Lua

local M = {}
function M.get(cp)
return {
WhichKey = { fg = cp.catppuccin2 },
WhichKeyGroup = { fg = cp.catppuccin9 },
WhichKeyDesc = { fg = cp.catppuccin4 },
WhichKeySeperator = { fg = cp.catppuccin11 },
WhichKeySeparator = { fg = cp.catppuccin11 },
WhichKeyFloat = { bg = cp.catppuccin13 },
WhichKeyValue = { fg = cp.catppuccin11 },
}
end
return M