Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

colorful

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colorful

colorful if a terminal tool for colors

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
25K
increased by11.23%
Maintainers
1
Weekly downloads
 
Created
Source

Colorful

It's not just color, it's everything colorful in terminal.


Color

Color in terminal and only terminal.

screen shot

Programmer

As a programmer, you think they are functions:

var color = require('colorful')
color.red('hello')
color.underline('hello')
color.red(color.underline('hello'))

Human

As a human, you think you are a painter:

var paint = require('colorful').paint
paint('hello').red.color
paint('hello').bold.underline.red.color

WTF, is bold, underline a color? If you don't like the idea, try:

paint('hello').bold.underline.red.style

Alien

As an alien, you are from outer space, you think it should be:

require('colorful').colorful()
'hello'.to.red.color
'hello'.to.underline.bold.red.color
'hello'.to.underline.bold.red.style

Artist

As an artist, you need more colors.

var Color = require('colorful').Color;

var s = new Color('colorful');
s.fgcolor = 13;
s.bgcolor = 61;

Support ANSI 256 colors. [0 - 255]

Detective

As a detective, you think we should detect if color is supported:

require('colorful').isSupported

// we can disable color
require('colorful').disabled = true
require('colorful').isSupported
// => false

Colors

  • bold
  • faint
  • italic
  • underline
  • blink
  • overline
  • inverse
  • conceal
  • strike
  • black
  • black_bg
  • red
  • red_bg
  • green
  • green_bg
  • yellow
  • yellow_bg
  • blue
  • blue_bg
  • magenta
  • magenta_bg
  • cyan
  • cyan_bg
  • white
  • white_bg
  • grey
  • gray

Changelog

2013-03-18 2.0.1

Add gray color.

2013-03-18 2.0.0

Redesign. Support for ANSI 256 colors.

1.3.0

  • remove logging

Keywords

FAQs

Package last updated on 18 Mar 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc