2.1.3 • Published 1 month ago

tiny-colors v2.1.3

Weekly downloads
-
License
-
Repository
github
Last release
1 month ago

Tiny Colors

A tiny library providing the basic ANSI colors for the terminal.

Install

npm install --save tiny-colors

Colors

The following color functions are provided.

ForegroundBackgroundModifiers
blackbgBlackreset
redbgRedbold
greenbgGreendim
yellowbgYellowitalic
bluebgBlueunderline
magentabgMagentaoverline
cyanbgCyaninverse
whitebgWhitehidden
graybgGraystrikethrough

Usage

import colors from 'tiny-colors';

// Unchained usage

console.log ( colors.bgMagenta ( colors.italic ( 'foo' ) ) );

// Chained usage

console.log ( colors.bgMagenta.italic ( 'foo' ) );

License

MIT © Fabio Spampinato