fix: use solid theme backgrounds instead of a gradient

Replace the body background gradient with the solid theme colour and remove
the now-unused --bg-accent variables from both colour schemes.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Emma Thorpe
2026-06-11 17:36:47 +01:00
parent 8376860fb4
commit 43f42a8274
+1 -3
View File
@@ -10,7 +10,6 @@
/* Modern DLR — turquoise/teal */ /* Modern DLR — turquoise/teal */
[data-theme="modern"] { [data-theme="modern"] {
--bg: #00afaa; --bg: #00afaa;
--bg-accent: #007e7a;
--surface: #ffffff; --surface: #ffffff;
--text: #ffffff; --text: #ffffff;
--message: #ffffff; --message: #ffffff;
@@ -23,7 +22,6 @@
/* Original DLR — 1987 red and blue */ /* Original DLR — 1987 red and blue */
[data-theme="original"] { [data-theme="original"] {
--bg: #002b5c; --bg: #002b5c;
--bg-accent: #c8102e;
--surface: #f5f0e1; --surface: #f5f0e1;
--text: #f5f0e1; --text: #f5f0e1;
--message: #f5f0e1; --message: #f5f0e1;
@@ -44,7 +42,7 @@ body {
flex-direction: column; flex-direction: column;
font-family: var(--font-stack); font-family: var(--font-stack);
color: var(--text); color: var(--text);
background: linear-gradient(135deg, var(--bg) 0%, var(--bg-accent) 100%); background: var(--bg);
transition: background 0.4s ease, color 0.4s ease; transition: background 0.4s ease, color 0.4s ease;
} }