static int getColorRgb(int red, int green, int blue, [int a = 255]) => (red << 16) + (green << 8) + blue + (a << 24);