fix(glass): soften the Matrix scheme accent (neon phosphor → muted emerald)

UAT: #2fe36e read as too vivid/stabby. Drop to #46b87c (lower saturation) +
slightly less green-tinted fg; update the swatch to match.
This commit is contained in:
npeter83 2026-07-12 20:27:37 +02:00
parent dc51aeeae9
commit c1ba5229c3
2 changed files with 5 additions and 5 deletions

View file

@ -318,16 +318,16 @@ html[data-scheme="starship"][data-theme="light"] {
--accent-fg: #ffffff; --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"] { html[data-scheme="matrix"][data-theme="dark"] {
--bg: #030a06; --bg: #030a06;
--surface: #08130d; --surface: #08130d;
--card: #0b1c12; --card: #0b1c12;
--border: #163d27; --border: #163d27;
--fg: #d6ffe4; --fg: #cfe8d6;
--muted: #6fae86; --muted: #6fae86;
--accent: #2fe36e; --accent: #46b87c;
--accent-fg: #02160a; --accent-fg: #04170c;
} }
html[data-scheme="matrix"][data-theme="light"] { html[data-scheme="matrix"][data-theme="light"] {
--bg: #f0f7f1; --bg: #f0f7f1;

View file

@ -9,7 +9,7 @@ export const SCHEMES: { id: Scheme; name: string; swatch: string }[] = [
{ id: "slate", name: "Slate", swatch: "#e8913c" }, { id: "slate", name: "Slate", swatch: "#e8913c" },
{ id: "youtube", name: "YouTube", swatch: "#ff3b46" }, { id: "youtube", name: "YouTube", swatch: "#ff3b46" },
{ id: "starship", name: "Starship", swatch: "#38b6ff" }, { id: "starship", name: "Starship", swatch: "#38b6ff" },
{ id: "matrix", name: "Matrix", swatch: "#2fe36e" }, { id: "matrix", name: "Matrix", swatch: "#46b87c" },
]; ];
export interface ThemePrefs { export interface ThemePrefs {