pub trait BackendStyle { type ColorType: Color; // Required method fn as_color(&self) -> &Self::ColorType; }
The style data for the backend drawing API
The underlying type reprsents the color for this style
Convert the style into the underlying color