ui/richtext/RichTextLevelup.cs

A UI rich text panel class that matches level-up text. It specifies an icon (empty), color, and text shadow properties for styling matched text.

[RichTextPanel( @"\b[Ll]evel-[Uu]ps?\b" )]
public class RichTextLevelup : RichTextBase
{
	public override string Icon => "";
	public override Color Color => Color.Orange.Saturate( 0f );

	public override Color? TextShadowColor => new Color( 1f, 1f, 0f );
	public override float? TextShadowBlur => 5f;
	public override float? TextShadowOffsetY => -3f;
}