hsv rgb - part-cw/lambdanative GitHub Wiki

(hsv->rgb hsv)

hsv->rgb converts a hsv list to an rgb list (255 based)

Parameter Description
hsv List of colors (0-255 scale)

Example

Example1: Get RGB values of a greenish color with hue=127, saturation=45, and value=74

> (hsv->rgb (list 127 45 74))
(60.94117647058824 74. 73.84636678200692)