A RichText panel class for in-game UI that matches the regex 'Level-down' and defines text color and shadow styling. It sets a purple-ish main color and shadow color plus blur and vertical offset.
[RichTextPanel( @"\b[Ll]evel-[Dd]own\b" )]
public class RichTextLeveldown : RichTextBase
{
public override Color Color => new Color( 0.6f, 0f, 0.7f ).Saturate( 0.7f );
public override Color? TextShadowColor => new Color( 0.6f, 0f, 0.7f, 0.4f );
public override float? TextShadowBlur => 4f;
public override float? TextShadowOffsetY => 2f;
}