this repo has no description
1:root { 2 --space-0: 0; 3 --space-1: 0.125rem; 4 --space-2: 0.25rem; 5 --space-3: 0.5rem; 6 --space-4: 0.75rem; 7 --space-5: 1rem; 8 --space-6: 1.5rem; 9 --space-7: 2rem; 10 --space-8: 3rem; 11 --space-9: 4rem; 12 13 --text-xs: 0.75rem; 14 --text-sm: 0.875rem; 15 --text-base: 1rem; 16 --text-lg: 1.125rem; 17 --text-xl: 1.25rem; 18 --text-2xl: 1.5rem; 19 --text-3xl: 2rem; 20 --text-4xl: 2.5rem; 21 22 --font-normal: 400; 23 --font-medium: 500; 24 --font-semibold: 600; 25 --font-bold: 700; 26 27 --leading-tight: 1.25; 28 --leading-normal: 1.5; 29 --leading-relaxed: 1.75; 30 31 --radius-sm: 3px; 32 --radius-md: 4px; 33 --radius-lg: 6px; 34 --radius-xl: 8px; 35 36 --width-xs: 320px; 37 --width-sm: 400px; 38 --width-md: 600px; 39 --width-lg: 800px; 40 --width-xl: 1000px; 41 42 --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05); 43 --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1); 44 --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15); 45 --shadow-focus: 0 0 0 2px var(--accent-muted); 46 47 --transition-fast: 0.1s ease; 48 --transition-normal: 0.15s ease; 49 --transition-slow: 0.25s ease; 50 51 --bg-primary: #fafafa; 52 --bg-secondary: #f5f5f5; 53 --bg-tertiary: #eeeeee; 54 --bg-card: #ffffff; 55 --bg-input: #ffffff; 56 --bg-input-disabled: #f5f5f5; 57 58 --text-primary: #333333; 59 --text-secondary: #666666; 60 --text-muted: #999999; 61 --text-inverse: #ffffff; 62 63 --border-color: #dddddd; 64 --border-light: #eeeeee; 65 --border-dark: #cccccc; 66 67 --accent: #0066cc; 68 --accent-hover: #0052a3; 69 --accent-muted: rgba(0, 102, 204, 0.15); 70 71 --success-bg: #dfd; 72 --success-border: #8c8; 73 --success-text: #060; 74 75 --error-bg: #fee; 76 --error-border: #fcc; 77 --error-text: #c00; 78 79 --warning-bg: #ffd; 80 --warning-border: #d4a03c; 81 --warning-text: #856404; 82 83 --border-color-light: var(--border-dark); 84} 85 86@media (prefers-color-scheme: dark) { 87 :root { 88 --bg-primary: #1a1a1a; 89 --bg-secondary: #222222; 90 --bg-tertiary: #2a2a2a; 91 --bg-card: #2a2a2a; 92 --bg-input: #333333; 93 --bg-input-disabled: #2a2a2a; 94 95 --text-primary: #e0e0e0; 96 --text-secondary: #a0a0a0; 97 --text-muted: #707070; 98 --text-inverse: #1a1a1a; 99 100 --border-color: #404040; 101 --border-light: #333333; 102 --border-dark: #505050; 103 104 --accent: #4da6ff; 105 --accent-hover: #7abbff; 106 --accent-muted: rgba(77, 166, 255, 0.2); 107 108 --success-bg: #1a3d1a; 109 --success-border: #2d5a2d; 110 --success-text: #7bc67b; 111 112 --error-bg: #3d1a1a; 113 --error-border: #5a2d2d; 114 --error-text: #ff7b7b; 115 116 --warning-bg: #3d3d1a; 117 --warning-border: #5a5a2d; 118 --warning-text: #c6c67b; 119 } 120}