diff options
| author | lukeflo | 2024-11-11 22:13:32 +0100 |
|---|---|---|
| committer | lukeflo | 2024-11-14 09:35:45 +0100 |
| commit | 761ce14125f0e4ecffbfaf3bf82b4b406f5aa769 (patch) | |
| tree | f78f106d93bfb2466f1d7785b3080eb4b0e333d9 /src/main.rs | |
| parent | 45d85162e455db37f9263088a7703d614969b373 (diff) | |
| download | bibiman-761ce14125f0e4ecffbfaf3bf82b4b406f5aa769.tar.gz bibiman-761ce14125f0e4ecffbfaf3bf82b4b406f5aa769.zip | |
impl popup for keybindings/messages
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 7 |
1 files changed, 7 insertions, 0 deletions
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 |
