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