Module Color.Hsva

HSVA color type (Hue, Saturation, Value, Alpha).

type t = {
  1. h : float;
  2. s : float;
  3. v : float;
  4. a : float;
}