17 lines
333 B
CSS
17 lines
333 B
CSS
/* Settings – Design tokens */
|
||
|
||
:root {
|
||
--bg: #1a1a1e;
|
||
--bg-surface: #25252b;
|
||
--bg-raised: #2e2e36;
|
||
--border: #3a3a44;
|
||
--text: #e4e4ed;
|
||
--text-muted: #7a7a90;
|
||
--accent: #6e8efb;
|
||
--accent-dim: #3a4a8a;
|
||
--radius: 6px;
|
||
--radius-sm: 4px;
|
||
--gap: 1.5rem;
|
||
--speed: 0.15s;
|
||
}
|