Module Bonsai_tui_catppuccin

This library contains hard-coded constants for Catppuccin colors: https://github.com/catppuccin/catppuccin

type t =
  1. | Rosewater
  2. | Flamingo
  3. | Pink
  4. | Mauve
  5. | Red
  6. | Maroon
  7. | Peach
  8. | Yellow
  9. | Green
  10. | Teal
  11. | Sky
  12. | Sapphire
  13. | Blue
  14. | Lavender
  15. | Text
  16. | Subtext1
  17. | Subtext0
  18. | Overlay2
  19. | Overlay1
  20. | Overlay0
  21. | Surface2
  22. | Surface1
  23. | Surface0
  24. | Base
  25. | Mantle
  26. | Crust
include Sexplib0.Sexpable.S with type t := t
include Sexplib0.Sexpable.Of_sexp with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
include Sexplib0.Sexpable.Sexp_of with type t := t
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Equal.S with type t := t
include Ppx_enumerate_lib.Enumerable.S with type t := t
val all : t list
include Ppx_compare_lib.Comparable.S with type t := t
include Core.Comparable.S_plain with type t := t
include Base.Comparable.S with type t := t
include Base.Comparisons.S with type t := t
include Base.Comparisons.Infix with type t := t
val (>=) : t -> t -> bool
val (<=) : t -> t -> bool
val (=) : t -> t -> bool
val (>) : t -> t -> bool
val (<) : t -> t -> bool
val (<>) : t -> t -> bool
val equal : t -> t -> bool
val compare : t -> t -> int

compare t1 t2 returns 0 if t1 is equal to t2, a negative integer if t1 is less than t2, and a positive integer if t1 is greater than t2.

val min : t -> t -> t
val max : t -> t -> t
val ascending : t -> t -> int

ascending is identical to compare. descending x y = ascending y x. These are intended to be mnemonic when used like List.sort ~compare:ascending and List.sort ~cmp:descending, since they cause the list to be sorted in ascending or descending order, respectively.

val descending : t -> t -> int
val between : t -> low:t -> high:t -> bool

between t ~low ~high means low <= t <= high

val clamp_exn : t -> min:t -> max:t -> t

clamp_exn t ~min ~max returns t', the closest value to t such that between t' ~low:min ~high:max is true.

Raises if not (min <= max).

val clamp : t -> min:t -> max:t -> t Base.Or_error.t
include Base.Comparator.S with type t := t
type comparator_witness
val validate_lbound : min:t Core.Maybe_bound.t -> t Validate.check
val validate_ubound : max:t Core.Maybe_bound.t -> t Validate.check
val validate_bound : min:t Core.Maybe_bound.t -> max:t Core.Maybe_bound.t -> t Validate.check
module Flavor : sig ... end
val color : flavor:Flavor.t -> t -> Bonsai_term.Attr.Color.t

A version of set_flavor_within that is specialized for the common "application" type

module Rgb : sig ... end
val rgb : Flavor.t -> t -> Rgb.t