Answers for "colored text in console.log"

3

console.log with color font

console.log("%cThis is a %cConsole.log", "background:black ; color: white", "color: red; font-size:25px");
Posted by: Guest on December-10-2020
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
0

console.log with color font

console.log("%cThis Is Line One ", "font-size:30px");o
Posted by: Guest on December-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language