4 writes to Bright
Aspire.Dashboard (2)
ConsoleLogs\AnsiParser.cs (2)
174newState.Bright = false; 182newState.Bright = true;
Aspire.Dashboard.Tests (2)
ConsoleLogsTests\AnsiParserTests.cs (2)
198var expectedResidualState = new AnsiParser.ParserState() { Bright = true, BackgroundColor = ConsoleColor.Green }; 210var expectedResidualState = new AnsiParser.ParserState() { Bright = true, ForegroundColor = ConsoleColor.Green };
8 references to Bright
Aspire.Dashboard (8)
ConsoleLogs\AnsiParser.cs (8)
400ConsoleColor.Black => state.Bright ? "ansi-fg-brightblack" : "ansi-fg-black", 401ConsoleColor.Blue => state.Bright ? "ansi-fg-brightblue" : "ansi-fg-blue", 402ConsoleColor.Cyan => state.Bright ? "ansi-fg-brightcyan" : "ansi-fg-cyan", 403ConsoleColor.Green => state.Bright ? "ansi-fg-brightgreen" : "ansi-fg-green", 404ConsoleColor.Magenta => state.Bright ? "ansi-fg-brightmagenta" : "ansi-fg-magenta", 405ConsoleColor.Red => state.Bright ? "ansi-fg-brightred" : "ansi-fg-red", 406ConsoleColor.White => state.Bright ? "ansi-fg-brightwhite" : "ansi-fg-white", 407ConsoleColor.Yellow => state.Bright ? "ansi-fg-brightyellow" : "ansi-fg-yellow",