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: 360px; 37 --width-sm: 480px; 38 --width-md: 760px; 39 --width-lg: 960px; 40 --width-xl: 1100px; 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 --font-mono: ui-monospace, "SF Mono", Menlo, Monaco, monospace; 52 53 --bg-primary: #f9fafa; 54 --bg-secondary: #f1f3f3; 55 --bg-tertiary: #e8ebeb; 56 --bg-hover: #e8ebeb; 57 --bg-card: #ffffff; 58 --bg-input: #ffffff; 59 --bg-input-disabled: #f1f3f3; 60 61 --text-primary: #1a1d1d; 62 --text-secondary: #5a605f; 63 --text-muted: #8a8f8e; 64 --text-inverse: #ffffff; 65 66 --border-color: #dce0df; 67 --border-light: #e8ebeb; 68 --border-dark: #c8cecc; 69 70 --accent: #1a1d1d; 71 --accent-hover: #2e3332; 72 --accent-muted: rgba(26, 29, 29, 0.06); 73 --accent-light: #3a403f; 74 75 --secondary: #1a1d1d; 76 --secondary-hover: #2e3332; 77 --secondary-muted: rgba(26, 29, 29, 0.06); 78 79 --success-bg: #dfd; 80 --success-border: #8c8; 81 --success-text: #060; 82 83 --error-bg: #fee; 84 --error-border: #fcc; 85 --error-text: #c00; 86 87 --warning-bg: #ffd; 88 --warning-border: #d4a03c; 89 --warning-text: #856404; 90 91 --border-color-light: var(--border-dark); 92} 93 94@media (prefers-color-scheme: dark) { 95 :root { 96 --bg-primary: #0a0c0c; 97 --bg-secondary: #131616; 98 --bg-tertiary: #1a1d1d; 99 --bg-hover: #1a1d1d; 100 --bg-card: #131616; 101 --bg-input: #1a1d1d; 102 --bg-input-disabled: #131616; 103 104 --text-primary: #e6e8e8; 105 --text-secondary: #9ca1a0; 106 --text-muted: #686d6c; 107 --text-inverse: #0a0c0c; 108 109 --border-color: #282c2b; 110 --border-light: #1f2322; 111 --border-dark: #343938; 112 113 --accent: #e6e8e8; 114 --accent-hover: #ffffff; 115 --accent-muted: rgba(230, 232, 232, 0.1); 116 --accent-light: #ffffff; 117 118 --secondary: #e6e8e8; 119 --secondary-hover: #ffffff; 120 --secondary-muted: rgba(230, 232, 232, 0.1); 121 122 --success-bg: #0f1f1a; 123 --success-border: #1a3d2d; 124 --success-text: #7bc6a0; 125 126 --error-bg: #1f0f0f; 127 --error-border: #3d1a1a; 128 --error-text: #ff8a8a; 129 130 --warning-bg: #1f1a0f; 131 --warning-border: #3d351a; 132 --warning-text: #c6b87b; 133 } 134}