//! Print the switchable sheet: every shipped theme keyed by `data-theme`. //! //! `cargo run --example all_themes_sheet | head -40` is the quickest look at //! what a consumer links, and `| wc -c` is what it costs them. fn main() { let dirs = vec![( makeover::bundled_themes_dir().expect("run me from a checkout"), false, )]; let defaults = makeover::ThemeDefaults::new("goingson", "catppuccin-mocha").high_contrast("high-contrast"); print!("{}", makeover::all_themes_css(&dirs, &defaults)); }