module RGB:sig..end
RGB colors
typet =int * int * int
red, green and blue values are integers in the range 0..255
include Rgb_names
val grey : t
val pale_grey : t
val dark_grey : tval label_color : t
val set_text_color : t -> unitOverrides the Theme TEXT_COLOR variable.
val find_color : string -> tConvert a string of the form "grey" or "#FE01BC" to a rgb code
(r,g,b). Color names are taken from
here.
val pale : t -> t