Skip to main content

orbital_base_components/tokens/
line_height.rs

1use super::define_css_token_enum;
2
3define_css_token_enum! {
4    /// Line height tokens from the active theme (`--orb-type-line-*`).
5    pub enum LineHeight {
6        Base200 => "--orb-type-line-sm",
7        Base300 => "--orb-type-line-md",
8        Base400 => "--orb-type-line-lg",
9        Base500 => "--orb-type-line-xl",
10    }
11}