Functor Color.HSY

module HSY: 
functor (* : sig
end) -> HSYS 
Parameters:
* : sig val red: float val green: float val blue: float end

type t = {
   hue : float;
   saturation : float;
   intensity : float;
}
val is_valid : t -> bool
val make : hue:float -> saturation:float -> intensity:float -> t
val of_rgb : Color.rgb_t -> t
val to_rgb : t -> Color.rgb_t