ui/richtext/RichTextChat.cs

A small UI component class for chat rich text. It declares a RichTextPanel attribute filtering for the word "chat" and overrides a Color property to return White.

[RichTextPanel( @"\b[Cc]hat\b" )]
public class RichTextChat : RichTextBase
{
	public override Color Color => Color.White;
}