chore: change default to green
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-06-01 12:28:42 +02:00
parent be28b4ff80
commit 710fb431f7
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -4,7 +4,6 @@ use ratatui::prelude::*;
const GREEN: Color = Color::Rgb(127, 255, 0);
const ORANGE: Color = Color::Rgb(255, 165, 0);
const PURPLE: Color = Color::Rgb(138, 43, 226);
pub trait Summarize {
fn heading(&self) -> Vec<Span>;
@ -22,7 +21,7 @@ impl Summarize for MovementGraphItem {
vec![
name,
Span::from(" ~ ").fg(PURPLE),
Span::from(" ~ ").fg(GREEN),
Span::from(format!("(items: {})", items)).fg(Color::DarkGray),
]
}