Skip to content
forked from chalk/ansi-styles

ANSI escape codes for colorizing strings in the terminal

Notifications You must be signed in to change notification settings

mixu/ansi-styles

 
 

Repository files navigation

ansi-styles Build Status

ANSI escape codes for colorizing strings in the terminal.

You probably want the higher-level chalk module for styling your strings.

screenshot

Install

$ npm install --save ansi-styles

Usage

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
  • italic
  • underline
  • inverse
  • strikethrough

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

About

ANSI escape codes for colorizing strings in the terminal

Resources

Stars

Watchers

Forks

Packages

No packages published