From fd1feb164195cd9b7cec1492d2e6eb0578d6c117 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Wed, 7 Jan 2026 15:11:22 -0500 Subject: [PATCH] Lower UI noise opacity --- 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 db9df5e..56ee8ff 100644 --- a/internal/ui/noise.go +++ b/internal/ui/noise.go @@ -14,7 +14,7 @@ import ( const ( noiseTileSize = 128 - noiseAlpha = uint8(8) // ~3% opacity + noiseAlpha = uint8(5) // ~2% opacity noiseVariance = uint8(6) // low contrast noiseMeanValue = uint8(128) )