Socket
Socket
Sign inDemoInstall

kuler

Package Overview
Dependencies
0
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

kuler

Color your terminal using CSS/hex color codes


Version published
Maintainers
2
Weekly downloads
7,724,440
decreased by-16.99%

Weekly downloads

Readme

Source

kuler

Kuler is small and nifty node module that allows you to create terminal based colors using hex color codes, just like you're used to doing in your CSS. We're in a modern world now and terminals support more than 16 colors so we are stupid to not take advantage of this.

Installation

The package is released in the public npm registry and can be installed by running:

npm install --save kuler

Usage

To color a string simply pass it the string you want to have colored as first argument and the color as hex as second argument:

'use strict';

const kuler = require('kuler');
const str = kuler('foo', '#FF6600');

The color code sequence is automatically terminated at the end of the string so the colors do no bleed to other pieces of text. So doing:

console.log(kuler('red', '#F00'), 'normal');

Will work without any issues.

License

MIT

Keywords

FAQs

Last updated on 06 Jun 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc