themed-styler 1.2.8

Client-side runtime styling engine for web and Android/iOS Native with theme support and Tailwind subset
Documentation
use crate::{State};
use indexmap::{IndexMap, IndexSet};

/// Return an empty default State. Themes are loaded from the client.
pub fn bundled_state() -> State {
    State {
        themes: IndexMap::new(),
        default_theme: String::new(),
        current_theme: String::new(),
            display_density: 1.0,
            scaled_density: 1.0,
        theme_variables: IndexMap::new(),
        variables: IndexMap::new(),
        breakpoints: IndexMap::new(),
        used_selectors: IndexSet::new(),
        used_classes: IndexSet::new(),
        used_tags: IndexSet::new(),
        used_tag_classes: IndexSet::new(),
    }
}