Demos/KeystrokeVisualizer/Components/HintBanner.cs
using Goo;
using Sandbox.UI;
using static Sandbox.DemoTokens;

namespace Sandbox.KeystrokeViz;

public static class HintBanner
{
    public static Text Build( float fontSize ) => new Text( "press any key" )
    {
        FontSize  = fontSize,
        FontColor = FgPrimary.WithAlpha( 0.35f ),
    };
}