converts an HSV color code to the RGB format
h | number | the heu value from 0 to 360 |
s | number | the saturation value from 0 to 1 |
v | number | the brightness value from 0 to 1 |
array | the array with RED GREEN BLUE values |
webix.color.hsvToRgb(0.29,0.62,0.74);// -> [188, 72, 71]
Back to top