color-lib 0.1.0

A library for implementing colors and converting between different representations. Includes a library easy access default colors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

mod definitions;

pub mod colors;
pub mod maps;
pub mod utils;

pub use definitions::{
    Color, ColorHSIA, ColorHSLA, ColorHSVA, ColorMap, ColorND, ColorRGBA, ColorType,
};