ui/richtext/RichTextBlink.cs

A RichText panel definition that matches the word "blink" or "blinks" or "blinking" and sets visual styling. It specifies an empty icon, a left skew, heavy font weight, and a bluish color.

Reflection
using Sandbox;

[RichTextPanel( @"\b[Bb]link(s|ing)?\b" )]
public class RichTextBlink : RichTextBase
{
	public override string Icon => "";

	public override float? SkewX => -8;
	public override int? FontWeight => 900;

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