A UI rich-text styling panel for the word "spear" or "spears". It sets text skew, font weight, color and underline styling for matched words in rich text.
using Sandbox;
using Sandbox.UI;
[RichTextPanel( @"\b[Ss]pears?\b" )]
public class RichTextSpear : RichTextBase
{
public override float? SkewX => -4;
public override int? FontWeight => 800;
public override Color Color => new Color( 0.7f, 0.3f, 0.3f );
public override bool Underline => true;
//public override TextDecorationStyle? UnderlineStyle => TextDecorationStyle.Wavy;
public override Color? UnderlineColor => Color.Red.WithAlpha( 0.5f );
}