From 89e6f08420ac50f1db0e7acbbd027637eb803d3a Mon Sep 17 00:00:00 2001 From: Ankush Kalra Date: Fri, 3 Oct 2025 18:05:53 +0530 Subject: [PATCH] fix: missing color values in light theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some colors defined in the dark theme were not defined in the light theme. This caused it to look like colors weren’t being applied, when in fact the light theme was just missing the corresponding values. --- lua/vscode/colors.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/vscode/colors.lua b/lua/vscode/colors.lua index 4bd8324..870f386 100644 --- a/lua/vscode/colors.lua +++ b/lua/vscode/colors.lua @@ -139,7 +139,10 @@ colors.get_colors = function() vscGray = '#000000', vscViolet = '#000080', vscBlue = '#0000FF', + vscAccentBlue = '#4FC1FF', vscDarkBlue = '#007ACC', + vscMediumBlue = '#18a2fe', + vscDisabledBlue = '#729DB3', vscLightBlue = '#0451A5', vscGreen = '#008000', vscBlueGreen = '#16825D',