Creates an opaque color from red, green, and blue components.
const Color(int r, int g, int b) : argb = (255 << 24) | ((r & 0xFF) << 16) | ((g & 0xFF) << 8) | (b & 0xFF);