fast-console-style

It allows you to edit your console style.

Usage no npm install needed!

<script type="module">
  import fastConsoleStyle from 'https://cdn.skypack.dev/fast-console-style';
</script>

README

📃 Fast Console Style

💾 Install

$ npm install fast-console-style

💠 Usage

let fcc = require("./index");

console.log(fcc(`<bgWhite><fgBlack>`));
console.clear();

console.log(
    fcc(`
            <bgBlue><fgWhite>Rules<reset>
<bgWhite>
<fgYellow> - Do not be lie.
<fgBlue> - Do not be swear.

<reset>
    `)
);

wew


List Of Colors

  • Styles

    • <reset>
    • <dim>
    • <underline>
    • <blink>
    • <reverse>
  • Foreground Colors

    • <fgBlack>
    • <fgRed>
    • <fgGreen>
    • <fgYellow>
    • <fgBlue>
    • <fgMagenta>
    • <fgCyan>
    • <fgWhite>
    • <fgBlackBright>
    • <fgRedBright>
    • <fgGreenBright>
    • <fgYellowBright>
    • <fgBlueBright>
    • <fgMagentaBright>
    • <fgCyanBright>
    • <fgWhiteBright>
  • Backgorund Colors

    • <bgBlack>
    • <bgRed>
    • <bgGreen>
    • <bgYellow>
    • <bgBlue>
    • <bgMagenta>
    • <bgCyan>
    • <bgWhite>
    • <bgBlackBright>
    • <bgRedBright>
    • <bgGreenBright>
    • <bgYellowBright>
    • <bgBlueBright>
    • <bgMagentaBright>
    • <bgCyanBright>
    • <bgWhiteBright>