wallust_themes 1.1.0

Embeded colorschemes in an array of u32s.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// number of files in colorschemes/
pub const LEN: usize = include!(concat!(env!("OUT_DIR"), "/len.rs"));

/// theme names
pub const COLS_KEY: [&str; LEN] = include!(concat!(env!("OUT_DIR"), "/col.rs"));

/// This is colors from 0 to 15 (16 colors), background, foreground and cursor
//type Colors = [[u8; 3]; 19];
type Colors = [u32; 19];

/// theme values, in Colors
pub const COLS_VALUE: [Colors; LEN] = include!(concat!(env!("OUT_DIR"), "/value.rs"));