hsluvToHex static method

String hsluvToHex(
  1. List<double> tuple
)

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

static String hsluvToHex(List<double> tuple) {
  return rgbToHex(hsluvToRgb(tuple));
}