@fantasy-color/rgb-to-hsv
v2.1.0
Published
Transform RGB objects to HSV objects
Downloads
19
Keywords
Readme
@fantasy-color/rgb-to-hsv
Transform a RGB
color object to a HSV
color object.
type rgbToHsv = (color: RGB) => HSV
Example usage:
import rgbToHsv from '@fantasy-color/rgb-to-hsv'
rgbToHsv({
red: 60,
green: 32,
blue: 23
})
// { hue: 15, saturation: 62, value: 24 }