A simple RichText panel type used by the UI system. It declares a RichTextChoose class that matches a regex for words like "choose", "chosen", "choosing", or "choices" and sets the text color to white.
using Sandbox;
[RichTextPanel( @"\b[Cc]ho(os(e|en|ing)|ices?)\b" )]
public class RichTextChoose : RichTextBase
{
public override Color Color => Color.White;
}