material_color_utilities/lib.rs
1//! # Material Color Utilities
2//!
3//! Algorithms and utilities that power the Material Design 3 (M3) color system,
4//! including choosing theme colors from images and creating tones of colors;
5//! all in a new color space.
6//!
7//! See the shared repository
8//! [deminearchiver/material-color-utilities](https://github.com/deminearchiver/material-color-utilities)
9//! for additional information.
10
11pub mod blend;
12pub mod contrast;
13pub mod dislike_analyzer;
14pub mod dynamiccolor;
15pub mod hct;
16pub mod palettes;
17// pub mod quantize;
18pub mod score;
19pub mod temperature_cache;
20pub mod utils;