ui/richtext/RichTextRadiation.cs

A RichTextPanel class for styling text that matches the regex "\b[Rr]adiation?\b". It sets text color, shadow color, shadow blur, shadow offset, and font weight for matched rich text segments.

Reflection
[RichTextPanel( @"\b[Rr]adiation?\b" )]
public class RichTextRadiation : RichTextBase
{
	public override Color Color => new Color( 0.65f, 1f, 0.3f );

	public override Color? TextShadowColor => new Color( 0.4f, 1f, 0.1f );
	public override float? TextShadowBlur => 5f;
	public override float? TextShadowOffsetY => 0f;

	public override int? FontWeight => 600;

	//public override float? TextStrokeWidth => 3f;
	//public override Color? TextStrokeColor => new Color( 0.3f, 0.1f, 0.3f );
}