A RichText panel class for matching HP text in chat or UI, derived from RichTextBase. It defines icon (empty), text color white, border radius, and background gradient colors and angle for HP labels.
[RichTextPanel( @"\b[Hh][Pp](?:/s)?\b" )]
public class RichTextHp : RichTextBase
{
//public override string Icon => "favorite";
public override string Icon => "";
public override Color Color => Color.White;
public override float? BorderRadius => 10f;
public override Color? BackgroundGradientStart => new Color( 1f, 0.2f, 0.4f, 0f );
public override Color? BackgroundGradientEnd => new Color( 1f, 0.2f, 0.8f, 0.2f );
public override float? BackgroundGradientAngle => 55f;
}