constrgb=[255,0,0];// Redconsthsl=HSL.fromRGB(rgb);console.log(hsl);// [ 0 , 100 , 50 ]consthex='#0000FF';// Blueconsthsl=HSL.fromHex(hex);console.log(hsl);// [ 240 , 100 , 50 ]constcmyk=[100,0,100,0];// Greenconsthsl=HSL.fromCMYK(cmyk);console.log(hsl);// [ 120 , 100 , 50 ]