“Farbkonsole” Code-Antworten

JS -Konsolenprotokoll mit Farbe

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

console.log mit Farbschrift

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

Farbkonsole

const str = 'text';

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

console.log mit Farbschrift

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

Farbkonsole

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

Ähnliche Antworten wie “Farbkonsole”

Fragen ähnlich wie “Farbkonsole”

Weitere verwandte Antworten zu “Farbkonsole” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen