Convert colors to HSL.
Button Usage Button Conversions
import * as HSL from 'https://deno.land/x/hsl/mod.ts';
const rgb = [ 255 , 0 , 0 ]; // Red const hsl = HSL.fromRGB(rgb); console.log(hsl); // [ 0 , 100 , 50 ]
const hex = '#0000FF'; // Blue const hsl = HSL.fromHex(hex); console.log(hsl); // [ 240 , 100 , 50 ]
const cmyk = [ 100 , 0 , 100 , 0 ]; // Green const hsl = HSL.fromCMYK(cmyk); console.log(hsl); // [ 120 , 100 , 50 ]