Skip to content

Commit f73aa19

Browse files
authored
feat: theme testing* config keys (#458)
1 parent c62e35f commit f73aa19

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

packages/catppuccin-vsc/src/theme/uiColors.ts

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,37 @@ export const getUiColors = (
121121
"debugConsole.sourceForeground": palette.rosewater,
122122
"debugConsoleInputIcon.foreground": palette.text,
123123

124+
// testing
125+
"testing.runAction": accent,
126+
"testing.iconErrored": palette.red,
127+
"testing.iconFailed": palette.red,
128+
"testing.iconPassed": palette.green,
129+
"testing.iconQueued": palette.blue,
130+
"testing.iconUnset": palette.text,
131+
"testing.iconSkipped": palette.subtext0,
132+
"testing.iconErrored.retired": palette.red,
133+
"testing.iconFailed.retired": palette.red,
134+
"testing.iconPassed.retired": palette.green,
135+
"testing.iconQueued.retired": palette.blue,
136+
"testing.iconUnset.retired": palette.text,
137+
"testing.iconSkipped.retired": palette.subtext0,
138+
"testing.peekBorder": accent,
139+
"testing.peekHeaderBackground": palette.surface2,
140+
"testing.message.error.lineBackground": opacity(palette.red, 0.15),
141+
"testing.message.info.decorationForeground": opacity(palette.green, 0.8),
142+
"testing.message.info.lineBackground": opacity(palette.green, 0.15),
143+
"testing.messagePeekBorder": accent,
144+
"testing.messagePeekHeaderBackground": palette.surface2,
145+
"testing.coveredBackground": opacity(palette.green, 0.3),
146+
"testing.coveredBorder": transparent,
147+
"testing.coveredGutterBackground": opacity(palette.green, 0.3),
148+
"testing.uncoveredBranchBackground": opacity(palette.red, 0.2),
149+
"testing.uncoveredBackground": opacity(palette.red, 0.2),
150+
"testing.uncoveredBorder": transparent,
151+
"testing.uncoveredGutterBackground": opacity(palette.red, 0.25),
152+
"testing.coverCountBadgeBackground": transparent,
153+
"testing.coverCountBadgeForeground": accent,
154+
124155
"diffEditor.border": palette.surface2,
125156
"diffEditor.insertedTextBackground": opacity(palette.green, 0.2),
126157
"diffEditor.removedTextBackground": opacity(palette.red, 0.2),

0 commit comments

Comments
 (0)