Skip to content

Commit 00c9de8

Browse files
authored
Use dark colors (#49446)
2 parents f2c8ed6 + d1c8372 commit 00c9de8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Cli/dotnet/Commands/Test/Terminal/TerminalTestReporter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -553,9 +553,9 @@ private bool GetShowPassedTests()
553553

554554
TerminalColor color = outcome switch
555555
{
556-
TestOutcome.Error or TestOutcome.Fail or TestOutcome.Canceled or TestOutcome.Timeout => TerminalColor.Red,
557-
TestOutcome.Skipped => TerminalColor.Yellow,
558-
TestOutcome.Passed => TerminalColor.Green,
556+
TestOutcome.Error or TestOutcome.Fail or TestOutcome.Canceled or TestOutcome.Timeout => TerminalColor.DarkRed,
557+
TestOutcome.Skipped => TerminalColor.DarkYellow,
558+
TestOutcome.Passed => TerminalColor.DarkGreen,
559559
_ => throw new NotSupportedException(),
560560
};
561561
string outcomeText = outcome switch

0 commit comments

Comments
 (0)