Module Color.Rgba'

RGBA color type with float components (0.0-1.0).

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