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