diff options
| author | lukeflo | 2024-11-22 11:21:32 +0100 |
|---|---|---|
| committer | lukeflo | 2024-11-22 11:21:32 +0100 |
| commit | 2621a347a0e6f2a2e1b625ca26aad3a0cf8e58f5 (patch) | |
| tree | 51b58d427c930d37d4468e94f6b9fd120da1f45b /src/main.rs | |
| parent | c05fb327c70eed7dcbc0caccc745e168e6cba5fb (diff) | |
| download | bibiman-2621a347a0e6f2a2e1b625ca26aad3a0cf8e58f5.tar.gz bibiman-2621a347a0e6f2a2e1b625ca26aad3a0cf8e58f5.zip | |
filepath as OsString, new color sheme
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 8a78d62..95bf16a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,9 +27,11 @@ 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 MAIN_ENTRY_COLOR_INDEX: u8 = 36; +const MAIN_KEYWORD_COLOR_INDEX: u8 = 101; +const MAIN_INFO_COLOR_INDEX: u8 = 99; +const CONFIRM_COLOR_INDEX: u8 = 47; +const WARN_COLOR_INDEX: u8 = 124; const TEXT_HIGHLIGHT_COLOR_INDEX: u8 = 254; const TEXT_FG_COLOR_INDEX: u8 = 250; |
