From 4dab30c6162cde68b32c49cdc223d5b450d7eb8c Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Mon, 23 Mar 2026 15:59:51 -0400 Subject: [PATCH] fix: use Matrix green styling for WebGL recovery overlay The recovery overlay text was using the general HUD blue (#5577aa) instead of the Matrix green palette required by the issue. Updated to #22aa66 with matching text-shadow glow. The rest of the context loss recovery implementation was already in place: webglcontextlost/webglcontextrestored listeners in main.js with event.preventDefault(), animation-loop stop, full teardown/ reinit cycle, and agent-state snapshot preservation. Fixes #63 --- the-matrix/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/the-matrix/index.html b/the-matrix/index.html index eb03c35..a58cfea 100644 --- a/the-matrix/index.html +++ b/the-matrix/index.html @@ -486,8 +486,9 @@ pointer-events: none; } #webgl-recovery-overlay .recovery-text { - color: #5577aa; font-family: 'Courier New', monospace; + color: #22aa66; font-family: 'Courier New', monospace; font-size: 15px; letter-spacing: 3px; + text-shadow: 0 0 10px #11663388; animation: ctx-blink 1.2s step-end infinite; } @keyframes ctx-blink { -- 2.43.0