1use wireman_theme::{Config, Theme}; 2 3fn main() { 4 let file = String::from("assets/default.toml"); 5 Theme::init(&Config::new(Some(file))); 6 7 let theme = Theme::global(); 8 println!("Theme: {:?}", theme.base); 9}