Answers for "console log change color"

17

js console log with color

console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
Posted by: Guest on April-09-2020
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
0

js console.log color

console.log('%c My txt ', 'My css');

// Example
console.log('%c Hello world ', 'background: #222; color: #bada55');
Posted by: Guest on February-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language