aboutsummaryrefslogtreecommitdiff
path: root/src/consts.rs
blob: 0b43f0af04147faaaa9bd8b4f1b4485e9cdaa7d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod colors {
    use sdl2::pixels::Color;
    pub const GRID_COLOR: Color = Color::RGB(64, 64, 64);
    pub const WHITE: Color = Color::RGB(255, 255, 255);
    pub const BLACK: Color = Color::RGB(0, 0, 0);
    pub const GREY: Color = Color::RGB(127, 127, 127);
    pub const CYAN: Color = Color::RGB(121, 255, 225);
    pub const PINK: Color = Color::RGB(255, 50, 153);
}

pub const FONT_PATH: &str = "./assets/NerdInput-Regular.ttf";
pub const STDLIB_PATH: &str = "./src/lisp/std.lisp";
pub const RC_PATH: &str = "/home/np/.config/sdl-tests";