New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

color-conversion

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

color-conversion

transform color to any type such 'rgb' or 'hsl'

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

color-conversion

##Intention

JavaScript library for color conversion and manipulation with support for CSS color strings.

##Installation

npm install color-conversion

Usage

var Color = require("color-conversion")

or

import Color from "color-conversion"

Setters

The instance is tranforming RGB to HSL. You should use the 'toHSL' method.

var color = Color("rgb(255, 255, 255)");  	//It's can write as var color = Color("255, 255, 255");
color.toHSL();  		//[3,0,100]

It's also can transform HSL to RGB(You should use the 'toRGB' method.),such as:

var color = Color("hsl(100, 10%, 25%)");	//It's can write as var color = Color("100, 10%, 25%");
color.toRGB(); //[60,64,57]

Transforming hex to hsl or grb.

var color = Color("ffffff");	//It's can write as var color = Color("#ffffff");
color.toRGB(); //[255,255,255]
color.toHSL(); //[100,0,100]

Method

The library has three methods.That is toRGB,toHSL and toHex.The method will return an array include the transformational color.

FAQs

Package last updated on 27 Dec 2016

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