Containers_pp.Term_color
Simple colors in terminals
type color = [
| `Black
| `Blue
| `Cyan
| `Green
| `Magenta
| `Red
| `White
| `Yellow
]
type style = [
| `BG of color
| `Bold
| `FG of color
| `Reset
| `Underline
val color : color -> t -> t
val style_l : style list -> t -> t