hsluvToRgb static method

List<double> hsluvToRgb(
  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 An array containing the resulting color's RGB coordinates.

Implementation

static List<double> hsluvToRgb(List<double> tuple) {
  return lchToRgb(hsluvToLch(tuple));
}