Returns a new ARGB integer with the updated blue value (0-255).
int withBlue(int b) => (this & 0xFFFFFF00) | (b & 0xFF);