Can Chrome\'s built-in JavaScript console display colors?
I want errors in red, warnings in orange and console.log\'s in green. Is that possible?
console.log
I wrote template-colors-web https://github.com/icodeforlove/Console.js to allow us to do this a bit easier
console.log(c`red ${c`green ${'blue'.bold}.blue`}.green`.red);
The above would be extremely hard to do with the default console.log.
For a live interactive demo click here.