package color-brewery

  1. Overview
  2. Docs

Source file palette_t.ml

1
2
3
4
5
6
7
8
9
10
11
12
type ty = [`Seq | `Div | `Qual]
type yes_no_maybe = [`Yes | `No | `Maybe]

(* Single Palette *)
type t = { length: int;
           rgb: Gg.color array;
           cmyk: Gg.v4 array;
           ty: ty;
           blind: yes_no_maybe;
           print: yes_no_maybe;
           copy: yes_no_maybe;
           screen: yes_no_maybe }
OCaml

Innovation. Community. Security.