ui/richtext/RichTextLob.cs

A small UI rich text component class. It declares a RichTextPanel attribute matching the word "lob", "lobb" or "lobbing" (case-insensitive) and sets the panel's Color property to white.

[RichTextPanel( @"\b[Ll]ob(bed|bing)?\b" )]
public class RichTextLob : RichTextBase
{
	public override Color Color => new Color(1f);
}