A small UI component class for the rich text system that defines a style named "timer digit" and sets its text color to orange.
[RichTextPanel( @"\btimer digit\b" )]
public class RichTextTimerDigit : RichTextBase
{
public override Color Color => new Color( 1f, 0.7f, 0f );
}