JSFiddle - React, Tailwind, and code Playground
JavaScript
(function () {
$consoleLog = console.log;
console.log = function ($message, $color) {
$consoleLog('%c' + $message, 'color:' + $color + ';font-weight:bold;');
}
})();
console.log('test', 'green');