A small UI rich text tag handler for a right parenthesis. It declares a RichTextPanel attribute for ")" and sets a custom Color and a negative left margin.
[RichTextPanel( @"\)" )]
public class RichTextParenthesesRight : RichTextBase
{
public override Color Color => new Color( 0.5f, 0.5f, 1f, 0.55f );
public override float? MarginLeft => -1f;
}