Skip to content
Chris Petersen edited this page Oct 16, 2014 · 1 revision

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

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

Example

Example1: Get Papayawhip hsv values

> (define Papayawhip (color-rgb 255 239 213))
> (rgb->hsv (list 255 239 213))
(26. 42. 255)
Clone this wiki locally