From 52beb6dac81dac1cd35bf5ba34fd767d4b92d49d Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Wed, 7 Jan 2026 15:29:56 -0500 Subject: [PATCH] Restore UI noise opacity to 3 percent --- internal/ui/noise.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ui/noise.go b/internal/ui/noise.go index 56ee8ff..db9df5e 100644 --- a/internal/ui/noise.go +++ b/internal/ui/noise.go @@ -14,7 +14,7 @@ import ( const ( noiseTileSize = 128 - noiseAlpha = uint8(5) // ~2% opacity + noiseAlpha = uint8(8) // ~3% opacity noiseVariance = uint8(6) // low contrast noiseMeanValue = uint8(128) )