wallust_themes/lib.rs
1/// number of files in colorschemes/
2pub const LEN: usize = include!(concat!(env!("OUT_DIR"), "/len.rs"));
3
4/// theme names
5pub const COLS_KEY: [&str; LEN] = include!(concat!(env!("OUT_DIR"), "/col.rs"));
6
7/// This is colors from 0 to 15 (16 colors), background, foreground and cursor
8//type Colors = [[u8; 3]; 19];
9type Colors = [u32; 19];
10
11/// theme values, in Colors
12pub const COLS_VALUE: [Colors; LEN] = include!(concat!(env!("OUT_DIR"), "/value.rs"));