A small RichText component that matches the token "Stereo vision" (case-insensitive) and renders it with a color. It subclasses RichTextBase and sets the Color property to white.
[RichTextPanel( @"\b[Ss]tereo vision\b" )]
public class RichTextStereoVision : RichTextBase
{
public override Color Color => Color.White;
}