tiny-colors
TypeScript icon, indicating that this package has built-in type declarations

2.2.1 • Public • Published

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.

Foreground Background Modifiers
black bgBlack reset
red bgRed bold
green bgGreen dim
yellow bgYellow italic
blue bgBlue underline
magenta bgMagenta overline
cyan bgCyan inverse
white bgWhite hidden
gray bgGray strikethrough

Usage

import colors, {ENABLED} from 'tiny-colors';

// Unchained usage

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

// Chained usage

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

// Check if colors will actually be displayed

console.log ( ENABLED ); // => true/false

License

MIT © Fabio Spampinato

/tiny-colors/

    Package Sidebar

    Install

    npm i tiny-colors

    Weekly Downloads

    39,808

    Version

    2.2.1

    License

    none

    Unpacked Size

    11.7 kB

    Total Files

    15

    Last publish

    Collaborators

    • fabiospampinato