orbital-base-components 0.1.1

Headless base primitives for Orbital — structure, semantics, and accessibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::define_css_token_enum;

define_css_token_enum! {
    /// Font family tokens from the active theme (`--orb-type-family-*`).
    pub enum FontFamily {
        Base => "--orb-type-family-sans",
        Monospace => "--orb-type-family-mono",
        Numeric => "--orb-type-family-numeric",
        Display => "--orb-type-family-display",
    }
}