diff options
| author | lukeflo | 2025-07-04 14:41:47 +0200 |
|---|---|---|
| committer | lukeflo | 2025-07-04 14:41:47 +0200 |
| commit | 5ebecf2ea9d0fb9c57b264d7cd1c6e92b36d30e8 (patch) | |
| tree | fdccdd4ecded35feb3ca6bb441bb3d4581175f07 /src/config.rs | |
| parent | 2594cf34dcf2f04f398dab7b6ecae364eb4c7d17 (diff) | |
| download | bibiman-5ebecf2ea9d0fb9c57b264d7cd1c6e92b36d30e8.tar.gz bibiman-5ebecf2ea9d0fb9c57b264d7cd1c6e92b36d30e8.zip | |
`PopupItem::Citekey` impl
Diffstat (limited to 'src/config.rs')
| -rw-r--r-- | src/config.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs index 278f4b1..1f6c619 100644 --- a/src/config.rs +++ b/src/config.rs @@ -81,6 +81,7 @@ const DEFAULT_CONFIG: &str = r##" # confirm_color = "47" # warn_color = "124" # bar_bg_color = "234" +# popup_fg_color = "43" # popup_bg_color = "234" # selected_row_bg_color = "237" # note_color = "123" @@ -125,6 +126,7 @@ pub struct Colors { pub confirm_color: Color, pub warn_color: Color, pub bar_bg_color: Color, + pub popup_fg_color: Color, pub popup_bg_color: Color, pub selected_row_bg_color: Color, pub note_color: Color, @@ -211,6 +213,7 @@ impl BibiConfig { confirm_color: Color::Indexed(47), warn_color: Color::Indexed(124), bar_bg_color: Color::Indexed(235), + popup_fg_color: Color::Indexed(43), popup_bg_color: Color::Indexed(234), selected_row_bg_color: Color::Indexed(237), note_color: Color::Indexed(123), @@ -231,6 +234,7 @@ impl BibiConfig { keyword_color: Color::Indexed(58), info_color: Color::Indexed(57), bar_bg_color: Color::Indexed(144), + popup_fg_color: Color::Indexed(43), popup_bg_color: Color::Indexed(187), confirm_color: Color::Indexed(22), warn_color: Color::Indexed(124), |
