1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// <FILE>crates/mcu-scheme/src/lib.rs</FILE> - <DESC>Color scheme variants</DESC>
// <VERS>VERSION: 2.0.0</VERS>
// <WCTX>Pre-built color scheme variants</WCTX>
// <CLOG>Implement all 9 scheme wrappers with DynamicScheme integration</CLOG>
//! # MCU Scheme
//!
//! Pre-built color scheme variants for Material Design 3.
//!
//! Each scheme wraps `DynamicScheme` with a specific `Variant`:
//! - [`SchemeMonochrome`]: Grayscale palette for minimalist designs
//! - [`SchemeNeutral`]: Low chroma, subtle colors for professional designs
//! - [`SchemeTonalSpot`]: Balanced, versatile (default for Material Design 3)
//! - [`SchemeVibrant`]: High chroma, bold colors for energetic designs
//! - [`SchemeExpressive`]: Playful with hue shifts for artistic designs
//! - [`SchemeFidelity`]: True to source color for accurate color representation
//! - [`SchemeContent`]: Content-aware colors for image-derived themes
//! - [`SchemeRainbow`]: High chroma with tertiary shift for playful designs
//! - [`SchemeFruitSalad`]: Playful hue variations for fun designs
//!
//! ## Example
//!
//! ```
//! use mcu_scheme::SchemeTonalSpot;
//! use mcu_hct::Hct;
//!
//! // Create a tonal spot scheme from a blue source color
//! let source = Hct::from_int(0xFF0000FF);
//! let scheme = SchemeTonalSpot::new(source, false, 0.0);
//!
//! // Access underlying DynamicScheme through Deref
//! assert!(!scheme.is_dark);
//! let _primary = &scheme.primary_palette;
//! ```
pub use SchemeContent;
pub use SchemeExpressive;
pub use SchemeFidelity;
pub use SchemeFruitSalad;
pub use SchemeMonochrome;
pub use SchemeNeutral;
pub use SchemeRainbow;
pub use SchemeTonalSpot;
pub use SchemeVibrant;
// Re-export commonly used types from mcu-dynamiccolor for convenience
pub use ;
// <FILE>crates/mcu-scheme/src/lib.rs</FILE> - <DESC>Color scheme variants</DESC>
// <VERS>END OF VERSION: 2.0.0</VERS>