Code Monkey home page Code Monkey logo

addcolor's Introduction

addcolor

Add color to Node.js console text and background.

Installation

npm i addcolor

Usage

import color from 'addcolor';

console.log(color.yellow('add color to text'));

console.log(`${color.bg.blue('add color to background')} also ${color.style.reverse('reverse background & foreground')}`);

Use color codes

console.log(`${color.code.fg.black}black text and ${color.code.bg.cyan}black text with cyan background${color.code.reset}`);

Use both color & style at the same time

console.log(color.red('red and bold ', 'bright'));
console.log(color.style.bold('bold and red', 'red'));

Quick run through all the colors & styles

for (let type in code)
    if (type !== 'reset')
        for (let item in code[type])
            console.log(code[type][item], item, code.reset)

Colors

Both foreground and background

  • black
  • red
  • green
  • yellow
  • blue
  • magenta
  • cyan
  • white
  • default
  • blackBright
  • redBright
  • greenBright
  • yellowBright
  • blueBright
  • magentaBright
  • cyanBright
  • whiteBright

Styles

  • bold
  • dim
  • italic
  • underscore
  • blink
  • rapidBlink
  • reverse
  • hidden
  • strikethrough

addcolor's People

Contributors

scrwdrv avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.