module Color: sig .. end
sig
end
Operations on colors.
type t = int * int * int
int * int * int
An RGB8 color (values of components should be between 0 and 255).
val of_int : int -> t
int -> t
Decode a color stored as RGB.