ui/richtext/RichTextAccuracy.cs

A small RichText tag handler class for the UI, matching the word "Accuracy" and providing icon and color values. It derives from RichTextBase and sets Icon to empty and Color to a light gray.

[RichTextPanel( @"\b[Aa]ccuracy\b" )]
public class RichTextAccuracy : RichTextBase
{
	public override string Icon => "";

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