Module Hxd.Fmt

type standard = [
| `Black
| `Red
| `Green
| `Yellow
| `Blue
| `Magenta
| `Cyan
| `White
]
type bright = [
| `Bright of standard
]
type bit8 = [
| `bit8 of int * int * int
]
type bit24 = [
| `bit24 of int * int * int
]
type grayscale = [
| `Grayscale of int
]
type style = [
| `None
| `Style of [ `Fg | `Bg ] * [ standard | bright | bit8 | bit24 | grayscale ]
]
val set_style_renderer : Stdlib.Format.formatter -> [ `Ansi | `None ] -> unit

set_style_renderer ppf mode sets the style renderer of ppf to mode.