@fantasy-color/hcl-to-lab
v2.1.0
Published
Transform HCL objects to LAB objects
Keywords
Readme
@fantasy-color/hcl-to-lab
Transform a HCL color object to a LAB color object.
type hclToLab = (color: HCL) => LABExample usage:
import hclToLab from '@fantasy-color/hcl-to-lab'
hclToLab({
hue: 40.85261277607024,
chroma: 106.83899941284552,
luminance: 54.29173376861782
})
// { luminance: 54.29173376861782, a: 80.8124553179771, b: 69.88504032350531 }