From 818d09f7e20b7eeda1c69e9d4ec8189c07183c20 Mon Sep 17 00:00:00 2001 From: OpenClaw Agent Date: Fri, 13 Mar 2026 14:20:15 +0000 Subject: [PATCH] fix: change card glow from blue to green (closes #7) --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index a1f2cb0..fc33bdc 100644 --- a/index.html +++ b/index.html @@ -65,15 +65,15 @@ max-width: 520px; text-align: center; line-height: 1.6; - box-shadow: 0 0 0 1px rgba(74, 110, 245, .15), - 0 0 18px 4px rgba(74, 110, 245, .25), - 0 0 40px 8px rgba(74, 110, 245, .1); + box-shadow: 0 0 0 1px rgba(34, 197, 94, .15), + 0 0 18px 4px rgba(34, 197, 94, .25), + 0 0 40px 8px rgba(34, 197, 94, .1); transition: background .2s, border-color .2s, box-shadow .2s; } :root[data-theme="dark"] .card { - box-shadow: 0 0 0 1px rgba(124, 158, 245, .2), - 0 0 20px 5px rgba(124, 158, 245, .3), - 0 0 50px 10px rgba(124, 158, 245, .12); + box-shadow: 0 0 0 1px rgba(34, 197, 94, .2), + 0 0 20px 5px rgba(34, 197, 94, .3), + 0 0 50px 10px rgba(34, 197, 94, .12); }