all repos — desert-witch.nvim @ 4d680d0c526b9e8486be9bc17169ab747f3a62f3

An earthy, mystical color palette for neovim

fix: Correct Bg25Text fg color
trickyni trickyniv56@gmail.com
Thu, 19 Mar 2026 08:09:54 +0200
commit

4d680d0c526b9e8486be9bc17169ab747f3a62f3

parent

c0d93d50dd687ed7b350f6fb38be016d326d8d6d

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M lua/desert-witch/init.lualua/desert-witch/init.lua

@@ -3,8 +3,8 @@ --stylua: ignore start

local bg = "#3b3228" --background local bg95 = "#43392d" --barely use! near-invisible subtle highlighting local bg75 = "#4c4134" --comments - local bg25 = "#6b6055" local altbg = "#5d4f40" + local bg25 = "#6b6055" local sand = "#c1a387" local fg = "#afd2e9" local cyan = "#3eccbe"

@@ -418,7 +418,7 @@ RenderMarkdownError = { link = "DiagnosticError" },

BgText = { fg = bg }, Bg75Text = { fg = bg75 }, AltbgText = { fg = altbg }, - Bg25Text = { fg = bg75 }, + Bg25Text = { fg = bg25 }, SandText = { fg = sand }, CyanText = { fg = cyan }, ScarletText = { fg = scarlet },