diff --git a/src/utils/fail-msg-with-badge.mts b/src/utils/fail-msg-with-badge.mts index 7d6879d6b..fab840f3a 100644 --- a/src/utils/fail-msg-with-badge.mts +++ b/src/utils/fail-msg-with-badge.mts @@ -5,7 +5,7 @@ export function failMsgWithBadge( message: string | undefined, ): string { const prefix = colors.bgRedBright( - colors.bold(colors.red(` ${badge}${message ? ': ' : ''}`)), + colors.bold(colors.white(` ${badge}${message ? ': ' : ''}`)), ) const postfix = message ? ` ${colors.bold(message)}` : '' return `${prefix}${postfix}`