diff --git a/src/gamestate.rs b/src/gamestate.rs index 7015743..25e6d08 100644 --- a/src/gamestate.rs +++ b/src/gamestate.rs @@ -222,7 +222,7 @@ impl PlayerIdentifier { pub const fn color(&self) -> &str { match self { - PlayerIdentifier::P1 => "\x1b[38;2;0;0;255m", + PlayerIdentifier::P1 => "\x1b[38;2;0;140;247m", PlayerIdentifier::P2 => "\x1b[38;2;255;0;0m", } } @@ -470,6 +470,7 @@ impl Display for GameState { )?; write!(f, "──")?; } + write!(f, "╯")?; Ok(()) } }