ui/richtext/RichTextItem.cs

A small UI rich text item definition class. It declares a RichTextPanel attribute matching item words and sets an empty icon and a light bluish Color; ImagePath is commented out.

[RichTextPanel( @"\b[Ii]tems?\b" )]
public class RichTextItem : RichTextBase
{
	//public override string ImagePath => "textures/ui/coin.png";
	public override string Icon => "";
	public override Color Color => new Color( 0.9f, 0.9f, 1f );
}