Returns a new color that matches this color with the blue channel replaced with b.
Color withBlue(int b) { return new Color.fromARGB(alpha, red, green, b); }