I heard <HSL color space> is easier to reason abou...
# compose
Some say L*a*b* is even better. And there are some mentions of it on the ColorSpace page.
k
The available color spaces in Compose are at https://developer.android.com/reference/kotlin/androidx/compose/ui/graphics/colorspace/ColorSpaces. HSL itself is not a color space, much like RGB is not. HSL is a transformation of RGB within a specific color space. It is indeed easier to reason about and provides a more "natural" way to do color transformations and transitions.
👍 1
d
Thanks for corrections and links, Kirill! I had no idea about the distinction between color models and spaces.