Returns a new color where the blue channel of color has been replaced by value.
color
value
int setBlue(int color, int value) => (color & 0xff00ffff) | (clamp255(value) << 16);