11 releases

new 0.3.2 May 8, 2024
0.3.1 May 4, 2024
0.2.1 Mar 14, 2024
0.1.6 Feb 2, 2024
0.1.1 Dec 31, 2023

#112 in Images

Download history 17/week @ 2024-01-24 38/week @ 2024-01-31 3/week @ 2024-02-07 80/week @ 2024-02-14 293/week @ 2024-02-21 281/week @ 2024-02-28 228/week @ 2024-03-06 400/week @ 2024-03-13 295/week @ 2024-03-20 215/week @ 2024-03-27 182/week @ 2024-04-03 150/week @ 2024-04-10 158/week @ 2024-04-17 147/week @ 2024-04-24 464/week @ 2024-05-01

945 downloads per month
Used in 2 crates

Apache-2.0

275KB
6K SLoC

Material colors

A Rust library for generating Material You themes (as well as color schemes)

Most of the code was taken from the Swift version of material-color-utilities, as its code is the easiest to rewrite.

Examples

From HEX color:

use std::str::FromStr;
use material_colors::{color::Argb, theme::ThemeBuilder};

fn main() {
    let theme = ThemeBuilder::with_source(Argb::from_str("aae5a4").unwrap()).build();

    // Do whatever you want...
}

From image:

⚠️ Before obtaining an array of ARGB pixels for the image, it is recommended (but not necessary if your image is already small in size or you just don't mind about execution time) to adjust its dimensions to 128x128 (by resize function from image crate, for example). The reason is described here.

use material_colors::{
    image::{FilterType, ImageReader},
    theme::ThemeBuilder,
};

#[tokio::main]
async fn main() -> Result<(), reqwest::Error> {
    let image = reqwest::get("https://picsum.photos/id/866/1920/1080")
        .await?
        .bytes()
        .await?
        .to_vec();

    let mut data = ImageReader::read(image).expect("failed to read image");

    // Lancsoz3 takes a little longer, but provides the best pixels for color extraction.
    // However, if you don't like the results, you can always try other FilterType values.
    data.resize(128, 128, FilterType::Lanczos3);

    let theme = ThemeBuilder::with_source(ImageReader::extract_color(&data)).build();

    // Do whatever you want...

    Ok(())
}

Dependencies

~1.4–4.5MB
~39K SLoC