Skip to content

Instantly share code, notes, and snippets.

@o-az
Created April 16, 2022 16:39
Show Gist options
  • Save o-az/6695b1184471871d77d2d96264599b0c to your computer and use it in GitHub Desktop.
Save o-az/6695b1184471871d77d2d96264599b0c to your computer and use it in GitHub Desktop.
// Usage
console.log("\x1b[32m", "color colorr colorrrrr")
const colors = {
reset: "\x1b[0m",
bright: "\x1b[1m",
dim: "\x1b[2m",
underscore: "\x1b[4m",
blink: "\x1b[5m",
reverse: "\x1b[7m",
hidden: "\x1b[8m",
fg: {
black: "\x1b[30m",
red: "\x1b[31m",
green: "\x1b[32m",
yellow: "\x1b[33m",
blue: "\x1b[34m",
magenta: "\x1b[35m",
cyan: "\x1b[36m",
white: "\x1b[37m",
crimson: "\x1b[38m", // Scarlet
},
bg: {
black: "\x1b[40m",
red: "\x1b[41m",
green: "\x1b[42m",
yellow: "\x1b[43m",
blue: "\x1b[44m",
magenta: "\x1b[45m",
cyan: "\x1b[46m",
white: "\x1b[47m",
crimson: "\x1b[48m",
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment