diff --git a/lua/catppuccino/color_schemes/catppuccino.lua b/lua/catppuccino/color_schemes/catppuccino.lua index 0027fc9..68f43f7 100644 --- a/lua/catppuccino/color_schemes/catppuccino.lua +++ b/lua/catppuccino/color_schemes/catppuccino.lua @@ -11,7 +11,7 @@ local colors = { red = "#c94f6d", green = "#97c374", yellow = "#dbc074", - blue = "#719cd6", + blue = "#56b6c2", magenta = "#c678dd", cyan = "#63cdcf", white = "#dfdfe0", diff --git a/lua/catppuccino/core/mapper.lua b/lua/catppuccino/core/mapper.lua index 3cbfc64..3f3c4fb 100644 --- a/lua/catppuccino/core/mapper.lua +++ b/lua/catppuccino/core/mapper.lua @@ -81,7 +81,7 @@ function M.apply() Float = {fg = t.orange_br}, -- a floating point constant: 2.3e10 Boolean = {fg = t.orange_br}, -- a boolean constant: TRUE, false Identifier = {fg = t.cyan, style = opts.styles.variables}, -- (preferred) any variable name - Function = {fg = t.red, style = opts.styles.fuctions}, -- function name (also: methods for classes) + Function = {fg = t.blue, style = opts.styles.fuctions}, -- function name (also: methods for classes) Statement = {fg = t.magenta_br}, -- (preferred) any statement Conditional = {fg = t.magenta_br}, -- if, then, else, endif, switch, ett. Repeat = {fg = t.magenta_br}, -- for, do, while, ett.