color-conversion
v1.0.1
Published
transform color to any type such 'rgb' or 'hsl'
Downloads
462
Readme
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.