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