From 092afe14185833cfa7015ebd873c1e64be91a4f1 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Wed, 18 Aug 2021 10:42:15 -0500 Subject: [PATCH] dev: changed color red --- lua/catppuccino/color_schemes/catppuccino.lua | 5 ++--- lua/catppuccino/core/mapper.lua | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lua/catppuccino/color_schemes/catppuccino.lua b/lua/catppuccino/color_schemes/catppuccino.lua index 0ebc408..0027fc9 100644 --- a/lua/catppuccino/color_schemes/catppuccino.lua +++ b/lua/catppuccino/color_schemes/catppuccino.lua @@ -1,14 +1,13 @@ local util = require("catppuccino.utils.util") local opts = require("catppuccino.config").options - local colors = { none = "NONE", bg = "#0e171c", -- nvim bg fg = "#abb2bf", -- fg color (text) fg_gutter = "#3b4261", black = "#393b44", - gray = "#2a2e36", + gray = "#2a2e36", red = "#c94f6d", green = "#97c374", yellow = "#dbc074", @@ -19,7 +18,7 @@ local colors = { orange = "#F4A261", pink = "#D67AD2", black_br = "#7f8c98", - red_br = "#D6616B", + red_br = "#e06c75", green_br = "#58cd8b", yellow_br = "#FFE37E", blue_br = "#84CEE4", diff --git a/lua/catppuccino/core/mapper.lua b/lua/catppuccino/core/mapper.lua index 9a6c49d..3cbfc64 100644 --- a/lua/catppuccino/core/mapper.lua +++ b/lua/catppuccino/core/mapper.lua @@ -201,7 +201,7 @@ function M.apply() TSOperator = {fg = t.fg_alt}, -- For any operator: `+`, but also `->` and `*` in t. TSParameter = {fg = t.orange_br}, -- For parameters of a function. -- TSParameterReference= { }; -- For references to parameters of a function. - TSProperty = {fg = t.green}, -- Same as `TSField`. + TSProperty = {fg = t.red_bg}, -- Same as `TSField`. tomlTSProperty = {fg = t.blue}, -- Differentiates between string and properties TSPunctDelimiter = {fg = util.string_to_color(t, "", t.fg_alt)}, -- For delimiters ie: `.` TSPunctBracket = {fg = t.fg_alt}, -- For brackets and parens.