A small RichText panel class that matches the word 'crit' or 'Crit' and sets the text color to white.
[RichTextPanel( @"\b[Cc]rit?\b" )] public class RichTextCrit : RichTextBase { public override Color Color => new Color( 1f, 1f, 1f ); }