A small UI rich text panel type that matches words like "hurt" (case-insensitive) and sets a color for that text. It subclasses RichTextBase and overrides a Color property.
[RichTextPanel( @"\b[Hh]urt?\b" )]
public class RichTextHurt : RichTextBase
{
public override Color Color => new Color( 1f, 0.7f, 0.7f );
}