Comment on Tailwind color palette generatorparentComments−parkersweb2yLikewise - in design systems like Shopify’s Polaris the tints across the entire color range have perceptual uniformity using something like HSLuv.I’d love to find a color tool that generate tints along the same lines given an set of initial starting colors.Does colorjs allow you to do that do you know?−danielvaughn2yThat sounds plausible, yeah. The Color object is space-agnostic, so you can take any set of colors and interpolate their lightness/luminosity/value using any color space you prefer.So something like this: Color('#123').lch[0] *= 1.2
Comments
Likewise - in design systems like Shopify’s Polaris the tints across the entire color range have perceptual uniformity using something like HSLuv.
I’d love to find a color tool that generate tints along the same lines given an set of initial starting colors.
Does colorjs allow you to do that do you know?
That sounds plausible, yeah. The Color object is space-agnostic, so you can take any set of colors and interpolate their lightness/luminosity/value using any color space you prefer.
So something like this: