fix: use Matrix green styling for WebGL recovery overlay
Some checks failed
CI / Typecheck & Lint (pull_request) Failing after 0s

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
This commit is contained in:
Alexander Whitestone
2026-03-23 15:59:51 -04:00
parent fb847b6e53
commit 4dab30c616

View File

@@ -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 {