ui/richtext/RichTextReload.cs

A RichText panel definition for reload text. It matches the regex for the words "Reload", "Reloads" or "Reloading" and sets an icon and tint color for that token.

[RichTextPanel( @"\b[Rr]eload(s|ing)?\b" )]
public class RichTextReload : RichTextBase
{
	//public override string ImagePath => "textures/ui/reload.png";
	public override string Icon => "";

	public override Color Color => new Color( 0.75f, 0.25f, 0.25f );
}