fix(var): add variable css

[5][DONE]
This commit is contained in:
2026-05-27 20:30:59 +02:00
parent 2b7e2cc3e0
commit d178122b6a
3 changed files with 23 additions and 7 deletions
+9 -7
View File
@@ -1,13 +1,15 @@
@import "./var.css";
:root {
color-scheme: dark;
--bg: #0b1020;
--bg-soft: rgba(11, 16, 32, 0.72);
--bg: var(--background-color);
--bg-soft: rgba(15, 52, 96, 0.72);
--panel: rgba(17, 25, 49, 0.82);
--panel-border: rgba(148, 163, 184, 0.18);
--text: #e5eefc;
--muted: #9fb0cc;
--accent: #7dd3fc;
--accent-strong: #38bdf8;
--panel-border: rgba(22, 33, 62, 0.18);
--text: var(--generic-text-color);
--muted: var(--sidebar-text);
--accent: var(--sidebar-text-highlight);
--accent-strong: var(--sidebar-select);
--shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}