Module Gprinttyp.Decoration
Node and decoration types
type color =
| Named of string
| HSL of {
h : float;
s : float;
l : float;
}
val hsl : h:float -> s:float -> l:float -> color
type style =
| Filled of color option
| Dotted
| Dash
type shape =
| Ellipse
| Circle
| Diamond
type property =
| Color of color
| Font_color of color
| Style of style
| Label of string list
| Shape of shape