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
use super::define_css_token_enum;

define_css_token_enum! {
    /// Font weight tokens from the active theme (`--orb-type-weight-*`).
    pub enum FontWeight {
        Regular => "--orb-type-weight-regular",
        Semibold => "--orb-type-weight-semibold",
        Bold => "--orb-type-weight-bold",
    }
}