Sha256: ce2224b7ae4876720e12098f31a5f87ec098578ee33f4c64ece5005c417cada9
Contents?: true
Size: 1.08 KB
Versions: 30
Compression:
Stored size: 1.08 KB
Contents
# ansi-styles [![Build Status](https://travis-ci.org/sindresorhus/ansi-styles.svg?branch=master)](https://travis-ci.org/sindresorhus/ansi-styles) > [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles) for styling strings in the terminal You probably want the higher-level [chalk](https://github.com/sindresorhus/chalk) module for styling your strings. ![screenshot](screenshot.png) ## Install ```sh $ npm install --save ansi-styles ``` ## Usage ```js var ansi = require('ansi-styles'); console.log(ansi.green.open + 'Hello world!' + ansi.green.close); ``` ## API Each style has an `open` and `close` property. ## Styles ### General - `reset` - `bold` - `dim` - `italic` *(not widely supported)* - `underline` - `inverse` - `hidden` - `strikethrough` *(not widely supported)* ### Text colors - `black` - `red` - `green` - `yellow` - `blue` - `magenta` - `cyan` - `white` - `gray` ### Background colors - `bgBlack` - `bgRed` - `bgGreen` - `bgYellow` - `bgBlue` - `bgMagenta` - `bgCyan` - `bgWhite` ## License MIT © [Sindre Sorhus](http://sindresorhus.com)
Version data entries
30 entries across 14 versions & 4 rubygems