dye-converter
v1.0.0
Published
convert colors easily🤞
Downloads
4
Readme
Dye Converter
simple and fast color converter!
Get Started
installing the package:
npm install dye-converter
then import module:
import dc from "dye-converter";
// or
const dc = require("dye-converter");
convert rgb to hex:
const hex = dc.rgbToHex({ r: 11, g: 22, b: 123 });
convert rgb to hsl:
const hex = dc.rgbToHsl({ r: 11, g: 22, b: 123 });
convert hsl to rgb:
const hex = dc.hslToRgb({ h: 122, s: 11, l: 33 });
Available converters
| HEX | RGB | HSL | CMYK | | --------- | --------- | -------- | --------- | | hexToRgb | rgbToHex | hslToRgb | cmykToHsl | | hexToHsv | rgbToHsv | hslToHwx | cmykToRgb | | hexToHsl | rgbToHsl | | | hexToCmyk | rgbToCmyk | | | hexToRgb | | |
License
MIT