Revert background color tokens to the original dark palette

PR #164 shifted --bg-primary/secondary/card/input/modal and the body
gradient to a purple-toned palette; restore the prior values.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
retoor 2026-08-12 05:23:07 +02:00
parent 11c0cc66cc
commit 45ad8e79ed

View File

@ -1,12 +1,12 @@
/* retoor <retoor@molodetz.nl> */ /* retoor <retoor@molodetz.nl> */
:root { :root {
--bg-primary: #271b5b; --bg-primary: #080413;
--bg-secondary: #1a1736; --bg-secondary: #120821;
--bg-card: #13112a; --bg-card: #1a1030;
--bg-card-hover: #1a1736; --bg-card-hover: #241640;
--bg-input: #1a1736; --bg-input: #140b26;
--bg-modal: #13112a; --bg-modal: #1a1030;
--accent: #b73f1e; --accent: #b73f1e;
--accent-rgb: 183, 63, 30; --accent-rgb: 183, 63, 30;
@ -76,5 +76,5 @@
--topic-fun: #ffab00; --topic-fun: #ffab00;
--topic-politics: #00bcd4; --topic-politics: #00bcd4;
--bg-gradient: linear-gradient(135deg, #271b5b 0%, #1d1545 50%, #271b5b 100%); --bg-gradient: linear-gradient(135deg, #080413 0%, #160a28 50%, #080413 100%);
} }