“Log konsol berwarna JS” Kode Jawaban

Log konsol JS dengan warna

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

Log konsol berwarna JS

/**
 * @param {string} text text to return
 * @param {string} color enums: [black, red, green, yellow, blue, magenta, cyan, white]
 * @returns colored text
 */
const colorConsoleText = (text, color = 'black') => {
    const colors = {
        black: "\x1b[30m",
        red: "\x1b[31m",
        green: "\x1b[32m",
        yellow: "\x1b[33m",
        blue: "\x1b[34m",
        magenta: "\x1b[35m",
        cyan: "\x1b[36m",
        white: "\x1b[37m",
        console_color: '\x1b[0m'
    }
    const coloredText = `${colors[color]}${text}${colors.console_color}`
    return coloredText
}
Tough Tortoise

JS Console.log Color

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

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

JavaScript Console Console.log

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

JavaScript Console.log Colors

console.log('%c Hello World','color:red;border:1px solid dodgerblue');
Harry Fahringer III

Jawaban yang mirip dengan “Log konsol berwarna JS”

Pertanyaan yang mirip dengan “Log konsol berwarna JS”

Lebih banyak jawaban terkait untuk “Log konsol berwarna JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya