Color.Rgba
RGBA color type with integer components (0-255) and float alpha (0.0-1.0).
type t = {
r : int;
g : int;
b : int;
a : float;
}