#palette #color #color-palette

archived colourado

A small and minimalistic library to generate a random color palette

3 unstable releases

0.2.0 Jan 26, 2019
0.1.1 Jan 25, 2019
0.1.0 Jan 25, 2019
Download history 39/week @ 2023-10-19 42/week @ 2023-10-26 38/week @ 2023-11-02 190/week @ 2023-11-09 290/week @ 2023-11-16 422/week @ 2023-11-23 281/week @ 2023-11-30 520/week @ 2023-12-07 348/week @ 2023-12-14 136/week @ 2023-12-21 171/week @ 2023-12-28 244/week @ 2024-01-04 236/week @ 2024-01-11 209/week @ 2024-01-18 194/week @ 2024-01-25 38/week @ 2024-02-01

725 downloads per month
Used in 2 crates

MIT license

10KB
163 lines

Colourado

A small and minimalistic library to generate a random color palette.
The user-facing Color struct contains RGB colors ranging from 0 to 1.
All colors are of type f32 (no exceptions).

Usage

use colourado::{Color, ColorPalette, PaletteType};

let palette = ColorPalette::new(4, PaletteType::Random, false);
let random_color = palette.colors[0].red;
let color_array: [f32; 3] = palette.colors[1].to_array();
let hue = 315.0;
let saturation = 0.5;
let value = 0.3;
let rgb_color: Color = Color::hsv_to_rgb(hue, saturation, value);

Example

A color palette might look like this when rendered:

Example image

Test the color palettes for yourself by running
cargo run --example preview TYPE NUM adjacent|spread
TYPE can be one of random, pastel, or dark NUM is the amount of colors to generate and display adjacent or spread determine whether the colors are generated close to each other or spread apart.

Dependencies

~530–750KB