44 lines
888 B
CSS
44 lines
888 B
CSS
/*
|
||
wlkns-dev-standards
|
||
Design Tokens – Dark Mode
|
||
Version: v1.0
|
||
|
||
Zweck:
|
||
Dark-Mode-Erweiterung für tokens.css.
|
||
Keine neuen Bedeutungen – nur andere Werte.
|
||
*/
|
||
|
||
[data-theme="dark"] {
|
||
/* =========================
|
||
Farben – Identity
|
||
========================= */
|
||
|
||
--color-primary: #0F172A;
|
||
--color-accent: #2DD4BF;
|
||
|
||
/* =========================
|
||
Farben – Status
|
||
========================= */
|
||
|
||
--color-success: #22C55E;
|
||
--color-warning: #F59E0B;
|
||
--color-error: #EF4444;
|
||
|
||
/* =========================
|
||
Farben – Neutrals (Dark)
|
||
========================= */
|
||
|
||
--color-bg: #020617;
|
||
--color-surface: #020617;
|
||
--color-border: #1E293B;
|
||
|
||
--color-text: #E5E7EB;
|
||
--color-text-muted: #94A3B8;
|
||
|
||
/* =========================
|
||
Effects
|
||
========================= */
|
||
|
||
--shadow-sm: 0 1px 2px rgba(0,0,0,0.6);
|
||
}
|