diff --git a/packages/catppuccin-vsc/src/theme/uiColors.ts b/packages/catppuccin-vsc/src/theme/uiColors.ts index 50753993..154fc04f 100644 --- a/packages/catppuccin-vsc/src/theme/uiColors.ts +++ b/packages/catppuccin-vsc/src/theme/uiColors.ts @@ -121,6 +121,37 @@ export const getUiColors = ( "debugConsole.sourceForeground": palette.rosewater, "debugConsoleInputIcon.foreground": palette.text, + // testing + "testing.runAction": accent, + "testing.iconErrored": palette.red, + "testing.iconFailed": palette.red, + "testing.iconPassed": palette.green, + "testing.iconQueued": palette.blue, + "testing.iconUnset": palette.text, + "testing.iconSkipped": palette.subtext0, + "testing.iconErrored.retired": palette.red, + "testing.iconFailed.retired": palette.red, + "testing.iconPassed.retired": palette.green, + "testing.iconQueued.retired": palette.blue, + "testing.iconUnset.retired": palette.text, + "testing.iconSkipped.retired": palette.subtext0, + "testing.peekBorder": accent, + "testing.peekHeaderBackground": palette.surface2, + "testing.message.error.lineBackground": opacity(palette.red, 0.15), + "testing.message.info.decorationForeground": opacity(palette.green, 0.8), + "testing.message.info.lineBackground": opacity(palette.green, 0.15), + "testing.messagePeekBorder": accent, + "testing.messagePeekHeaderBackground": palette.surface2, + "testing.coveredBackground": opacity(palette.green, 0.3), + "testing.coveredBorder": transparent, + "testing.coveredGutterBackground": opacity(palette.green, 0.3), + "testing.uncoveredBranchBackground": opacity(palette.red, 0.2), + "testing.uncoveredBackground": opacity(palette.red, 0.2), + "testing.uncoveredBorder": transparent, + "testing.uncoveredGutterBackground": opacity(palette.red, 0.25), + "testing.coverCountBadgeBackground": transparent, + "testing.coverCountBadgeForeground": accent, + "diffEditor.border": palette.surface2, "diffEditor.insertedTextBackground": opacity(palette.green, 0.2), "diffEditor.removedTextBackground": opacity(palette.red, 0.2),