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