From d10bb563c73df6f8ed89bea72ccb41457033b42c Mon Sep 17 00:00:00 2001 From: Pancake Date: Fri, 14 Jan 2022 04:28:09 -0800 Subject: [PATCH] Change OOC color back. (#6150) --- Content.Client/Chat/ChatHelper.cs | 4 ++-- Content.Client/Chat/UI/ChatBox.xaml.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Client/Chat/ChatHelper.cs b/Content.Client/Chat/ChatHelper.cs index 159bf4efc4..03664d76d0 100644 --- a/Content.Client/Chat/ChatHelper.cs +++ b/Content.Client/Chat/ChatHelper.cs @@ -10,8 +10,8 @@ namespace Content.Client.Chat { ChatChannel.Server => Color.Orange, ChatChannel.Radio => Color.LimeGreen, - ChatChannel.LOOC => Color.LightSkyBlue, - ChatChannel.OOC => Color.RoyalBlue, + ChatChannel.LOOC => Color.MediumTurquoise, + ChatChannel.OOC => Color.LightSkyBlue, ChatChannel.Dead => Color.MediumPurple, ChatChannel.Admin => Color.Red, ChatChannel.Whisper => Color.DarkGray, diff --git a/Content.Client/Chat/UI/ChatBox.xaml.cs b/Content.Client/Chat/UI/ChatBox.xaml.cs index 0ebf06757a..8496a7ac04 100644 --- a/Content.Client/Chat/UI/ChatBox.xaml.cs +++ b/Content.Client/Chat/UI/ChatBox.xaml.cs @@ -496,8 +496,8 @@ namespace Content.Client.Chat.UI return channel switch { ChatSelectChannel.Radio => Color.LimeGreen, - ChatSelectChannel.LOOC => Color.LightSkyBlue, - ChatSelectChannel.OOC => Color.RoyalBlue, + ChatSelectChannel.LOOC => Color.MediumTurquoise, + ChatSelectChannel.OOC => Color.LightSkyBlue, ChatSelectChannel.Dead => Color.MediumPurple, ChatSelectChannel.Admin => Color.Red, _ => Color.DarkGray