ui/richtext/RichTextModifier.cs

A small RichText modifier class used by the UI rich text parser. It declares a color for text matching a regex tag for "Mod" or "Mods" or "Modifiers" and inherits from RichTextBase.

[RichTextPanel( @"\b[Mm]od(ifiers?|s)\b" )]
public class RichTextModifier : RichTextBase
{
	public override Color Color => new Color( 0.80f, 0.85f, 1f );
}