So I'm trying to make a color gradient, from a color to completely black, as well as from a color to completely white.
So say I have (175, 250, 255)
and I want to darken that color exactly 10 times to end at (0, 0, 0)
, how could I do this?
I'd also like to brighten the color, so I'd like to brighten it exactly 10 times and end at (255, 255, 255)
.