ui/richtext/RichTextSpiker.cs

A small UI RichText panel class for the game's rich text system. It defines a "Spiker" style that sets horizontal skew and a pinkish color for rendered text.

Reflection
using Sandbox;
using Sandbox.UI;

[RichTextPanel( @"\bSpiker\b" )]
public class RichTextSpiker : RichTextBase
{
	public override float? SkewX => -4;
	//public override int? FontWeight => 800;

	public override Color Color => new Color( 1f, 0f, 0.8f );
}