A small UI rich text element class that defines a labeled rich text panel for "3rd-person view?" and sets its color. It inherits from RichTextBase and provides an override for the Color property.
[RichTextPanel( @"\b3rd-person view?\b" )]
public class RichText3rdPerson : RichTextBase
{
public override Color Color => new Color( 0.85f );
}