feat: a working run menu

This commit is contained in:
2024-05-21 20:51:34 +02:00
parent 8c6ae8f237
commit 926ea5ec3a
6 changed files with 314 additions and 4 deletions

12
src/config.rs Normal file
View File

@@ -0,0 +1,12 @@
pub const MAX_ITEM_DISPLAY_COUNT: u16 = 10;
pub const PADDING: u16 = 8;
pub const LINE_SPACING: u16 = 2;
pub const FONT_POINT_SIZE: u16 = 16;
pub const FONT_NAME: &str = "GeistMono Nerd Font";
pub const FONT_COLOR: &str = "#cdd6f4";
pub const FONT_COLOR_SELECTED: &str = "#1e1e2e";
pub const BACKGROUND_COLOR: &str = "#1e1e2e";
pub const BACKGROUND_COLOR_SELECTED: &str = "#89b4fa";