ansi-colorizer

Colorize/brighten text for terminals with ANSI escape sequences

No longer maintained
Last updated 10 years ago by dominykas .
BSD-3-Clause · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install ansi-colorizer 
SYNC missed versions from official npm registry.

ansi-colorizer

Build status

Dim and bright pretty shell colors

ansi-colorizer is a small utility to add ANSI escape sequences to strings to output them with color. Configuring the colorizer produces an object that may or may not colorize or brighten text.

configure(options)

Returns a new colorizer instance. Configuration options are color and bright. Both are booleans, and both are false by default. If both settings are false (the default), the colorizer will not really do anything. When color is true, methods colorize strings. When bright is true, all color methods will result in the bright color variant.

var ansiColorizer = require("ansi-colorizer");

var colorizer = ansiColorizer.configure({ color: true, bright: false });
colorizer.red("Hey"); //=> "\x1b[31mHey\x1b[0m"

colorizer = ansiColorizer.configure({ color: true, bright: trie });
colorizer.red("Hey"); //=> "\x1b[1m\x1b[31mHey\x1b[0m"

colorizer = ansiColorizer.configure();
colorizer.red("Hey"); //=> "Hey"

bold(string)

Brightens the string.

red(string)

Colors string red.

yellow(string)

Colors string yellow.

green(string)

Colors string green.

purple(string)

Colors string purple.

cyan(string)

Colors string cyan.

grey(string)

Colors string grey.

Current Tags

  • 1.0.1                                ...           latest (10 years ago)

3 Versions

  • 1.0.1 [deprecated]           ...           10 years ago
  • 1.0.0 [deprecated]           ...           13 years ago
  • 0.5.0 [deprecated]           ...           13 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 1
Last Month 1
Dependencies (0)
None
Dev Dependencies (3)

Copyright 2013 - present © cnpmjs.org | Home |