A RichText panel class used by the UI system to style matched text that says "magnet" or "magnetize". It sets the text color and shadow appearance for that token.
[RichTextPanel( @"\b[Mm]agnet(?:ize)?\b" )]
public class RichTextMagnet : RichTextBase
{
public override Color Color => Color.White;
public override Color? TextShadowColor => new Color( 0.5f, 0.5f, 1f, 0.5f );
public override float? TextShadowBlur => 3f;
public override float? TextShadowOffsetY => -3f;
}