A module for applying color styles to console output.
Go to file
2017-01-21 20:30:57 +01:00
dist improve colors 2017-01-21 20:30:53 +01:00
test switch to warmer colors 2017-01-21 19:46:51 +01:00
ts improve colors 2017-01-21 20:30:53 +01:00
.gitignore initial 2017-01-21 15:49:00 +01:00
.gitlab-ci.yml initial 2017-01-21 15:49:00 +01:00
package.json 1.0.5 2017-01-21 20:30:57 +01:00
README.md add README 2017-01-21 18:13:44 +01:00
tslint.json initial 2017-01-21 15:49:00 +01:00

beautycolor

colors for beautylog

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

import * as beautycolor from 'beautycolor'

let myColoredString = beautycolor.coloredString(
    'This string has a blue font and a green background',
    'blue',
    'green'
)

console.log(myColoredString)

npm