supports-color
Detect whether a terminal supports color
Last updated 10 years ago by sindresorhus .
MIT · Repository · Bugs · Original npm
$ cnpm install supports-color 
SYNC missed versions from official npm registry.

supports-color Build Status

Detect whether a terminal supports color

Install

$ npm install supports-color

Usage

const supportsColor = require('supports-color');

if (supportsColor.stdout) {
	console.log('Terminal stdout supports color');
}

if (supportsColor.stdout.has256) {
	console.log('Terminal stdout supports 256 colors');
}

if (supportsColor.stderr.has16m) {
	console.log('Terminal stderr supports 16 million colors (truecolor)');
}

API

Returns an Object with a stdout and stderr property for testing either streams. Each property is an Object, or false if color is not supported.

The stdout/stderr objects specifies a level of support for color through a .level property and a corresponding flag:

  • .level = 1 and .hasBasic = true: Basic color support (16 colors)
  • .level = 2 and .has256 = true: 256 color support
  • .level = 3 and .has16m = true: Truecolor support (16 million colors)

Info

It obeys the --color and --no-color CLI flags.

For situations where using --color is not possible, use the environment variable FORCE_COLOR=1 (level 1), FORCE_COLOR=2 (level 2), or FORCE_COLOR=3 (level 3) to forcefully enable color, or FORCE_COLOR=0 to forcefully disable. The use of FORCE_COLOR overrides all other color support checks.

Explicit 256/Truecolor mode can be enabled using the --color=256 and --color=16m flags, respectively.

Related

Maintainers


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.

Current Tags

  • 9.3.1                                ...           latest (3 years ago)

24 Versions

  • 9.3.1                                ...           3 years ago
  • 9.3.0                                ...           3 years ago
  • 9.2.3                                ...           3 years ago
  • 9.2.2                                ...           3 years ago
  • 9.2.1                                ...           4 years ago
  • 9.0.2                                ...           4 years ago
  • 8.1.1                                ...           5 years ago
  • 9.0.0                                ...           4 years ago
  • 8.1.0                                ...           5 years ago
  • 8.0.0                                ...           5 years ago
  • 7.2.0                                ...           5 years ago
  • 6.0.0                                ...           7 years ago
  • 4.4.0                                ...           8 years ago
  • 5.4.0                                ...           7 years ago
  • 1.2.0                                ...           11 years ago
  • 3.1.2                                ...           10 years ago
  • 4.5.0                                ...           8 years ago
  • 1.3.1                                ...           10 years ago
  • 0.2.0                                ...           11 years ago
  • 3.2.3                                ...           9 years ago
  • 2.0.0                                ...           10 years ago
  • 7.1.0                                ...           6 years ago
  • 6.1.0                                ...           7 years ago
  • 5.5.0                                ...           7 years ago
Maintainers (2)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (2)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org