A RichText panel type for UI that matches the text "Not Moving" (case-insensitive) and applies styling. It sets the text color, a black text stroke color, and a stroke width of 4; commented lines show optional underline settings.
[RichTextPanel( @"\b[Nn]ot [Mm]oving\b" )]
public class RichTextNotMoving : RichTextBase
{
public override Color Color => new Color( 0.7f, 0.3f, 0.4f );
//public override bool Underline => true;
//public override Color? UnderlineColor => Color.Black;
public override Color? TextStrokeColor => Color.Black;
public override float? TextStrokeWidth => 4f;
}