From 10f14123951fa73dbf033c10736c0776d1164c40 Mon Sep 17 00:00:00 2001 From: Carlos Gutierrez Date: Wed, 4 Feb 2026 00:20:21 -0500 Subject: [PATCH] feat: Update color scheme to enhance visibility and aesthetics --- lua/cargdev-cyberpunk/colors.lua | 2 +- lua/cargdev-cyberpunk/highlights.lua | 2 +- vscode/themes/cargdev-cyberpunk-color-theme.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/cargdev-cyberpunk/colors.lua b/lua/cargdev-cyberpunk/colors.lua index 93d03ed..4dcd247 100644 --- a/lua/cargdev-cyberpunk/colors.lua +++ b/lua/cargdev-cyberpunk/colors.lua @@ -28,7 +28,7 @@ M.palette = { syntax = { keyword = "#FF79C6", ["function"] = "#50FA7B", - string = "#FFFFFF", + string = "#5AF78E", number = "#FFB86C", comment = "#666666", type = "#BD93F9", diff --git a/lua/cargdev-cyberpunk/highlights.lua b/lua/cargdev-cyberpunk/highlights.lua index aef50d9..0fc3e65 100644 --- a/lua/cargdev-cyberpunk/highlights.lua +++ b/lua/cargdev-cyberpunk/highlights.lua @@ -290,7 +290,7 @@ function M.get_groups(colors, config) DiagnosticVirtualTextHint = { fg = c.special.hint, italic = true }, DiagnosticVirtualTextOk = { fg = c.special.success, italic = true }, - DiagnosticUnderlineError = { sp = c.special.error, undercurl = true }, + DiagnosticUnderlineError = { fg = c.special.error, sp = c.special.error, undercurl = true }, DiagnosticUnderlineWarn = { sp = c.special.warning, undercurl = true }, DiagnosticUnderlineInfo = { sp = c.special.info, undercurl = true }, DiagnosticUnderlineHint = { sp = c.special.hint, undercurl = true }, diff --git a/vscode/themes/cargdev-cyberpunk-color-theme.json b/vscode/themes/cargdev-cyberpunk-color-theme.json index 4c11c15..ef30567 100644 --- a/vscode/themes/cargdev-cyberpunk-color-theme.json +++ b/vscode/themes/cargdev-cyberpunk-color-theme.json @@ -226,7 +226,7 @@ "punctuation.definition.string" ], "settings": { - "foreground": "#FFFFFF" + "foreground": "#5AF78E" } }, { @@ -780,7 +780,7 @@ "foreground": "#666666", "fontStyle": "italic" }, - "string": "#FFFFFF", + "string": "#5AF78E", "number": "#FFB86C", "regexp": "#FF5555", "operator": "#FF79C6",