runmat_plot/styling/mod.rs
1//! Modern styling and theming system for RunMat plots
2//!
3//! Provides professional themes, typography, and layout systems that integrate
4//! seamlessly with RunMat's configuration system.
5
6pub mod config;
7pub mod theme;
8
9pub use config::{validate_theme_config, PlotThemeConfig, ThemeVariant};
10pub use theme::{Layout, ModernDarkTheme, Typography};