-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.css
288 lines (257 loc) · 7.76 KB
/
app.css
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
@import '@fontsource/geist-sans';
@import '@fontsource/geist-mono';
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background-100: 0 0% 100%;
--background-200: 0 0% 98%;
--gray-100: 0 0% 95%;
--gray-200: 0 0% 92%;
--gray-300: 0 0% 90%;
--gray-400: 0 0% 92%;
--gray-500: 0 0% 79%;
--gray-600: 0 0% 66%;
--gray-700: 0 0% 56%;
--gray-800: 0 0% 49%;
--gray-900: 0 0% 40%;
--gray-1000: 0 0% 9%;
--blue-100: 212 100% 97%;
--blue-200: 210 100% 96%;
--blue-300: 210 100% 94%;
--blue-400: 209 100% 90%;
--blue-500: 209 100% 80%;
--blue-600: 208 100% 66%;
--blue-700: 212 100% 48%;
--blue-800: 212 100% 41%;
--blue-900: 211 100% 42%;
--blue-1000: 211 100% 15%;
--red-100: 0 100% 97%;
--red-200: 0 100% 96%;
--red-300: 0 100% 95%;
--red-400: 0 90% 92%;
--red-500: 0 82% 85%;
--red-600: 359 90% 71%;
--red-700: 358 75% 59%;
--red-800: 358 70% 52%;
--red-900: 358 66% 48%;
--red-1000: 355 49% 15%;
--amber-100: 39 100% 95%;
--amber-200: 44 100% 92%;
--amber-300: 43 96% 90%;
--amber-400: 42 100% 78%;
--amber-500: 38 100% 71%;
--amber-600: 36 90% 62%;
--amber-700: 39 100% 57%;
--amber-800: 35 100% 52%;
--amber-900: 30 100% 32%;
--amber-1000: 20 79% 17%;
--green-100: 120 60% 96%;
--green-200: 120 60% 95%;
--green-300: 120 60% 91%;
--green-400: 122 60% 86%;
--green-500: 124 60% 75%;
--green-600: 125 60% 64%;
--green-700: 131 41% 46%;
--green-800: 132 43% 39%;
--green-900: 133 50% 32%;
--green-1000: 128 29% 15%;
--teal-100: 169 70% 96%;
--teal-200: 167 70% 94%;
--teal-300: 168 70% 90%;
--teal-400: 170 70% 85%;
--teal-500: 170 70% 72%;
--teal-600: 170 70% 57%;
--teal-700: 173 80% 36%;
--teal-800: 173 83% 30%;
--teal-900: 174 91% 25%;
--teal-1000: 171 80% 13%;
--purple-100: 276 100% 97%;
--purple-200: 277 87% 97%;
--purple-300: 274 78% 95%;
--purple-400: 276 71% 92%;
--purple-500: 274 70% 82%;
--purple-600: 273 72% 73%;
--purple-700: 272 51% 54%;
--purple-800: 272 47% 45%;
--purple-900: 274 71% 43%;
--purple-1000: 276 100% 15%;
--pink-100: 330 100% 96%;
--pink-200: 340 90% 96%;
--pink-300: 340 82% 94%;
--pink-400: 341 76% 91%;
--pink-500: 340 75% 84%;
--pink-600: 341 75% 73%;
--pink-700: 336 80% 58%;
--pink-800: 336 74% 51%;
--pink-900: 336 65% 45%;
--pink-1000: 333 74% 15%;
--gray-alpha-100: rgba(0, 0, 0, 0.05);
--gray-alpha-200: rgba(0, 0, 0, 0.08);
--gray-alpha-300: rgba(0, 0, 0, 0.1);
--gray-alpha-400: rgba(0, 0, 0, 0.08);
--gray-alpha-500: rgba(0, 0, 0, 0.21);
--gray-alpha-600: rgba(0, 0, 0, 0.34);
--gray-alpha-700: rgba(0, 0, 0, 0.44);
--gray-alpha-800: rgba(0, 0, 0, 0.51);
--gray-alpha-900: rgba(0, 0, 0, 0.61);
--gray-alpha-1000: rgba(0, 0, 0, 0.91);
--accents-1: 0 0% 98%;
--accents-2: 0 0% 92%;
--accents-3: 0 0% 60%;
--accents-4: 0 0% 53%;
--accents-5: 0 0% 40%;
--accents-6: 0 0% 27%;
--accents-7: 0 0% 20%;
--accents-8: 0 0% 7%;
--contrast-fg: 0 0% 100%;
--focus-color: var(--blue-700);
/* Shadows */
--focus-border: 0 0 0 1px var(--gray-alpha-600), 0px 0px 0px 4px rgba(0, 0, 0, 0.16);
--focus-ring: 0 0 0 2px hsl(var(--background-100)), 0 0 0 4px hsl(var(--focus-color));
--shadow-border: 0 0 0 1px rgba(0, 0, 0, 0.08);
--shadow-small: 0px 1px 2px rgba(0, 0, 0, 0.16);
--shadow-border-small: var(--shadow-border), var(--shadow-small);
--shadow-menu: var(--shadow-border), 0px 1px 1px rgba(0, 0, 0, 0.02),
0px 4px 8px -4px rgba(0, 0, 0, 0.04), 0px 16px 24px -8px rgba(0, 0, 0, 0.06);
--shadow-input: 0 0 0 1px var(--gray-alpha-600), 0 0 0 4px rgba(0, 0, 0, 0.16);
--shadow-border-inset: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.dark {
--background-100: 0 0% 4%;
--background-200: 0 0% 0%;
--gray-100: 0 0% 10%;
--gray-200: 0 0% 12%;
--gray-300: 0 0% 16%;
--gray-400: 0 0% 18%;
--gray-500: 0 0% 27%;
--gray-600: 0 0% 53%;
--gray-700: 0 0% 56%;
--gray-800: 0 0% 49%;
--gray-900: 0 0% 63%;
--gray-1000: 0 0% 93%;
--blue-100: 216 50% 12%;
--blue-200: 214 59% 15%;
--blue-300: 213 71% 20%;
--blue-400: 212 78% 23%;
--blue-500: 211 86% 27%;
--blue-600: 206 100% 50%;
--blue-700: 212 100% 48%;
--blue-800: 212 100% 41%;
--blue-900: 210 100% 66%;
--blue-1000: 206 100% 96%;
--red-100: 357 37% 12%;
--red-200: 357 46% 16%;
--red-300: 356 54% 22%;
--red-400: 357 55% 26%;
--red-500: 357 60% 32%;
--red-600: 358 75% 59%;
--red-700: 358 75% 59%;
--red-800: 358 69% 52%;
--red-900: 358 100% 69%;
--red-1000: 353 90% 96%;
--amber-100: 35 100% 8%;
--amber-200: 32 100% 10%;
--amber-300: 33 100% 15%;
--amber-400: 35 100% 17%;
--amber-500: 35 91% 22%;
--amber-600: 39 85% 49%;
--amber-700: 39 100% 57%;
--amber-800: 35 100% 52%;
--amber-900: 39 90% 50%;
--amber-1000: 40 94% 93%;
--green-100: 136 50% 9%;
--green-200: 137 50% 12%;
--green-300: 136 50% 14%;
--green-400: 135 70% 16%;
--green-500: 135 70% 23%;
--green-600: 135 70% 34%;
--green-700: 131 41% 46%;
--green-800: 132 43% 39%;
--green-900: 131 43% 57%;
--green-1000: 136 73% 94%;
--teal-100: 169 78% 7%;
--teal-200: 170 74% 9%;
--teal-300: 171 75% 13%;
--teal-400: 171 85% 13%;
--teal-500: 172 85% 20%;
--teal-600: 172 85% 32%;
--teal-700: 173 80% 36%;
--teal-800: 173 83% 30%;
--teal-900: 174 90% 41%;
--teal-1000: 166 71% 93%;
--purple-100: 283 30% 12%;
--purple-200: 281 38% 16%;
--purple-300: 279 44% 23%;
--purple-400: 277 46% 28%;
--purple-500: 274 49% 35%;
--purple-600: 272 51% 54%;
--purple-700: 272 51% 54%;
--purple-800: 272 47% 45%;
--purple-900: 275 80% 71%;
--purple-1000: 281 73% 96%;
--pink-100: 335 32% 12%;
--pink-200: 335 43% 16%;
--pink-300: 335 47% 21%;
--pink-400: 335 51% 22%;
--pink-500: 335 57% 27%;
--pink-600: 336 75% 40%;
--pink-700: 336 80% 58%;
--pink-800: 336 74% 51%;
--pink-900: 341 90% 67%;
--pink-1000: 333 90% 96%;
--gray-alpha-100: hsla(0, 0%, 100%, 0.06);
--gray-alpha-200: hsla(0, 0%, 100%, 0.09);
--gray-alpha-300: hsla(0, 0%, 100%, 0.13);
--gray-alpha-400: hsla(0, 0%, 100%, 0.14);
--gray-alpha-500: hsla(0, 0%, 100%, 0.24);
--gray-alpha-600: hsla(0, 0%, 100%, 0.51);
--gray-alpha-700: hsla(0, 0%, 100%, 0.54);
--gray-alpha-800: hsla(0, 0%, 100%, 0.47);
--gray-alpha-900: hsla(0, 0%, 100%, 0.61);
--gray-alpha-1000: hsla(0, 0%, 100%, 0.92);
--accents-1: 0 0% 7%;
--accents-2: 0 0% 20%;
--accents-3: 0 0% 27%;
--accents-4: 0 0% 40%;
--accents-5: 0 0% 53%;
--accents-6: 0 0% 60%;
--accents-7: 0 0% 92%;
--accents-8: 0 0% 98%;
--focus-color: var(--blue-900);
/* Shadows */
--shadow-border: 0 0 0 1px hsla(0, 0%, 100%, 0.145);
--focus-border: 0 0 0 1px var(--gray-alpha-600), 0px 0px 0px 4px hsla(0, 0%, 100%, 0.24);
--shadow-border-inset: inset 0 0 0 1px hsla(0, 0%, 100%, 0.1);
--shadow-border-small: var(--shadow-border), 0px 1px 2px rgba(0, 0, 0, 0.16);
--shadow-input: 0 0 0 1px var(--gray-alpha-600), 0 0 0 4px hsla(0, 0%, 100%, 0.24);
}
}
@layer base {
* {
@apply border-gray-400;
}
body {
@apply relative touch-manipulation overflow-x-hidden bg-background-200 font-sans text-gray-1000 antialiased selection:bg-blue-800 selection:text-contrast-fg;
font-feature-settings:
'rlig' 1,
'calt' 0;
}
}
/* Class-based Dark Mode for highlighted code blocks */
html.dark .shiki,
html.dark .shiki span {
color: var(--shiki-dark) !important;
background-color: transparent !important;
/* Optional, if you also want font styles */
font-style: 'Geist Mono', monospace !important;
font-weight: var(--shiki-dark-font-weight) !important;
text-decoration: var(--shiki-dark-text-decoration) !important;
}
/*
The styles for ``
*/
.prose code:not(pre > code) {
@apply rounded-md border border-gray-300 bg-gray-100 px-[3.6px] py-0.5 font-mono text-sm font-normal text-gray-900 before:content-[''] after:content-[''];
}