1.0.1 • Published 5 years ago
@fantasy-color/rgb-to-hcl v1.0.1
@fantasy-color/rgb-to-hcl
Transform a RGB color object to a HCL color object.
type rgbToHcl = (color: RGB) => HCLExample usage:
import rgbToHcl from '@fantasy-color/rgb-to-hcl'
rgbToHcl({
red: 60,
green: 32,
blue: 23
})
// { hue: 42.99820879411349, chroma: 17.893501433259868, luminance: 15.966897718378611 }