A small UI RichText panel class that matches the phrase "Evil chest?" (case variations). It defines the text color and optional stroke width and stroke color for that matched rich text token.
[RichTextPanel( @"\b[Ee]vil chest?\b" )]
public class RichTextEvilChest : RichTextBase
{
public override Color Color => new Color( 0.75f, 0f, 0f );
public override float? TextStrokeWidth => 2f;
public override Color? TextStrokeColor => Color.Black;// new Color( 1f, 0.5f, 0.5f );
}