A UI RichText panel definition that represents a 'Bullet Lifetime' tag. It specifies an icon path, that the icon should be prepended, a text override 'lifetime', and a tint color.
[RichTextPanel( @"\b[Bb]ullet [Ll]ifetime\b" )]
public class RichTextBulletLifetime : RichTextBase
{
public override string ImagePath => "textures/ui/bullet-icon.png";
public override bool PrependIcon => true;
public override string TextOverride => "lifetime";
public override Color Color => new Color( 0.6f, 0.6f, 1f );
}