“цветная консоль” Ответ

JS -консольный журнал с цветом

console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
If-dev

Console.log с цветным шрифтом

 console.log("%cThis is a %cConsole.log", "background:black ; color: white", "color: red; font-size:25px");
godwin_kvg

цветная консоль

const str = 'text';

console.log ( '%c%s', 'color: green; font: 1.2rem/1 Tahoma;', str );
Tough Tortoise

Console.log с цветным шрифтом

var colors = require('colors');

console.log('This is rainbow'.rainbow);
console.log('This is zebra'.zebra);
console.log('This is america'.america);
console.log('This is trap'.trap);
console.log('This is random'.random);
console.log('This is random2'.random);
console.log('This is random3'.random);
godwin_kvg

цветная консоль

console.log("%cThis will be formatted with large, blue text", "color: blue; font-size: x-large");
Cherry berry

Ответы похожие на “цветная консоль”

Вопросы похожие на “цветная консоль”

Больше похожих ответов на “цветная консоль” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования