Skip to content

ivan-kleshnin/cli-colors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CLI colors

Under development, don't use

Why

Marak/colors – modifies String prototype... facepalm.

SindreSorhus/chalk – overengineered, fluent API sucks at composition

Usage

let {blue, red} = require("cli-colors")

console.log("one " + red("two " + blue("three ") + "four " + blue("five ") + "six ") + "seven")

Sample

Use function composition to combine styles:

let {pipe} = require("ramda")
let {bgBlue, white} = require("cli-colors")

let banner = pipe(bgBlue, white)

console.log(banner("============="))
console.log(banner("  H E L L O  "))
console.log(banner("============="))

API

let colors = require("cli-colors")
// or import * as colors from "cli-colors"

Modifiers

colors.bold
colors.hidden
colors.inverse
colors.italic
colors.strikethrough
colors.underline

Colors

colors.black
colors.blue
colors.cyan
colors.gray
colors.green
colors.grey (alias)
colors.magenta
colors.red
colors.yellow
colors.white

Backgrounds

colors.bgBlack
colors.bgBlue
colors.bgCyan
colors.bgGreen
colors.bgMagenta
colors.bgRed
colors.bgYellow
colors.bgWhite

Special

colors.reset
colors.styles