RGBConvert colors to RGB.Examplesimport*asRGBfrom'https://deno.land/x/rgb/mod.ts';Hexconsthex='#0000FF';// Blueconstrgb=RGB.fromHex(hex);console.log(rgb);// [ 0 , 0 , 255 ]HSLconsthsl=[0,100,50];// Redconstrgb=RGB.fromHSL(hsl);console.log(rgb);// [ 255 , 0 , 0 ]