Exemplo n.º 1
0
 public static ColorToken OnWhite(this ColorToken token) => token.On(ConsoleColor.White);
Exemplo n.º 2
0
 public static ColorToken OnYellow(this ColorToken token) => token.On(ConsoleColor.Yellow);
Exemplo n.º 3
0
 public static ColorToken OnMagenta(this ColorToken token) => token.On(ConsoleColor.Magenta);
Exemplo n.º 4
0
 public static ColorToken OnRed(this ColorToken token) => token.On(ConsoleColor.Red);
Exemplo n.º 5
0
 public static ColorToken OnGreen(this ColorToken token) => token.On(ConsoleColor.Green);
Exemplo n.º 6
0
 public static ColorToken OnDarkGray(this ColorToken token) => token.On(ConsoleColor.DarkGray);
Exemplo n.º 7
0
 public static ColorToken OnDarkCyan(this ColorToken token) => token.On(ConsoleColor.DarkCyan);
Exemplo n.º 8
0
 public static ColorToken OnDarkBlue(this ColorToken token) => token.On(ConsoleColor.DarkBlue);
Exemplo n.º 9
0
 public static ColorToken OnBlack(this ColorToken token) => token.On(ConsoleColor.Black);