Answers for "how to add colour to the console"

17

how to color console.log

console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
Posted by: Guest on April-09-2020
1

c# change colour of console

Console.BackgroundColor = ConsoleColor.Green;
            Console.ForegroundColor = ConsoleColor.DarkGreen;
            Console.Clear();
            //green on green
            Console.WriteLine("yo");
            Console.ReadLine();
Posted by: Guest on March-06-2020

Code answers related to "how to add colour to the console"

Code answers related to "Javascript"

Browse Popular Code Answers by Language