Skip to content

Commit 3bdf11d

Browse files
committed
fix: missing color values in light theme
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.
1 parent 57cec15 commit 3bdf11d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lua/vscode/colors.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,10 @@ colors.get_colors = function()
139139
vscGray = '#000000',
140140
vscViolet = '#000080',
141141
vscBlue = '#0000FF',
142+
vscAccentBlue = '#4FC1FF',
142143
vscDarkBlue = '#007ACC',
144+
vscMediumBlue = '#18a2fe',
145+
vscDisabledBlue = '#729DB3',
143146
vscLightBlue = '#0451A5',
144147
vscGreen = '#008000',
145148
vscBlueGreen = '#16825D',

0 commit comments

Comments
 (0)