class ConsoleColorsClass {
static void Main(string[] args) {
foreach(ConsoleColor color in Enum.GetValues(typeof(ConsoleColor))) {
Console.ForegroundColor = color;
Console.WriteLine("Foreground color set to {color}");
Console.WriteLine("======================================");
Console.ForegroundColor = ConsoleColor.White;