ui/richtext/RichTextFree.cs

A small UI RichText panel class with a regex attribute. It declares RichTextFree derived from RichTextBase and sets its Color property to white.

[RichTextPanel( @"\b[Ff]ree\b" )]
public class RichTextFree : RichTextBase
{
	public override Color Color => new Color( 1f, 1f, 1f );
}