“JS -Konsolenprotokoll mit Farbe” Code-Antworten

JS -Konsolenprotokoll mit Farbe

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

JS Console.log Farbe

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

// Example
console.log('%c Hello world ', 'background: #222; color: #bada55');
Attractive Ape

So ändern Sie die Farbe einer Konsole.log in JavaScript

// Download the npm package "colors"
// npm i colors

var colors = require("colors");

console.log("Hello World".blue);

// output: Hello World (Its blue btw lmao)
Elegant Echidna

JavaScript colorisierte Konsole.log

console.log(
  'Nothing here %cHi Cat %cHey Bear', // Console Message
  'color: blue',
  'color: red', // CSS Style
);
Pudochu

TypeScript So färben Sie Ihre Konsolenlogger

//has to be backtick comma to interpolate.
public colorLogger(str: any, color = "red"){
    console.log(`%c ${str}`, `color: ${color}; font-weight: bold;`);
}
Juice WRLD

Ähnliche Antworten wie “JS -Konsolenprotokoll mit Farbe”

Fragen ähnlich wie “JS -Konsolenprotokoll mit Farbe”

Weitere verwandte Antworten zu “JS -Konsolenprotokoll mit Farbe” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen