ui/richtext/RichTextMinute.cs

A small UI rich text component that highlights the word "Minute" (case-insensitive) in rich text. It declares a RichTextPanel attribute with a regex and sets the Color property to white.

[RichTextPanel( @"\b[Mm]inute\b" )]
public class RichTextMinute : RichTextBase
{
	public override Color Color => Color.White;
}