mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 13:00:39 +00:00
73 lines
2.0 KiB
CSS
73 lines
2.0 KiB
CSS
:root {
|
|
--bg-accent: #f3f6f9;
|
|
--panel: #ffffff;
|
|
--panel-soft: #f8fafc;
|
|
--panel-muted: #edf2f7;
|
|
--panel-subtle: #fbfcfe;
|
|
--surface: #ffffff;
|
|
--line: rgba(100, 116, 139, 0.24);
|
|
--line-soft: rgba(100, 116, 139, 0.14);
|
|
--text: #111827;
|
|
--text-muted: #64748b;
|
|
--muted: #64748b;
|
|
--muted-strong: #334155;
|
|
--primary: #2457c5;
|
|
--primary-hover: #1d4aa7;
|
|
--primary-strong: #173f8f;
|
|
--brand: var(--primary);
|
|
--brand-strong: var(--primary-strong);
|
|
--accent: #0f766e;
|
|
--accent-soft: #e6f6f3;
|
|
--danger: #c92f4e;
|
|
--success: #0f766e;
|
|
--warning: #b7791f;
|
|
--overlay-strong: rgba(15, 23, 42, 0.58);
|
|
--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.045);
|
|
--shadow-md: 0 8px 18px rgba(15, 23, 42, 0.075);
|
|
--shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.105);
|
|
--radius-sm: 6px;
|
|
--radius-md: 8px;
|
|
--radius-lg: 10px;
|
|
--radius-xl: 14px;
|
|
--ease-out-strong: cubic-bezier(0.22, 1, 0.36, 1);
|
|
--ease-out-soft: cubic-bezier(0.24, 0.8, 0.32, 1);
|
|
--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
|
|
--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
|
|
--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
--dur-instant: 80ms;
|
|
--dur-quick: 120ms;
|
|
--dur-fast: 180ms;
|
|
--dur-medium: 240ms;
|
|
--dur-panel: 280ms;
|
|
--actions-gap: clamp(5px, calc((100vw - 520px) * 1), 10px);
|
|
}
|
|
|
|
:root[data-theme='dark'] {
|
|
--bg-accent: #101418;
|
|
--panel: #171d25;
|
|
--panel-soft: #131922;
|
|
--panel-muted: #0f151d;
|
|
--panel-subtle: #1c2430;
|
|
--surface: #171d25;
|
|
--line: rgba(148, 163, 184, 0.18);
|
|
--line-soft: rgba(148, 163, 184, 0.11);
|
|
--text: #e8edf4;
|
|
--text-muted: #9aa8ba;
|
|
--muted: #9aa8ba;
|
|
--muted-strong: #c4cfdc;
|
|
--primary: #80b6ff;
|
|
--primary-hover: #a6cbff;
|
|
--primary-strong: #d7e8ff;
|
|
--brand: var(--primary);
|
|
--brand-strong: var(--primary-strong);
|
|
--accent: #5eead4;
|
|
--accent-soft: rgba(94, 234, 212, 0.12);
|
|
--danger: #fb7185;
|
|
--success: #5eead4;
|
|
--warning: #fbbf24;
|
|
--overlay-strong: rgba(2, 6, 23, 0.74);
|
|
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.26);
|
|
--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.30);
|
|
--shadow-lg: 0 14px 38px rgba(0, 0, 0, 0.34);
|
|
}
|