simple-color-convert
v1.0.0
Published
This package provides functions to simple convert HSV, HSL and RGB colors into each other
Downloads
4
Readme
Simple Color Convert
Functions
hsv2hsl
hsl2hsv
hsv2rgb
rgb2hsv
hsl2rgb
rgb2hsl
Usage
import { hsv2rgb, rgb2hsv } from 'simple-color-convert';
const rgb = hsv2rgb(300, 0.9, 0.5);
const hsv = rgb2hsv(255, 0, 0);