mirror of https://github.com/sgoudham/nvim.git
16 lines
374 B
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.katppuccino11 },
|
|
WhichKeySeparator = { fg = cp.katppuccino11 },
|
|
WhichKeyFloat = { bg = cp.katppuccino13 },
|
|
WhichKeyValue = { fg = cp.katppuccino11 },
|
|
}
|
|
end
|
|
|
|
return M
|