4 writes to Bright
Aspire.Dashboard (2)
ConsoleLogs\AnsiParser.cs (2)
243
newState.
Bright
= false;
251
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)
ConsoleLogs\AnsiParser.cs (8)
519
ConsoleColor.Black => state.
Bright
? "ansi-fg-brightblack" : "ansi-fg-black",
520
ConsoleColor.Blue => state.
Bright
? "ansi-fg-brightblue" : "ansi-fg-blue",
521
ConsoleColor.Cyan => state.
Bright
? "ansi-fg-brightcyan" : "ansi-fg-cyan",
522
ConsoleColor.Green => state.
Bright
? "ansi-fg-brightgreen" : "ansi-fg-green",
523
ConsoleColor.Magenta => state.
Bright
? "ansi-fg-brightmagenta" : "ansi-fg-magenta",
524
ConsoleColor.Red => state.
Bright
? "ansi-fg-brightred" : "ansi-fg-red",
525
ConsoleColor.White => state.
Bright
? "ansi-fg-brightwhite" : "ansi-fg-white",
526
ConsoleColor.Yellow => state.
Bright
? "ansi-fg-brightyellow" : "ansi-fg-yellow",