Answers for "change font color inside of browser console"

CSS
2

add color to console

console.log('%cTest message', 'color: #008000; font-weight:bold;');
Posted by: Guest on November-05-2021
1

console.log with color font

var colors = require('colors');

console.log('This is bold'.bold);
console.log('This is dim'.dim);
console.log('This is italic'.italic);
console.log('This is underline'.underline);
console.log('This is inverse'.inverse);
console.log('This is hidden'.hidden);
Posted by: Guest on December-10-2020

Code answers related to "change font color inside of browser console"

Browse Popular Code Answers by Language