A small UI rich-text component class annotated for RichText parsing. It matches bolded words 'Remove' or 'Removes' and sets the display color to a reddish tint.
[RichTextPanel( @"\b[Rr]emove?\b" )]
public class RichTextRemove : RichTextBase
{
public override Color Color => new Color( 0.9f, 0.35f, 0.35f );
}