colr 0.3.1

A general purpose, extensible color type unifying color models and their operations at the type level.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Color operations including conversions, adaptation, encoding and decoding, and swizzling.

mod adapt;
mod add;
mod blend;
mod clamp;
mod decode;
mod delta;
mod encode;
mod from;
mod lerp;
mod multiply;
mod quantize;
mod screen;
mod subtract;
mod swizzle;
mod tonemap;