From 359941c0943ec8563355b15ed0607c34b2f3b3b9 Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Tue, 16 Jun 2026 11:27:45 +0200 Subject: [PATCH] scene: conversation: recolor the computer lines I guess --- src/scene/conversation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scene/conversation.rs b/src/scene/conversation.rs index ea442fe..9bf1a0b 100644 --- a/src/scene/conversation.rs +++ b/src/scene/conversation.rs @@ -26,7 +26,7 @@ impl ConversationEntry { match self { ConversationEntry::Eva(_) => Style::new().fg(style::Color::Cyan), ConversationEntry::User(_) => Style::new().fg(style::Color::Magenta), - ConversationEntry::ShipComputer(_) => Style::new().fg(style::Color::Green), + ConversationEntry::ShipComputer(_) => Style::new().fg(style::Color::Red), ConversationEntry::StageDirection(_) => Style::new().fg(style::Color::Yellow), ConversationEntry::SystemMessage(_) => Style::new().fg(style::Color::DarkGray), }