ui/richtext/RichTextFence.cs

A small RichText component class used by the UI system to style text tagged with "fence". It subclasses RichTextBase and sets the Color property to White.

[RichTextPanel( @"\b[Ff]ence\b" )]
public class RichTextFence : RichTextBase
{
	public override Color Color => Color.White;
}