ui/richtext/RichTextBanish.cs

A RichText panel definition for matching the word 'banish' or variants in rich text. It sets styling: a pink color and a horizontal skew. It likely customizes rendering for matched text in the UI.

Reflection
using Sandbox;

[RichTextPanel( @"\b[Bb]anish(?:es|ed)?\b" )]
public class RichTextBanish: RichTextBase
{
	//public override string ImagePath => "textures/ui/scissors.png";
	//public override bool HideText => true;

	public override Color Color => new Color( 1f, 0.4f, 0.55f );

	public override float? SkewX => 8f;
}