0.0.1 • Published 6 years ago

@fle/dye v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

dye

version

Stdout colorful log in terminal.

Tips: It's a pure package without install others.

Installation

npm install @fle/dye

Usage

const dye = require('@fle/dye');

// color
console.log(dye.green('green'));
console.log(dye.help('help'));

// style
console.log(dye.bold('bold'));

// background
console.log(dye.bgRed('background red'));

// mixed
console.log(dye.red.bgWhite.bold('red bgGreen bold'));

API

color

  • gray
  • black
  • white
  • green
  • yellow
  • blue
  • red
  • cyan
  • magenta

style

  • bold
  • inverse
  • underline
  • italic (not work at mac)
  • strikethrough (not work at mac)

background

  • bgBlack
  • bgWhite
  • bgGreen
  • bgYellow
  • bgBlue
  • bgRed
  • bgCyan
  • bgMagenta