UI RichText panel rule that styles words matching the regex for "chain" or "chained"/"chaining". It sets text color, font weight, underlining, underline color and style.
using Sandbox.UI;
[RichTextPanel( @"\b[Cc]hain(ed|ing)?\b" )]
public class RichTextChain : RichTextBase
{
public override Color Color => new Color( 0.7f, 0.7f, 1f );
public override int? FontWeight => 400;
public override bool Underline => true;
public override Color? UnderlineColor => Color.Gray;
public override TextDecorationStyle? UnderlineStyle => TextDecorationStyle.Dashed;
}