A small RichText style class for the UI. It defines a bracketed tag pattern and sets an empty Icon and a green Color for positive text.
[RichTextPanel( @"\[\+\](.*?[%ms]?)\[/\+\]" )]
public class RichTextTextPositive : RichTextBase
{
public override string Icon => "";
public override Color Color => Color.Green;
}