const hex = '#0000FF'; // Blue
const rgb = RGB.fromHex(hex);
console.log(rgb); // [ 0 , 0 , 255 ]const hsl = [ 0 , 100 , 50 ]; // Red
const rgb = RGB.fromHSL(hsl);
console.log(rgb); // [ 255 , 0 , 0 ]| Name | Name | Last commit date | ||
|---|---|---|---|---|
const hex = '#0000FF'; // Blue
const rgb = RGB.fromHex(hex);
console.log(rgb); // [ 0 , 0 , 255 ]const hsl = [ 0 , 100 , 50 ]; // Red
const rgb = RGB.fromHSL(hsl);
console.log(rgb); // [ 255 , 0 , 0 ]