Files
tbd-station-14/Content.Client/Utility/ChatHelper.cs
2021-05-10 19:49:12 +02:00

20 lines
551 B
C#

using Content.Shared.Chat;
using Robust.Shared.Maths;
namespace Content.Client.Utility
{
public class ChatHelper
{
public static Color ChatColor(ChatChannel channel) =>
channel switch
{
ChatChannel.Server => Color.Orange,
ChatChannel.Radio => Color.Green,
ChatChannel.OOC => Color.LightSkyBlue,
ChatChannel.Dead => Color.MediumPurple,
ChatChannel.AdminChat => Color.Red,
_ => Color.DarkGray
};
}
}