0.0.1 • Published 11 years ago

chroma v0.0.1

Weekly downloads
514
License
-
Repository
-
Last release
11 years ago

#Chroma - Simple terminal colors for Node.js ##Contents

  1. Install
  2. Introduction
  3. API
  4. License

##Install

npm install kagami

Chroma is a quick and easy way to print colors in Node.js terminal applications.

console.log('My favorite colors are ' + chroma.blue('blue') + ' and ' + chroma.white('white') + '!');

//My favorite colors are blue and white!

Chroma supports the following ASCII colors:

  • Black
  • Red
  • Green
  • Yellow
  • Blue
  • Magenta
  • Cyan
  • White

Usage:

chroma [color]( text )

console.log(chroma.blue('This will be blue!'));

Usage:

chroma ( hex string ) chroma ( red value, green value, blue value )

var blueifier = chroma('#00FFFF');
var redifier = chroma(255, 12, 5);

console.log(blueifier('This will be blue!'));
console.log(redifier('This will probably be red!'));

Chroma is MIT licensed. You can read the license here.