npm install ansi-256-colors> 256 ansi color codes for styling terminal output
You probably want the higher-level chalk module for styling your strings.
``sh`
$ npm install --save ansi-256-colors
`js
var colors = require('ansi-256-colors');
console.log(colors.fg.getRgb(2,3,4) + colors.bg.getRgb(4,4,4) + 'Hello world!' + colors.reset);
`
The module exposes a fg and bg object, and a reset code. Both the foreground and background objects contain:
#### colors.\
Returns the color code for the given red-green-blue value.
#### colors.\
All 256 color codes.
#### colors.\
The 8 base color codes, guaranteed to work on every system.
#### colors.\
The 8 base bright/bold color codes, guaranteed to work on every system.
#### colors.\
The 24 grayscales ranging from white to black.
#### colors.\
The 216 varying color tints, where the order corresponds to the code-point 36\r + 6\g + b`.
#### colors.reset
Closes any previously opened color codes.