ui/richtext/RichTextClone.cs

A small UI rich text panel class marked with a RichTextPanel attribute for text matching 'Clone' or 'clone'. It subclasses RichTextBase and overrides the Color property to white (1,1,1).

[RichTextPanel( @"\b[Cc]lone?\b" )]
public class RichTextClone : RichTextBase
{
	public override Color Color => new Color( 1f, 1f, 1f );
}