hsluvToRGBColor function
HSLuv values are ranging in 0;360, 0;100 and 0;100 and RGB in 0;1.
@param tuple An array containing the color's HSL values in HSLuv color space.
@return A string containing a #RRGGBB representation of given color.
*/
Implementation
Color hsluvToRGBColor(List<double> tuple) {
return toColor(Hsluv.hsluvToRgb(tuple));
}