From c1ba5229c36790bc973f5f6fab2927a27bc719a8 Mon Sep 17 00:00:00 2001 From: npeter83 Date: Sun, 12 Jul 2026 20:27:37 +0200 Subject: [PATCH] =?UTF-8?q?fix(glass):=20soften=20the=20Matrix=20scheme=20?= =?UTF-8?q?accent=20(neon=20phosphor=20=E2=86=92=20muted=20emerald)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit UAT: #2fe36e read as too vivid/stabby. Drop to #46b87c (lower saturation) + slightly less green-tinted fg; update the swatch to match. --- frontend/src/index.css | 8 ++++---- frontend/src/lib/theme.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index d0618c4..2ed21a0 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -318,16 +318,16 @@ html[data-scheme="starship"][data-theme="light"] { --accent-fg: #ffffff; } -/* Matrix — near-black with a phosphor-green terminal accent */ +/* Matrix — near-black with a muted terminal-green accent (softened from neon phosphor) */ html[data-scheme="matrix"][data-theme="dark"] { --bg: #030a06; --surface: #08130d; --card: #0b1c12; --border: #163d27; - --fg: #d6ffe4; + --fg: #cfe8d6; --muted: #6fae86; - --accent: #2fe36e; - --accent-fg: #02160a; + --accent: #46b87c; + --accent-fg: #04170c; } html[data-scheme="matrix"][data-theme="light"] { --bg: #f0f7f1; diff --git a/frontend/src/lib/theme.ts b/frontend/src/lib/theme.ts index f9aa5ed..a6d080c 100644 --- a/frontend/src/lib/theme.ts +++ b/frontend/src/lib/theme.ts @@ -9,7 +9,7 @@ export const SCHEMES: { id: Scheme; name: string; swatch: string }[] = [ { id: "slate", name: "Slate", swatch: "#e8913c" }, { id: "youtube", name: "YouTube", swatch: "#ff3b46" }, { id: "starship", name: "Starship", swatch: "#38b6ff" }, - { id: "matrix", name: "Matrix", swatch: "#2fe36e" }, + { id: "matrix", name: "Matrix", swatch: "#46b87c" }, ]; export interface ThemePrefs {