The definition of all graphics style properties.
If you want to make a theme, just define a new [StyleContext
].
```rust
fn testtheme() { let mut resolver = StyleResolver::default(); let mytheme = StyleContext { pointsize: Some(2.0), ..Default::default() }; resolver.setthemestyle(mytheme); } ```
If you want to extend style directives, you just need to implement [GraphicsStyle
].