For my project I need to be able to print to the NodeJS console in RGB. In most browser I can use console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
but that doesn't work in NodeJS.
I have looked at the colors module but that doesn't seem to support custom colors.
It is possible to achieve this?