How can I take a Color, and dull it slightly? I wa...
# compose
z
How can I take a Color, and dull it slightly? I want to avoid easy route of just changing alpha because then I get unintended side effects from it
r
Define "dull"
You could convert it to HSL and lower the saturation or lightness
See the hsl() and hsv() methods