beet_design 0.0.8

Design system and components for beet rsx
1
2
3
4
5
6
7
8
9
10
11
12
//! Color is a deceptively complex topic.
//!
//! ## Definitions:
//!
//! - Theme: The set of all colors used in the application.
//! - Scheme: A subset of the theme with a specific purpose. ie `light`, `dark`.
//!
//!
mod color_scheme;
mod theme_to_css;
pub use color_scheme::*;
pub use theme_to_css::*;