How to change the Foreground Color of Text in Javascript Console?
javascript console change color
console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
Below you can find colors reference of text to command when running node.js application
console.log('\x1b[36m%s\x1b[0m', 'I am cyan'); //cyan
console.log('\x1b[33m%s\x1b[0m', stringToMakeYellow); //yellow