Returns a new ARGB integer with the updated green value (0-255).
int withGreen(int g) => (this & 0xFFFF00FF) | ((g & 0xFF) << 8);