wallflow 0.5.2

Elegant wallpaper management with smooth transitions, powered by awww
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Color extraction using k-means clustering
//!
//! This module extracts dominant colors from images and generates
//! terminal-compatible color schemes.

mod extractor;
mod scheme;

pub use extractor::{ColorExtractor, ExtractionOptions};
#[allow(unused_imports)]
pub use scheme::{ColorScheme, Rgb};