package colors

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type ansi = [
  1. | `ansi of int
]
type rgb = [
  1. | `rgb of int * int * int
]
type lrgb = [
  1. | `lrgb of float * float * float
]
type xyz = [
  1. | `xyz of float * float * float
]
type luv = [
  1. | `luv of float * float * float
]
type uv = [
  1. | `uv of float * float
]
type color = [
  1. | ansi
  2. | rgb
  3. | xyz
  4. | luv
  5. | uv
]
val pp : Format.formatter -> color -> unit
module ANSI : sig ... end
module White_reference : sig ... end
module Linear_RGB : sig ... end
module XYZ : sig ... end
module LUV : sig ... end
module RGB : sig ... end