consthex='#0000FF'// Blueconstrgb=hexToRGB(hex)console.debug(rgb)// [ 0 , 0 , 255 ]consthsl=[0,100,50]// Redconstrgb=hslToRGB(hsl)console.debug(rgb)// [ 255 , 0 , 0 ]constcmyka=[100,0,100,0]// Greenconstrgb=cmykToRGB(cmyka)console.debug(rgb)// [ 120 , 100 , 50 ]