ui/richtext/RichTextAutoAim.cs

UI rich text style for the "Auto-Aim" keyword. It defines color and animation properties applied to matching rich text panels.

[RichTextPanel( @"\b[Aa]uto-[Aa]im\b" )]
public class RichTextAutoAim : RichTextBase
{
	public override Color Color => Color.Yellow.Saturate( 0.4f );

	public override string AnimationName => "track";
	public override float? AnimationDuration => 2.5f;
	public override string AnimationTimingFunction => "cubic-bezier(0.68, -0.55, 0.27, 1.55)";
}