blinc_theme 0.5.1

Theming system for Blinc UI framework - colors, typography, and design tokens
Documentation
//! Design tokens for theming
//!
//! Tokens are the atomic values that make up a design system:
//! - Colors
//! - Typography (fonts, sizes, weights)
//! - Spacing (margins, padding)
//! - Border radii
//! - Shadows
//! - Animation durations and easings

mod animation;
mod color;
mod radius;
mod shadow;
mod spacing;
mod typography;

pub use animation::*;
pub use color::*;
pub use radius::*;
pub use shadow::*;
pub use spacing::*;
pub use typography::*;