A small RichTextPanel-derived class that defines a styling for a "Tree" rich text tag, setting its color to green.
[RichTextPanel( @"\b[Tt]ree\b" )]
public class RichTextTree : RichTextBase
{
public override Color Color => new Color( 0f, 0.8f, 0f );
}