Functor Color.SRGB_Int

module SRGB_Int: 
functor (* : sig
end) -> SRGB_IntS 
Parameters:
* : sig val max_int: int end

type t = {
   red : int;
   green : int;
   blue : int;
}
val is_valid : t -> bool
val make : red:int -> green:int -> blue:int -> t
val black : t
val white : t
val of_srgb : Color.srgb_t -> t
val to_srgb : t -> Color.srgb_t
val of_rgb : Color.rgb_t -> t
val to_rgb : t -> Color.rgb_t