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/catppuccino/core/integrations/which_key.lua

16 lines
374 B
Lua

local M = {}
function M.get(cp)
return {
WhichKey = { fg = cp.katppuccino2 },
WhichKeyGroup = { fg = cp.katppuccino9 },
WhichKeyDesc = { fg = cp.katppuccino4 },
WhichKeySeperator = { fg = cp.catppuccino12 },
WhichKeySeparator = { fg = cp.catppuccino12 },
WhichKeyFloat = { bg = cp.catppuccino14 },
WhichKeyValue = { fg = cp.catppuccino12 },
}
end
return M