aboutsummaryrefslogtreecommitdiff
path: root/src/consts.rs
blob: 52ab58040eb8bdc0ad996c659ddea84448f8f930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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: &'static str = "./assets/NerdInput-Regular.ttf";
pub const STDLIB_PATH: &'static str = "./src/lisp/std.lisp";