themed-styler 0.2.1

Client-side runtime styling engine for web and React 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(),
        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(),
    }
}