webfluent 0.4.0-alpha

The Web-First Language — compiles to HTML, CSS, JavaScript, and PDF. 50+ built-in components, reactivity, routing, i18n, SSG, and template engine.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Design system — theme tokens and component CSS.
//!
//! - [`get_theme_tokens`] — returns CSS custom properties for a given theme name
//! - [`component_css`] — returns all component-level CSS rules

pub mod tokens;
pub mod components;

pub use tokens::get_theme_tokens;
pub use components::component_css;