4 writes to Bright
Aspire.Dashboard (2)
src\Shared\ConsoleLogs\AnsiParser.cs (2)
249
newState.
Bright
= false;
257
newState.
Bright
= true;
Aspire.Dashboard.Tests (2)
ConsoleLogsTests\AnsiParserTests.cs (2)
229
var expectedResidualState = new AnsiParser.ParserState() {
Bright
= true, BackgroundColor = ConsoleColor.Green };
241
var expectedResidualState = new AnsiParser.ParserState() {
Bright
= true, ForegroundColor = ConsoleColor.Green };
8 references to Bright
Aspire.Dashboard (8)
src\Shared\ConsoleLogs\AnsiParser.cs (8)
525
ConsoleColor.Black => state.
Bright
? "ansi-fg-brightblack" : "ansi-fg-black",
526
ConsoleColor.Blue => state.
Bright
? "ansi-fg-brightblue" : "ansi-fg-blue",
527
ConsoleColor.Cyan => state.
Bright
? "ansi-fg-brightcyan" : "ansi-fg-cyan",
528
ConsoleColor.Green => state.
Bright
? "ansi-fg-brightgreen" : "ansi-fg-green",
529
ConsoleColor.Magenta => state.
Bright
? "ansi-fg-brightmagenta" : "ansi-fg-magenta",
530
ConsoleColor.Red => state.
Bright
? "ansi-fg-brightred" : "ansi-fg-red",
531
ConsoleColor.White => state.
Bright
? "ansi-fg-brightwhite" : "ansi-fg-white",
532
ConsoleColor.Yellow => state.
Bright
? "ansi-fg-brightyellow" : "ansi-fg-yellow",