Module RGB8.Color

Operations on colors.

type t = int * int * int

An RGB8 color (values of components should be between 0 and 255).

val of_int : int -> t

Decode a color stored as RGB.

val to_int : t -> int