Socket
Socket
Sign inDemoInstall

kuler

Package Overview
Dependencies
1
Maintainers
1
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
Weekly downloads
7.4M
decreased by-6.08%
Maintainers
1
Install size
47.7 kB
Created
Weekly downloads
 

Package description

What is kuler?

The kuler npm package is designed for working with colors in Node.js applications. It allows users to convert colors between different formats, manipulate colors, and generate color schemes. The package is useful for developers working on projects that require dynamic color manipulation, such as web development, game development, and any application that needs a sophisticated color handling capability.

What are kuler's main functionalities?

Convert colors between formats

This feature allows users to convert colors from one format to another, such as from HEX to RGB. The code sample demonstrates converting a HEX color to its RGB representation.

"const kuler = require('kuler');
const hexColor = '#ffcc00';
const rgbColor = kuler(hexColor).rgb();
console.log(rgbColor); // Outputs the RGB representation of the given hex color"

Generate color schemes

This feature enables the generation of color schemes based on a base color. Users can create various schemes such as monochromatic, complementary, and triadic. The code sample shows how to generate a triadic color scheme.

"const kuler = require('kuler');
const baseColor = '#ffcc00';
const scheme = kuler(baseColor).scheme('triade');
console.log(scheme.colors); // Outputs an array of colors in the triade scheme based on the base color"

Manipulate colors

This feature allows users to manipulate colors by adjusting their lightness, darkness, saturation, etc. The code sample demonstrates making a color lighter.

"const kuler = require('kuler');
const color = '#ffcc00';
const lighterColor = kuler(color).lighten(10).hex();
console.log(lighterColor); // Outputs a lighter version of the original color"

Other packages similar to kuler

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

npm install --save kuler

Usage

Kuler provides a really low level API as we all have different opinions on how to build and write coloring libraries. To use it you first have to require it:

'use strict';

var kuler = require('kuler');

There are two different API's that you can use. A constructor based API which uses a .style method to color your text:

var str = kuler('foo').style('#FFF');

Or an alternate short version:

var str = kuler('foo', 'red');

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', 'red'), 'normal');

Will work without any issues.

License

MIT

Keywords

FAQs

Last updated on 28 May 2014

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