diff --git a/lua/catppuccin/core/integrations/treesitter.lua b/lua/catppuccin/core/integrations/treesitter.lua index 41d31e0..5e21dde 100644 --- a/lua/catppuccin/core/integrations/treesitter.lua +++ b/lua/catppuccin/core/integrations/treesitter.lua @@ -33,7 +33,7 @@ function M.get(cp) -- builtin TSConstBuiltin = { fg = cp.teal, style = cnf.styles.keywords }, -- For constant that are built in the language: nil in Lua. TSFuncBuiltin = { fg = cp.peach, style = "italic" }, -- For builtin functions: table.insert in Lua. - TSTypeBuiltin = { fg = cp.maroon, style = "italic" }, -- For builtin types. + TSTypeBuiltin = { fg = cp.yellow, style = "italic" }, -- For builtin types. TSVariableBuiltin = { fg = cp.teal, style = "italic" }, -- Variable names that are defined by the languages, like this or self. TSFunction = { fg = cp.blue, style = cnf.styles.functions }, -- For function (calls and definitions). diff --git a/lua/catppuccin/core/mapper.lua b/lua/catppuccin/core/mapper.lua index 38b80a5..df87efb 100644 --- a/lua/catppuccin/core/mapper.lua +++ b/lua/catppuccin/core/mapper.lua @@ -95,7 +95,7 @@ local function get_base() Conditional = { fg = cp.red }, -- if, then, else, endif, switch, etcp. Repeat = { fg = cp.red }, -- for, do, while, etcp. Label = { fg = cp.peach }, -- case, default, etcp. - Operator = { fg = cp.flamingo }, -- "sizeof", "+", "*", etcp. + Operator = { fg = cp.sky }, -- "sizeof", "+", "*", etcp. Keyword = { fg = cp.pink, style = cnf.styles.keywords }, -- any other keyword -- Exception = { }, -- try, catch, throw