diff --git a/lua/catppuccino/color_schemes/catppuccino.lua b/lua/catppuccino/color_schemes/catppuccino.lua index 16996b0..e17fb6b 100644 --- a/lua/catppuccino/color_schemes/catppuccino.lua +++ b/lua/catppuccino/color_schemes/catppuccino.lua @@ -4,12 +4,13 @@ local opts = require("catppuccino.config").options local colors = { none = "NONE", - bg = "#0e171c", - fg = "#CDCECF", + bg = "#0e171c", -- nvim bg + fg = "#fef6e3", -- fg color (text) fg_gutter = "#3b4261", black = "#393b44", + gray = "#2a2e36", red = "#c94f6d", - green = "#81B29A", + green = "#97c374", yellow = "#dbc074", blue = "#719cd6", magenta = "#9D79D6", diff --git a/lua/catppuccino/core/mapper.lua b/lua/catppuccino/core/mapper.lua index d93f170..49fda41 100644 --- a/lua/catppuccino/core/mapper.lua +++ b/lua/catppuccino/core/mapper.lua @@ -235,6 +235,8 @@ function M.apply() -- Illuminate illuminatedWord = {bg = t.fg_gutter}, illuminatedCurWord = {bg = t.fg_gutter}, + -- IndentBlankline + IndentBlanklineChar = {fg = t.gray}, -- diff diffAdded = {fg = t.git.add}, diffRemoved = {fg = t.git.delete},