chalk vs kleur vs ansi-colors vs colors
Node.js Color Libraries Comparison
1 Year
chalkkleuransi-colorscolors
What's Node.js Color Libraries?

Color libraries in Node.js provide developers with tools to style console output using colors and styles, enhancing the readability and aesthetics of terminal applications. These libraries simplify the process of adding colors to text, making it easier to convey information, highlight errors, or improve user experience in command-line interfaces. Each library offers unique features, performance optimizations, and design philosophies, catering to different developer preferences and project requirements.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
chalk299,726,28222,21044.2 kB42 months agoMIT
kleur33,471,2941,64220.3 kB13-MIT
ansi-colors32,466,71644626.1 kB15-MIT
colors16,964,7825,181-905 years agoMIT
Feature Comparison: chalk vs kleur vs ansi-colors vs colors

Performance

  • chalk:

    chalk is optimized for performance but includes additional features that may introduce slight overhead compared to simpler libraries. It balances performance with functionality, making it suitable for most applications.

  • kleur:

    kleur is built with performance in mind, leveraging modern JavaScript features to ensure fast execution while maintaining a clean and simple API.

  • ansi-colors:

    ansi-colors is designed for performance with minimal overhead, making it one of the fastest options for adding colors to console output. It directly modifies strings without additional processing, ensuring quick execution.

  • colors:

    colors has a straightforward implementation that provides decent performance, but it may not be as fast as ansi-colors or chalk due to its simpler design and lack of optimizations.

API Design

  • chalk:

    chalk provides a rich API that supports chaining and nesting, allowing developers to create complex styles easily. Its extensive documentation aids in understanding its capabilities.

  • kleur:

    kleur presents a modern API that is both concise and expressive, making it easy to apply styles while maintaining readability in code.

  • ansi-colors:

    ansi-colors offers a minimalistic API focused solely on color application, making it easy to use for developers who want straightforward functionality without extra features.

  • colors:

    colors features a simple and intuitive API that allows for quick color application, making it user-friendly for beginners and those looking for a no-frills solution.

Features

  • chalk:

    chalk is feature-rich, supporting not only colors but also styles like bold, underline, and background colors. This makes it versatile for various console output needs.

  • kleur:

    kleur combines simplicity with modern features, supporting colors and styles while being lightweight and fast, appealing to those who want a contemporary solution.

  • ansi-colors:

    ansi-colors focuses primarily on color output, providing a limited set of features compared to others. It is ideal for developers who need basic color functionality without additional complexity.

  • colors:

    colors offers basic color functionality with a straightforward approach, lacking advanced features but sufficient for simple use cases.

Community and Support

  • chalk:

    chalk has a large and active community, providing extensive documentation, examples, and support. It is widely used in the Node.js ecosystem, ensuring good community backing.

  • kleur:

    kleur is relatively new but gaining traction quickly, with a growing community and good documentation. It is becoming a popular choice for modern applications.

  • ansi-colors:

    ansi-colors has a smaller community compared to others, but it is well-maintained and sufficient for basic needs. Documentation is straightforward but may lack extensive examples.

  • colors:

    colors has a moderate community presence with adequate documentation. It is less popular than chalk but still offers sufficient support for users.

Learning Curve

  • chalk:

    chalk's learning curve is slightly steeper due to its rich feature set, but its comprehensive documentation helps ease the process for new users.

  • kleur:

    kleur is designed to be intuitive and easy to use, making it accessible for developers of all skill levels, particularly those familiar with modern JavaScript.

  • ansi-colors:

    ansi-colors has a very low learning curve due to its minimalistic approach, making it easy for beginners to get started with color styling in console applications.

  • colors:

    colors is straightforward and easy to learn, making it an excellent choice for those new to color libraries in Node.js.

How to Choose: chalk vs kleur vs ansi-colors vs colors
  • chalk:

    Select chalk if you need a robust and well-documented library with extensive features, including support for styles, nesting, and chaining, making it suitable for complex console applications.

  • kleur:

    Pick kleur for a modern, fast, and minimalistic approach to color styling, emphasizing performance and a clean API, particularly for projects where speed is a priority.

  • ansi-colors:

    Choose ansi-colors for a lightweight solution that focuses solely on color styling without additional dependencies or features, ideal for simple applications.

  • colors:

    Opt for colors if you prefer a straightforward API with a focus on simplicity, allowing for easy color application without the need for additional setup or configuration.

README for chalk



Chalk


Terminal string styling done right

Coverage Status npm dependents Downloads

Info

Highlights

Install

npm install chalk

IMPORTANT: Chalk 5 is ESM. If you want to use Chalk with TypeScript or a build tool, you will probably want to use Chalk 4 for now. Read more.

Usage

import chalk from 'chalk';

console.log(chalk.blue('Hello world!'));

Chalk comes with an easy to use composable API where you just chain and nest the styles you want.

import chalk from 'chalk';

const log = console.log;

// Combine styled and normal strings
log(chalk.blue('Hello') + ' World' + chalk.red('!'));

// Compose multiple styles using the chainable API
log(chalk.blue.bgRed.bold('Hello world!'));

// Pass in multiple arguments
log(chalk.blue('Hello', 'World!', 'Foo', 'bar', 'biz', 'baz'));

// Nest styles
log(chalk.red('Hello', chalk.underline.bgBlue('world') + '!'));

// Nest styles of the same type even (color, underline, background)
log(chalk.green(
	'I am a green line ' +
	chalk.blue.underline.bold('with a blue substring') +
	' that becomes green again!'
));

// ES2015 template literal
log(`
CPU: ${chalk.red('90%')}
RAM: ${chalk.green('40%')}
DISK: ${chalk.yellow('70%')}
`);

// Use RGB colors in terminal emulators that support it.
log(chalk.rgb(123, 45, 67).underline('Underlined reddish color'));
log(chalk.hex('#DEADED').bold('Bold gray!'));

Easily define your own themes:

import chalk from 'chalk';

const error = chalk.bold.red;
const warning = chalk.hex('#FFA500'); // Orange color

console.log(error('Error!'));
console.log(warning('Warning!'));

Take advantage of console.log string substitution:

import chalk from 'chalk';

const name = 'Sindre';
console.log(chalk.green('Hello %s'), name);
//=> 'Hello Sindre'

API

chalk.<style>[.<style>...](string, [string...])

Example: chalk.red.bold.underline('Hello', 'world');

Chain styles and call the last one as a method with a string argument. Order doesn't matter, and later styles take precedent in case of a conflict. This simply means that chalk.red.yellow.green is equivalent to chalk.green.

Multiple arguments will be separated by space.

chalk.level

Specifies the level of color support.

Color support is automatically detected, but you can override it by setting the level property. You should however only do this in your own code as it applies globally to all Chalk consumers.

If you need to change this in a reusable module, create a new instance:

import {Chalk} from 'chalk';

const customChalk = new Chalk({level: 0});

| Level | Description | | :---: | :--- | | 0 | All colors disabled | | 1 | Basic color support (16 colors) | | 2 | 256 color support | | 3 | Truecolor support (16 million colors) |

supportsColor

Detect whether the terminal supports color. Used internally and handled for you, but exposed for convenience.

Can be overridden by the user with the flags --color and --no-color. 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.

chalkStderr and supportsColorStderr

chalkStderr contains a separate instance configured with color support detected for stderr stream instead of stdout. Override rules from supportsColor apply to this too. supportsColorStderr is exposed for convenience.

modifierNames, foregroundColorNames, backgroundColorNames, and colorNames

All supported style strings are exposed as an array of strings for convenience. colorNames is the combination of foregroundColorNames and backgroundColorNames.

This can be useful if you wrap Chalk and need to validate input:

import {modifierNames, foregroundColorNames} from 'chalk';

console.log(modifierNames.includes('bold'));
//=> true

console.log(foregroundColorNames.includes('pink'));
//=> false

Styles

Modifiers

  • reset - Reset the current style.
  • bold - Make the text bold.
  • dim - Make the text have lower opacity.
  • italic - Make the text italic. (Not widely supported)
  • underline - Put a horizontal line below the text. (Not widely supported)
  • overline - Put a horizontal line above the text. (Not widely supported)
  • inverse- Invert background and foreground colors.
  • hidden - Print the text but make it invisible.
  • strikethrough - Puts a horizontal line through the center of the text. (Not widely supported)
  • visible- Print the text only when Chalk has a color level above zero. Can be useful for things that are purely cosmetic.

Colors

  • black
  • red
  • green
  • yellow
  • blue
  • magenta
  • cyan
  • white
  • blackBright (alias: gray, grey)
  • redBright
  • greenBright
  • yellowBright
  • blueBright
  • magentaBright
  • cyanBright
  • whiteBright

Background colors

  • bgBlack
  • bgRed
  • bgGreen
  • bgYellow
  • bgBlue
  • bgMagenta
  • bgCyan
  • bgWhite
  • bgBlackBright (alias: bgGray, bgGrey)
  • bgRedBright
  • bgGreenBright
  • bgYellowBright
  • bgBlueBright
  • bgMagentaBright
  • bgCyanBright
  • bgWhiteBright

256 and Truecolor color support

Chalk supports 256 colors and Truecolor (16 million colors) on supported terminal apps.

Colors are downsampled from 16 million RGB values to an ANSI color format that is supported by the terminal emulator (or by specifying {level: n} as a Chalk option). For example, Chalk configured to run at level 1 (basic color support) will downsample an RGB value of #FF0000 (red) to 31 (ANSI escape for red).

Examples:

  • chalk.hex('#DEADED').underline('Hello, world!')
  • chalk.rgb(15, 100, 204).inverse('Hello!')

Background versions of these models are prefixed with bg and the first level of the module capitalized (e.g. hex for foreground colors and bgHex for background colors).

  • chalk.bgHex('#DEADED').underline('Hello, world!')
  • chalk.bgRgb(15, 100, 204).inverse('Hello!')

The following color models can be used:

  • rgb - Example: chalk.rgb(255, 136, 0).bold('Orange!')
  • hex - Example: chalk.hex('#FF8800').bold('Orange!')
  • ansi256 - Example: chalk.bgAnsi256(194)('Honeydew, more or less')

Browser support

Since Chrome 69, ANSI escape codes are natively supported in the developer console.

Windows

If you're on Windows, do yourself a favor and use Windows Terminal instead of cmd.exe.

FAQ

Why not switch to a smaller coloring package?

Chalk may be larger, but there is a reason for that. It offers a more user-friendly API, well-documented types, supports millions of colors, and covers edge cases that smaller alternatives miss. Chalk is mature, reliable, and built to last.

But beyond the technical aspects, there's something more critical: trust and long-term maintenance. I have been active in open source for over a decade, and I'm committed to keeping Chalk maintained. Smaller packages might seem appealing now, but there's no guarantee they will be around for the long term, or that they won't become malicious over time.

Chalk is also likely already in your dependency tree (since 100K+ packages depend on it), so switching won’t save space—in fact, it might increase it. npm deduplicates dependencies, so multiple Chalk instances turn into one, but adding another package alongside it will increase your overall size.

If the goal is to clean up the ecosystem, switching away from Chalk won’t even make a dent. The real problem lies with packages that have very deep dependency trees (for example, those including a lot of polyfills). Chalk has no dependencies. It's better to focus on impactful changes rather than minor optimizations.

If absolute package size is important to you, I also maintain yoctocolors, one of the smallest color packages out there.

- Sindre

But the smaller coloring package has benchmarks showing it is faster

Micro-benchmarks are flawed because they measure performance in unrealistic, isolated scenarios, often giving a distorted view of real-world performance. Don't believe marketing fluff. All the coloring packages are more than fast enough.

Related

(Not accepting additional entries)

Maintainers