Spaces:
Sleeping
Sleeping
File size: 1,536 Bytes
649ee03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | :root {
color-scheme: light dark;
/* Type */
--font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
--font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
--font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
/* Light theme */
--ink: #111827;
--paper: #ffffff;
--surface: #ffffff;
--surface-sunken: #f3f4f6;
--rule: #e5e7eb;
--muted: #6b7280;
--accent: #2563eb;
--accent-ink: #ffffff;
--accent-soft: #dbeafe;
--danger: #8c2f2f;
--danger-soft: #f5e3e1;
--radius: 10px;
--radius-sm: 6px;
--shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 6px 20px -8px rgba(17, 24, 39, 0.12);
}
@media (prefers-color-scheme: dark) {
:root {
--ink: #e5e7eb;
--paper: #0f172a;
--surface: #1a2438;
--surface-sunken: #111827;
--rule: #263045;
--muted: #94a3b8;
--accent: #3b82f6;
--accent-ink: #0c1211;
--accent-soft: #1e3a5f;
--danger: #d98686;
--danger-soft: #3a2222;
--shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
}
* {
box-sizing: border-box;
}
html {
-webkit-font-smoothing: antialiased;
}
body {
margin: 0;
background: var(--paper);
color: var(--ink);
font-family: var(--font-body);
}
:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
|