Module Draw.Style

Styling information

type colour =
| Black
| Red
| Green
| Yellow
| Blue
| Magenta
| Cyan
| White
val sexp_of_colour : colour -> Sexplib0.Sexp.t
val compare_colour : colour -> colour -> Base.int
type t = {
bold : Base.bool;
fg : colour;
bg : colour;
}

foreground/backgound colours and weight (bold)

val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare
val default : t

white on black, normal weight