crayon
=====
A very fast, clean, and flexible way to use ANSI colors on your terminal. Crayon supports 256 colors, a clean and chainable API, a few other nifty features, and built-in logging.
It works as a drop-in replacement for chalk, but is much faster (~20x) and has additional features. Like chalk, it doesn't monkeypatch the String
prototype the way that the popular colors module does.
Usage
var crayon = require('crayon');
crayon.red.log('This is red');
console.log(crayon.blue('Hello world!'))
crayon.olivedrab.bgOldlace.info("cute");
crayon("#ffcc00").log("old gold");
crayon(100).log("look at me");
console.log( crayon.blue('Hello'), 'World' + crayon.red('!') );
console.log( crayon.blue.bgRed.bold('Hello world!') );
crayon('red bgblue').log('this is red on a blue background');
console.log( crayon.red('Hello', crayon.underline.bgBlue('world') + '!') );
crayon.blue.info('Hello', 'World!', 'Foo', 'bar', 'biz', 'baz');
crayon("goldenrod", "bg:blue", "inverse").underline.log("Hi!");
crayon.foreground("#ffffff").background("crimson").log("school!");
crayon.fg("navy").bg("#ffcc00").log("spirit!");
crayon.fgbg("white", "red").underline.error("whew");
crayon.red._("background:goldenrod").inverse.log("goldenrod on red");
crayon.logger = require('npmlog');
For color descriptions passed to functions, you can use any of the following:
- The name of any CSS color (case-insensitive)
- Any hex color (case-insensitive, leading '#' is optional)
- Any ANSI color code 0-255 as a Number
Notes
- Depending on your settings, there may be a difference between the system red color and the color most closely matching the CSS color red. In the case of color name collisions,
crayon.red
will give you the system color and crayon.red_
will give you the CSS color. - For functions that aren't specific about whether they take a foreground or a background argument, you can pass
bg:<color>
or background: <color>
or bg<Color>
or similar, etc. to change the background color. - The reason that this module is much faster than chalk is that chalk remakes the style functions each time you call them whereas crayon keeps them around if you reuse them.