From 761ce14125f0e4ecffbfaf3bf82b4b406f5aa769 Mon Sep 17 00:00:00 2001 From: lukeflo Date: Mon, 11 Nov 2024 22:13:32 +0100 Subject: impl popup for keybindings/messages --- src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index c2c5121..8a78d62 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,6 +26,13 @@ pub mod cliargs; pub mod errorsetup; pub mod tui; +// Color indices +const MAIN_BLUE_COLOR_INDEX: u8 = 75; +const MAIN_PURPLE_COLOR_INDEX: u8 = 135; +const MAIN_GREEN_COLOR_INDEX: u8 = 29; +const TEXT_HIGHLIGHT_COLOR_INDEX: u8 = 254; +const TEXT_FG_COLOR_INDEX: u8 = 250; + #[tokio::main] async fn main() -> Result<()> { // Parse CLI arguments -- cgit v1.2.3