2022-10-01 18:49:05 +00:00
|
|
|
use std::time::Duration;
|
2022-10-02 17:17:29 +00:00
|
|
|
use tui::style::Color;
|
2022-10-01 18:49:05 +00:00
|
|
|
|
|
|
|
pub const TICK_RATE: Duration = Duration::from_millis(250);
|
2022-10-02 17:17:29 +00:00
|
|
|
|
|
|
|
pub const HIGHLIGHT_COLOR: Color = Color::Green;
|