1
0

ChatChannelExtensions.cs 689 B

123456789101112131415161718192021
  1. namespace Content.Shared.Chat;
  2. public static class ChatChannelExtensions
  3. {
  4. public static Color TextColor(this ChatChannel channel)
  5. {
  6. return channel switch
  7. {
  8. ChatChannel.Server => Color.Orange,
  9. ChatChannel.Radio => Color.LimeGreen,
  10. ChatChannel.LOOC => Color.MediumTurquoise,
  11. ChatChannel.OOC => Color.LightSkyBlue,
  12. ChatChannel.Dead => Color.MediumPurple,
  13. ChatChannel.Admin => Color.Red,
  14. ChatChannel.AdminAlert => Color.Red,
  15. ChatChannel.AdminChat => Color.HotPink,
  16. ChatChannel.Whisper => Color.DarkGray,
  17. _ => Color.LightGray
  18. };
  19. }
  20. }