Module Ansi_kernel.Attr

type t = [
  1. | `Bright
  2. | `Dim
  3. | `Underscore
  4. | `Reverse
  5. | Color.t
  6. | `Bg of Color.t
]

Styling attributes: these provide most of the ANSI display attributes, but not directly `Reset, `Blink and `Hidden, so as to explicitly discourage their use in general code.

val sexp_of_t : t -> Sexplib0.Sexp.t
val compare : t -> t -> int
val compare__local : t @ local -> (t @ local -> int) @ local
include Ppx_hash_lib.Hashable.S_any with type t := t
val hash_fold_t : t Ppx_hash_lib.hash_fold
val equal : t -> t -> bool
val equal__local : t @ local -> (t @ local -> bool) @ local
val to_int_list : [< t ] -> int list
val list_to_string : [< t ] list -> string