Node.js library for colorizing text using ANSI escape sequences.
$ cnpm install clorox
Clorox is a Node.js library for colorizing text using ANSI escape sequences.
npm i clorox
const { Clorox: x } = require("clorox")
Write with color.
console.log(x.red("Bonjour!"))
Chain expressions.
console.log(x.red.underline("Hello") + x.blue.bold("World") + "!")
Compose a color expression using template literals.
console.log(`
Oil: ${x.bgBlack.white(42)}
Gold: ${x.yellow(150)}
Lumber: ${x.green(10000)}
`)
Nest expressions to reuse styles.
console.log(`Normal ${x.bold(`Bold ${x.blue("Bold/Blue")} Bold`)} Normal`)
Use string substitution for easier formatting.
console.log(x.green("Total: $%f"), 1.99)
Clorox exports ANSI escape codes which you can use for manually styling console output. They can be useful for testing your actual output matches the expected output.
Each style has an open, close and strip property. The strip property is useful for removing the previously closed escape code within a nested expression.
const { STYLES } = require("clorox")
console.log(`${STYLES.red.open}Red${STYLES.red.close}`)
| Colors | Background Colors | Modifiers |
|---|---|---|
| black | bgBlack | dim |
| red | bgRed | bold |
| green | bgGreen | hidden |
| yellow | bgYellow | italic |
| blue | bgBlue | underline |
| magenta | bgMagenta | inverse |
| cyan | bgCyan | |
| white | bgWhite | reset |
| gray |
Clorox is MIT licensed. See LICENSE.
Copyright 2013 - present © cnpmjs.org | Home |