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
].
```rust use graphics_style::{GraphicsStyle, RGBA, StyleContext}; pub struct CustomLineStyle { pub width: f32, pub color: RGBA, }
impl GraphicsStyle for CustomLineStyle { fn drawstyle(&self, state: &mut StyleContext) { state.linewidth = Some(self.width); state.line_color = Some(self.color); } } ```