--[[ Copyright (C) 2024 Kyren223 This file is licensed under the GPL-3.0-or-later license, see https://fsf.org/licenses/gpl-3.0 --]] local M = {} ---@param c Colors function M.get(c) return { -- CmpItemAbbr = { fg = c.normal }, -- CmpDocumentationBorder = { fg = c.border }, -- CmpItemAbbrMatch = { fg = c.normal, bold = true }, -- CmpItemAbbrMatchFuzzy = { fg = c.normal, bold = true, underline = true }, -- CmpItemAbbrDeprecated = { fg = c.normal, bold = true }, -- CmpItemKindVariable = { fg = c.var_name, bold = true }, -- CmpItemKindInterface = { fg = c.type_name, bold = true }, -- CmpItemKindText = { fg = c.normal, bold = true }, -- CmpItemKindFunction = { fg = c.func_name, bold = true }, -- CmpItemKindMethod = { fg = c.func_name, bold = true }, -- CmpItemKindKeyword = { fg = c.built_in, bold = true }, -- CmpItemKindProperty = { fg = c.key, bold = true }, -- CmpItemKindUnit = { fg = c.yellow, bold = true }, -- CmpItemKindCopilt = { fg = c.green, bold = true }, -- CmpBorderedWindow_FloatBorder = { fg = c.border }, } end return M