@qzda/prolog
v1.0.6
Published
Print color information on the console
Downloads
71
Maintainers
Readme
prolog
Print color information on the console.
use
import prolog, { Colors, Backgrounds, OtherStyles } from "@qzda/prolog";
console.log(
Object.keys(OtherStyles)
.map((key) => prolog[key](key))
.join(" ")
);
console.log(
Object.keys(Colors)
.map((key) => prolog[key](key))
.join(" ")
);
console.log(
Object.keys(Backgrounds)
.map((key) => prolog[key](key))
.join(" ")
);
style
const Colors = {
black: 30,
red: 31,
green: 32,
yellow: 33,
blue: 34,
magenta: 35,
cyan: 36,
white: 37,
gray: 90,
brightBlack: 90,
brightRed: 91,
brightGreen: 92,
brightYellow: 93,
brightBlue: 94,
brightMagenta: 95,
brightCyan: 96,
brightWhite: 97,
} as const;
const Backgrounds = {
bgBlack: 40,
bgRed: 41,
bgGreen: 42,
bgYellow: 43,
bgBlue: 44,
bgMagenta: 45,
bgCyan: 46,
bgWhite: 47,
bgGray: 100,
bgBrightBlack: 100,
bgBrightRed: 101,
bgBrightGreen: 102,
bgBrightYellow: 103,
bgBrightBlue: 104,
bgBrightMagenta: 105,
bgBrightCyan: 106,
bgBrightWhite: 107,
} as const;
const OtherStyles = {
bold: 1,
italic: 3,
underline: 4,
} as const;