acgtk.utilsLib
UtilsLib.Style
acgtk.acgData
acgtk.containers
acgtk.datalogLib
acgtk.dump
acgtk.grammars
acgtk.logic
acgtk.magicRewriting
acgtk.scripting
acgtk.svg
acgtk.svg_cairo
acgtk.svg_dummy
type basic_color =
| Black
| Red
| Green
| Yellow
| Blue
| Magenta
| Cyan
| White
type intensity =
| Standard
| High
type color =
| Code of intensity * basic_color
| RGB of int * int * int
type style =
| No
| Bold
| Faint
| Italic
| Underline
| FG of color
| BG of color
type style_tag =
| Open of style
| Close of style
module type SemTagSig = sig ... end
module type SemTagHandlerSig = sig ... end
module Make_Handler (S : SemTagSig) : SemTagHandlerSig with type semtag = S.tag
module type ActualRendererSig = sig ... end