Module Svg.Attrs

module Attrs: sig .. end

Attributes

additional attributes

val stroke_dasharray : Svg.css_attr
val stroke_dashoffset : Svg.css_attr

fill-rules

val fill_rule : Svg.css_attr
val evenodd : string
val nonzero : string

font-family attributes:

val sans_serif : string
val serif : string
val monospace : string

possible values for "font-style":

val normal : string
val italic : string
val oblique : string

stroke-linecap and stroke-linejoin

val stroke_linecap : Svg.css_attr
val butt : string
val round : string
val square : string
val stroke_linejoin : Svg.css_attr
val miter : string
val round : string
val bevel : string

colors

val hsl : int * int * int -> string

hsl(hue, saturation, lightness), max-values:(360, 100, 100)

val rgb : int * int * int -> string

rgb(red, green, blue), max-values:(255, 255, 255)