From 359ed2c00d47ef38758f1e0f1375a3c9c714848a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 7 Jun 2026 03:13:20 -0400 Subject: [PATCH] Widen the end-vs-internal fill contrast MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit End rhymes 34%, internals 13% (phrases 22/10) — scheme structure reads at a glance without the old underlines. Co-Authored-By: Claude Opus 4.8 (1M context) --- static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.html b/static/index.html index b129ffb..79b99cd 100644 --- a/static/index.html +++ b/static/index.html @@ -466,7 +466,7 @@ function render(){ if(!w && !p){ h += text; continue; } // fills only: words paint their group color; phrase rhymes paint // the stretches between, so multi-word matches still read as units - const alpha = w ? (w.end ? 24 : 15) : (p.end ? 18 : 12); + const alpha = w ? (w.end ? 34 : 13) : (p.end ? 22 : 10); const color = w ? colorOf(w) : colorOf(p); h += `${text}`; }