(node.js) if i try to color an object on console.log like so
console.log('\x1b[32m', {a:1,b:2,c:3}, '\x1b[0m');
it looks like this:
how do I make it so the text actually all gets colored?
I know i could stringify the arguments manually then join them to a single string and color them, but that ruins the nice multiline formatting console.log usually employs: