Module Color.Rgba

RGBA color type with integer components (0-255) and float alpha (0.0-1.0).

type t = {
  1. r : int;
  2. g : int;
  3. b : int;
  4. a : float;
}