package hxd

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type standard = [
  1. | `Black
  2. | `Red
  3. | `Green
  4. | `Yellow
  5. | `Blue
  6. | `Magenta
  7. | `Cyan
  8. | `White
]
type bright = [
  1. | `Bright of standard
]
type bit8 = [
  1. | `bit8 of int * int * int
]
type bit24 = [
  1. | `bit24 of int * int * int
]
type grayscale = [
  1. | `Grayscale of int
]
type style = [
  1. | `None
  2. | `Style of [ `Fg | `Bg ] * [ standard | bright | bit8 | bit24 | grayscale ]
]
val set_style_renderer : Format.formatter -> [ `Ansi | `None ] -> unit

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