A small UI rich-text panel class that inherits RichTextArrowResult and sets the Color property to Green. It is annotated with a RichTextPanel attribute containing a large regex pattern for matching arrow-formatted numeric results.
[RichTextPanel( @"(?:\[\+\][ \t]*(\+?-?\d+(?:\.\d+)?[%ms]?)[ \t]*(?:→|->)[ \t]*(\+?-?\d+(?:\.\d+)?[%ms]?)[ \t]*\[/\+\]|(?:\[\+\])?[ \t]*(\+?\d+(?:\.\d+)?[%ms]?)[ \t]*(?:→|->)[ \t]*(\+?\d+(?:\.\d+)?[%ms]?)[ \t]*(?:\[/\+\])?)(?:[%ms](?![a-z]))?", UseCaptureGroup = false )]
public class RichTextArrowResultPositive : RichTextArrowResult
{
public override Color Color => Color.Green;
}