Returns a new color that matches this color with the red channel replaced with r (which ranges from 0 to 255).
r
Out of range values will have unexpected effects.
Color withRed(int r) { return new Color.fromARGB(alpha, r, green, blue); }