@digo-labs/common 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/array-helpers.d.ts +11 -0
- package/dist/auth.d.ts +6 -0
- package/dist/common-helpers.d.ts +40 -0
- package/dist/constants.d.ts +5 -0
- package/dist/font-parser.d.ts +2 -0
- package/dist/font-types.d.ts +11 -0
- package/dist/fonts.d.ts +24 -0
- package/dist/icons.d.ts +1534 -0
- package/dist/images.d.ts +7 -0
- package/dist/index.css +921 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +2001 -0
- package/dist/index.js.map +1 -0
- package/dist/local-storage.d.ts +4 -0
- package/dist/models.d.ts +1 -0
- package/dist/routes.d.ts +14 -0
- package/dist/samples.d.ts +2 -0
- package/dist/schemas/ai.d.ts +102 -0
- package/dist/schemas/database.d.ts +61 -0
- package/dist/schemas/dmx.d.ts +10 -0
- package/dist/schemas/index.d.ts +5 -0
- package/dist/schemas/primitives.d.ts +15 -0
- package/dist/schemas/storage.d.ts +56 -0
- package/dist/string-helpers.d.ts +12 -0
- package/dist/strings.d.ts +89 -0
- package/dist/types/common-types.d.ts +45 -0
- package/dist/types/database-types.d.ts +8 -0
- package/dist/types/websocket-types.d.ts +72 -0
- package/dist/utils.d.ts +4 -0
- package/dist/videos.d.ts +3 -0
- package/package.json +60 -0
- package/vite.apps.ts +50 -0
package/dist/index.css
ADDED
|
@@ -0,0 +1,921 @@
|
|
|
1
|
+
@plugin "@iconify/tailwind4";
|
|
2
|
+
|
|
3
|
+
@plugin "tailwindcss-animate";
|
|
4
|
+
|
|
5
|
+
@source inline("typo-1 typo-2 typo-3 typo-4 typo-5 typo-6 typo-7 typo-8 typo-9 typo-10 typo-11 typo-12 typo-13 typo-14 typo-15 typo-16 typo-17 typo-18 typo-weight-100 typo-weight-200 typo-weight-300 typo-weight-400 typo-weight-500 typo-weight-600 typo-weight-700 typo-weight-800 typo-weight-900");
|
|
6
|
+
|
|
7
|
+
@source "./index.js";
|
|
8
|
+
|
|
9
|
+
@theme static {
|
|
10
|
+
--font-code: 'geist-mono', monospace;
|
|
11
|
+
--font-geist: 'geist', sans-serif;
|
|
12
|
+
--font-geist-mono: 'geist-mono', monospace;
|
|
13
|
+
--font-pixel-circle: 'geist-pixel-circle', monospace;
|
|
14
|
+
--font-pixel-grid: 'geist-pixel-grid', monospace;
|
|
15
|
+
--font-pixel-line: 'geist-pixel-line', monospace;
|
|
16
|
+
--font-pixel-square: 'geist-pixel-square', monospace;
|
|
17
|
+
--font-pixel-triangle: 'geist-pixel-triangle', monospace;
|
|
18
|
+
--font-clash-grotesk: 'clash-grotesk-variable', sans-serif;
|
|
19
|
+
--font-nippo: 'nippo', sans-serif;
|
|
20
|
+
--font-humane: 'humane-variable', sans-serif;
|
|
21
|
+
--font-general-sans: 'general-sans', sans-serif;
|
|
22
|
+
--font-kode-mono: 'kode-mono-vf', monospace;
|
|
23
|
+
--font-aalto: 'Aalto', display;
|
|
24
|
+
--font-being: 'being', display;
|
|
25
|
+
--font-benzol: 'benzol', display;
|
|
26
|
+
--font-half: 'half', display;
|
|
27
|
+
--font-miratrix: 'miratrix', display;
|
|
28
|
+
--font-triakis: 'triakis', display;
|
|
29
|
+
--font-yeager: 'yeager', display;
|
|
30
|
+
--font-karmatic-arcade: 'karmatic-arcade-regular', display;
|
|
31
|
+
--font-digital-7: 'digital-7-mono', monospace;
|
|
32
|
+
--font-pixelony: 'pixelony', display;
|
|
33
|
+
--font-unknown: 'unknown', display;
|
|
34
|
+
--font-disket: 'disket', display;
|
|
35
|
+
--font-heming: 'heming', display;
|
|
36
|
+
--font-obrazec: 'obrazec', display;
|
|
37
|
+
|
|
38
|
+
--color-neutral-1: #111111;
|
|
39
|
+
--color-neutral-2: #191919;
|
|
40
|
+
--color-neutral-3: #222222;
|
|
41
|
+
--color-neutral-4: #2a2a2a;
|
|
42
|
+
--color-neutral-5: #313131;
|
|
43
|
+
--color-neutral-6: #3a3a3a;
|
|
44
|
+
--color-neutral-7: #484848;
|
|
45
|
+
--color-neutral-8: #606060;
|
|
46
|
+
--color-neutral-9: #6e6e6e;
|
|
47
|
+
--color-neutral-10: #7b7b7b;
|
|
48
|
+
--color-neutral-11: #b4b4b4;
|
|
49
|
+
--color-neutral-12: #eeeeee;
|
|
50
|
+
|
|
51
|
+
--color-neutralA-1: #FFFFFF05;
|
|
52
|
+
--color-neutralA-2: #FFFFFF09;
|
|
53
|
+
--color-neutralA-3: #FFFFFF12;
|
|
54
|
+
--color-neutralA-4: #FFFFFF1B;
|
|
55
|
+
--color-neutralA-5: #FFFFFF22;
|
|
56
|
+
--color-neutralA-6: #FFFFFF2C;
|
|
57
|
+
--color-neutralA-7: #FFFFFF3B;
|
|
58
|
+
--color-neutralA-8: #FFFFFF55;
|
|
59
|
+
--color-neutralA-9: #FFFFFF64;
|
|
60
|
+
--color-neutralA-10: #FFFFFF72;
|
|
61
|
+
--color-neutralA-11: #FFFFFFAF;
|
|
62
|
+
--color-neutralA-12: #FFFFFFED;
|
|
63
|
+
|
|
64
|
+
--color-shadows-1: #0000000D;
|
|
65
|
+
--color-shadows-2: #0000001A;
|
|
66
|
+
--color-shadows-3: #00000026;
|
|
67
|
+
--color-shadows-4: #00000033;
|
|
68
|
+
--color-shadows-5: #0000004D;
|
|
69
|
+
--color-shadows-6: #00000066;
|
|
70
|
+
--color-shadows-7: #00000080;
|
|
71
|
+
--color-shadows-8: #00000099;
|
|
72
|
+
--color-shadows-9: #000000B3;
|
|
73
|
+
--color-shadows-10: #000000CC;
|
|
74
|
+
--color-shadows-11: #000000E6;
|
|
75
|
+
--color-shadows-12: #000000F2;
|
|
76
|
+
|
|
77
|
+
--color-accent-1: #0e1512;
|
|
78
|
+
--color-accent-2: #121b17;
|
|
79
|
+
--color-accent-3: #132d21;
|
|
80
|
+
--color-accent-4: #113b29;
|
|
81
|
+
--color-accent-5: #174933;
|
|
82
|
+
--color-accent-6: #20573e;
|
|
83
|
+
--color-accent-7: #28684a;
|
|
84
|
+
--color-accent-8: #2f7c57;
|
|
85
|
+
--color-accent-9: #30a46c;
|
|
86
|
+
--color-accent-10: #33b074;
|
|
87
|
+
--color-accent-11: #3dd68c;
|
|
88
|
+
--color-accent-12: #b1f1cb;
|
|
89
|
+
|
|
90
|
+
--color-accentA-1: #00de4505;
|
|
91
|
+
--color-accentA-2: #29f99d0b;
|
|
92
|
+
--color-accentA-3: #22ff991e;
|
|
93
|
+
--color-accentA-4: #11ff992d;
|
|
94
|
+
--color-accentA-5: #2bffa23c;
|
|
95
|
+
--color-accentA-6: #44ffaa4b;
|
|
96
|
+
--color-accentA-7: #50fdac5e;
|
|
97
|
+
--color-accentA-8: #54ffad73;
|
|
98
|
+
--color-accentA-9: #44ffa49e;
|
|
99
|
+
--color-accentA-10: #43fea4ab;
|
|
100
|
+
--color-accentA-11: #46fea5d4;
|
|
101
|
+
--color-accentA-12: #bbffd7f0;
|
|
102
|
+
|
|
103
|
+
--color-error-1: #191113;
|
|
104
|
+
--color-error-2: #1e1517;
|
|
105
|
+
--color-error-3: #3a141e;
|
|
106
|
+
--color-error-4: #4e1325;
|
|
107
|
+
--color-error-5: #5e1a2e;
|
|
108
|
+
--color-error-6: #6f2539;
|
|
109
|
+
--color-error-7: #883447;
|
|
110
|
+
--color-error-8: #b3445a;
|
|
111
|
+
--color-error-9: #e54666;
|
|
112
|
+
--color-error-10: #ec5a72;
|
|
113
|
+
--color-error-11: #ff949d;
|
|
114
|
+
--color-error-12: #fed2e1;
|
|
115
|
+
|
|
116
|
+
--color-errorA-1: #f4126709;
|
|
117
|
+
--color-errorA-2: #f22f7a11;
|
|
118
|
+
--color-errorA-3: #fe2a8b2a;
|
|
119
|
+
--color-errorA-4: #fd158741;
|
|
120
|
+
--color-errorA-5: #fd278f51;
|
|
121
|
+
--color-errorA-6: #fe459763;
|
|
122
|
+
--color-errorA-7: #fd559b7f;
|
|
123
|
+
--color-errorA-8: #fe5b9bab;
|
|
124
|
+
--color-errorA-9: #fe418de8;
|
|
125
|
+
--color-errorA-10: #ff5693ed;
|
|
126
|
+
--color-errorA-11: #ff92ad;
|
|
127
|
+
--color-errorA-12: #ffd5eafd;
|
|
128
|
+
|
|
129
|
+
--color-success-1: #0d1512;
|
|
130
|
+
--color-success-2: #121c18;
|
|
131
|
+
--color-success-3: #0f2e22;
|
|
132
|
+
--color-success-4: #0b3b2c;
|
|
133
|
+
--color-success-5: #114837;
|
|
134
|
+
--color-success-6: #1b5745;
|
|
135
|
+
--color-success-7: #246854;
|
|
136
|
+
--color-success-8: #2a7e68;
|
|
137
|
+
--color-success-9: #29a383;
|
|
138
|
+
--color-success-10: #27b08b;
|
|
139
|
+
--color-success-11: #1fd8a4;
|
|
140
|
+
--color-success-12: #adf0d4;
|
|
141
|
+
|
|
142
|
+
--color-successA-1: #00de4505;
|
|
143
|
+
--color-successA-2: #29f99d0b;
|
|
144
|
+
--color-successA-3: #22ff991e;
|
|
145
|
+
--color-successA-4: #11ff992d;
|
|
146
|
+
--color-successA-5: #2bffa23c;
|
|
147
|
+
--color-successA-6: #44ffaa4b;
|
|
148
|
+
--color-successA-7: #50fdac5e;
|
|
149
|
+
--color-successA-8: #54ffad73;
|
|
150
|
+
--color-successA-9: #44ffa49e;
|
|
151
|
+
--color-successA-10: #43fea4ab;
|
|
152
|
+
--color-successA-11: #46fea5d4;
|
|
153
|
+
--color-successA-12: #bbffd7f0;
|
|
154
|
+
|
|
155
|
+
--color-warning-1: #16120c;
|
|
156
|
+
--color-warning-2: #1d180f;
|
|
157
|
+
--color-warning-3: #302008;
|
|
158
|
+
--color-warning-4: #3f2700;
|
|
159
|
+
--color-warning-5: #4d3000;
|
|
160
|
+
--color-warning-6: #5c3d05;
|
|
161
|
+
--color-warning-7: #714f19;
|
|
162
|
+
--color-warning-8: #8f6424;
|
|
163
|
+
--color-warning-9: #f5d90a;
|
|
164
|
+
--color-warning-10: #ffef5c;
|
|
165
|
+
--color-warning-11: #f0c000;
|
|
166
|
+
--color-warning-12: #fffad1;
|
|
167
|
+
|
|
168
|
+
--color-warningA-1: #d1510004;
|
|
169
|
+
--color-warningA-2: #f9b4000b;
|
|
170
|
+
--color-warningA-3: #ffaa001e;
|
|
171
|
+
--color-warningA-4: #fdb70028;
|
|
172
|
+
--color-warningA-5: #febb0036;
|
|
173
|
+
--color-warningA-6: #fec40046;
|
|
174
|
+
--color-warningA-7: #fdcb225c;
|
|
175
|
+
--color-warningA-8: #fdca327b;
|
|
176
|
+
--color-warningA-9: #ffe629;
|
|
177
|
+
--color-warningA-10: #ffff57;
|
|
178
|
+
--color-warningA-11: #fee949f5;
|
|
179
|
+
--color-warningA-12: #fef6baf6;
|
|
180
|
+
|
|
181
|
+
--color-info-1: #0d1520;
|
|
182
|
+
--color-info-2: #111927;
|
|
183
|
+
--color-info-3: #0d2847;
|
|
184
|
+
--color-info-4: #003362;
|
|
185
|
+
--color-info-5: #004074;
|
|
186
|
+
--color-info-6: #104d87;
|
|
187
|
+
--color-info-7: #205d9e;
|
|
188
|
+
--color-info-8: #2870bd;
|
|
189
|
+
--color-info-9: #0090ff;
|
|
190
|
+
--color-info-10: #3b9eff;
|
|
191
|
+
--color-info-11: #70b8ff;
|
|
192
|
+
--color-info-12: #c2e6ff;
|
|
193
|
+
|
|
194
|
+
--color-infoA-1: #004df211;
|
|
195
|
+
--color-infoA-2: #1166fb18;
|
|
196
|
+
--color-infoA-3: #0077ff3a;
|
|
197
|
+
--color-infoA-4: #0075ff57;
|
|
198
|
+
--color-infoA-5: #0081fd6b;
|
|
199
|
+
--color-infoA-6: #0f89fd7f;
|
|
200
|
+
--color-infoA-7: #2a91fe98;
|
|
201
|
+
--color-infoA-8: #3094feb9;
|
|
202
|
+
--color-infoA-9: #0090ff;
|
|
203
|
+
--color-infoA-10: #3b9eff;
|
|
204
|
+
--color-infoA-11: #70b8ff;
|
|
205
|
+
--color-infoA-12: #c2e6ff;
|
|
206
|
+
|
|
207
|
+
--text-xxs: 0.625rem;
|
|
208
|
+
--text-10xl: 10rem;
|
|
209
|
+
--text-11xl: 12rem;
|
|
210
|
+
--text-12xl: 14rem;
|
|
211
|
+
--text-13xl: 16rem;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
@theme {
|
|
215
|
+
--radius: 0.5rem;
|
|
216
|
+
--radius-xxs: calc(var(--radius) * 0.25);
|
|
217
|
+
--radius-xs: calc(var(--radius) * 0.375);
|
|
218
|
+
--radius-sm: calc(var(--radius) * 0.625);
|
|
219
|
+
--radius-md: calc(var(--radius) * 0.875);
|
|
220
|
+
--radius-lg: calc(var(--radius) * 1.25);
|
|
221
|
+
--radius-xl: calc(var(--radius) * 1.75);
|
|
222
|
+
--radius-2xl: calc(var(--radius) * 2.5);
|
|
223
|
+
--radius-3xl: calc(var(--radius) * 3.5);
|
|
224
|
+
|
|
225
|
+
--typo-header-font: 'geist', sans-serif;
|
|
226
|
+
--typo-header-weight: 600;
|
|
227
|
+
--typo-header-tracking: 0.025em;
|
|
228
|
+
--typo-header-leading: 1;
|
|
229
|
+
|
|
230
|
+
--typo-label-font: 'geist', sans-serif;
|
|
231
|
+
--typo-label-weight: 500;
|
|
232
|
+
--typo-label-tracking: 0.025em;
|
|
233
|
+
--typo-label-leading: 1;
|
|
234
|
+
|
|
235
|
+
--typo-body-font: 'geist', sans-serif;
|
|
236
|
+
--typo-body-weight: 400;
|
|
237
|
+
--typo-body-tracking: 0.025em;
|
|
238
|
+
--typo-body-leading: 1.375;
|
|
239
|
+
|
|
240
|
+
--typo-code-font: 'geist-mono', monospace;
|
|
241
|
+
--typo-code-weight: 500;
|
|
242
|
+
--typo-code-tracking: 0;
|
|
243
|
+
--typo-code-leading: 1.5;
|
|
244
|
+
|
|
245
|
+
--typo-scale-factor: 1;
|
|
246
|
+
|
|
247
|
+
--shadow-xs-color: var(--color-neutral-9);
|
|
248
|
+
--shadow-xs-offsetX: 0px;
|
|
249
|
+
--shadow-xs-offsetY: 0px;
|
|
250
|
+
--shadow-xs-blur: 2px;
|
|
251
|
+
--shadow-xs-spread: 0px;
|
|
252
|
+
--shadow-xs-opacity: 5%;
|
|
253
|
+
--shadow-xs: var(--shadow-xs-offsetX) var(--shadow-xs-offsetY) var(--shadow-xs-blur) var(--shadow-xs-spread) color-mix(in srgb, var(--shadow-xs-color) var(--shadow-xs-opacity), transparent);
|
|
254
|
+
|
|
255
|
+
--shadow-s-color: var(--color-neutral-9);
|
|
256
|
+
--shadow-s-offsetX: 0px;
|
|
257
|
+
--shadow-s-offsetY: 0px;
|
|
258
|
+
--shadow-s-blur: 4px;
|
|
259
|
+
--shadow-s-spread: 0px;
|
|
260
|
+
--shadow-s-opacity: 10%;
|
|
261
|
+
--shadow-s: var(--shadow-s-offsetX) var(--shadow-s-offsetY) var(--shadow-s-blur) var(--shadow-s-spread) color-mix(in srgb, var(--shadow-s-color) var(--shadow-s-opacity), transparent);
|
|
262
|
+
|
|
263
|
+
--shadow-m-color: var(--color-neutral-9);
|
|
264
|
+
--shadow-m-offsetX: 0px;
|
|
265
|
+
--shadow-m-offsetY: 0px;
|
|
266
|
+
--shadow-m-blur: 8px;
|
|
267
|
+
--shadow-m-spread: -1px;
|
|
268
|
+
--shadow-m-opacity: 15%;
|
|
269
|
+
--shadow-m: var(--shadow-m-offsetX) var(--shadow-m-offsetY) var(--shadow-m-blur) var(--shadow-m-spread) color-mix(in srgb, var(--shadow-m-color) var(--shadow-m-opacity), transparent);
|
|
270
|
+
|
|
271
|
+
--shadow-l-color: var(--color-neutral-9);
|
|
272
|
+
--shadow-l-offsetX: 0px;
|
|
273
|
+
--shadow-l-offsetY: 0px;
|
|
274
|
+
--shadow-l-blur: 16px;
|
|
275
|
+
--shadow-l-spread: -2px;
|
|
276
|
+
--shadow-l-opacity: 20%;
|
|
277
|
+
--shadow-l: var(--shadow-l-offsetX) var(--shadow-l-offsetY) var(--shadow-l-blur) var(--shadow-l-spread) color-mix(in srgb, var(--shadow-l-color) var(--shadow-l-opacity), transparent);
|
|
278
|
+
|
|
279
|
+
--shadow-xl-color: var(--color-neutral-9);
|
|
280
|
+
--shadow-xl-offsetX: 0px;
|
|
281
|
+
--shadow-xl-offsetY: 0px;
|
|
282
|
+
--shadow-xl-blur: 40px;
|
|
283
|
+
--shadow-xl-spread: -8px;
|
|
284
|
+
--shadow-xl-opacity: 30%;
|
|
285
|
+
--shadow-xl: var(--shadow-xl-offsetX) var(--shadow-xl-offsetY) var(--shadow-xl-blur) var(--shadow-xl-spread) color-mix(in srgb, var(--shadow-xl-color) var(--shadow-xl-opacity), transparent);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
@utility typo-weight-100 {
|
|
289
|
+
@apply font-thin;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
@utility typo-weight-200 {
|
|
293
|
+
@apply font-extralight;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
@utility typo-weight-300 {
|
|
297
|
+
@apply font-light;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
@utility typo-weight-400 {
|
|
301
|
+
@apply font-normal;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
@utility typo-weight-500 {
|
|
305
|
+
@apply font-medium;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
@utility typo-weight-600 {
|
|
309
|
+
@apply font-semibold;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
@utility typo-weight-700 {
|
|
313
|
+
@apply font-bold;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
@utility typo-weight-800 {
|
|
317
|
+
@apply font-extrabold;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
@utility typo-weight-900 {
|
|
321
|
+
@apply font-black;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
@utility typo-header {
|
|
325
|
+
font-family: var(--typo-header-font);
|
|
326
|
+
font-weight: var(--typo-header-weight);
|
|
327
|
+
-webkit-font-smoothing: antialiased;
|
|
328
|
+
white-space: nowrap;
|
|
329
|
+
letter-spacing: var(--typo-header-tracking);
|
|
330
|
+
line-height: var(--typo-header-leading);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
@utility typo-label {
|
|
334
|
+
font-family: var(--typo-label-font);
|
|
335
|
+
font-weight: var(--typo-label-weight);
|
|
336
|
+
-webkit-font-smoothing: antialiased;
|
|
337
|
+
white-space: nowrap;
|
|
338
|
+
letter-spacing: var(--typo-label-tracking);
|
|
339
|
+
line-height: var(--typo-label-leading);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
@utility typo-body {
|
|
343
|
+
font-family: var(--typo-body-font);
|
|
344
|
+
font-weight: var(--typo-body-weight);
|
|
345
|
+
-webkit-font-smoothing: antialiased;
|
|
346
|
+
text-wrap: wrap;
|
|
347
|
+
letter-spacing: var(--typo-body-tracking);
|
|
348
|
+
line-height: var(--typo-body-leading);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
@utility typo-code {
|
|
352
|
+
font-family: var(--typo-code-font);
|
|
353
|
+
font-weight: var(--typo-code-weight);
|
|
354
|
+
-webkit-font-smoothing: antialiased;
|
|
355
|
+
white-space: nowrap;
|
|
356
|
+
letter-spacing: var(--typo-code-tracking);
|
|
357
|
+
line-height: var(--typo-code-leading);
|
|
358
|
+
font-variant-numeric: tabular-nums;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
@utility typo-1 {
|
|
362
|
+
@apply typo-body;
|
|
363
|
+
font-size: calc(var(--text-xxs) * var(--typo-scale-factor));
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
@utility typo-2 {
|
|
367
|
+
@apply typo-body;
|
|
368
|
+
font-size: calc(var(--text-xs) * var(--typo-scale-factor));
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
@utility typo-3 {
|
|
372
|
+
@apply typo-body;
|
|
373
|
+
font-size: calc(var(--text-sm) * var(--typo-scale-factor));
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
@utility typo-4 {
|
|
377
|
+
@apply typo-body;
|
|
378
|
+
font-size: calc(var(--text-base) * var(--typo-scale-factor));
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
@utility typo-5 {
|
|
382
|
+
@apply typo-body;
|
|
383
|
+
font-size: calc(var(--text-lg) * var(--typo-scale-factor));
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@utility typo-6 {
|
|
387
|
+
@apply typo-body;
|
|
388
|
+
font-size: calc(var(--text-xl) * var(--typo-scale-factor));
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
@utility typo-7 {
|
|
392
|
+
@apply typo-body;
|
|
393
|
+
font-size: calc(var(--text-2xl) * var(--typo-scale-factor));
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
@utility typo-8 {
|
|
397
|
+
@apply typo-body;
|
|
398
|
+
font-size: calc(var(--text-3xl) * var(--typo-scale-factor));
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
@utility typo-9 {
|
|
402
|
+
@apply typo-body;
|
|
403
|
+
font-size: calc(var(--text-4xl) * var(--typo-scale-factor));
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
@utility typo-10 {
|
|
407
|
+
@apply typo-body;
|
|
408
|
+
font-size: calc(var(--text-5xl) * var(--typo-scale-factor));
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
@utility typo-11 {
|
|
412
|
+
@apply typo-body;
|
|
413
|
+
font-size: calc(var(--text-6xl) * var(--typo-scale-factor));
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
@utility typo-12 {
|
|
417
|
+
@apply typo-body;
|
|
418
|
+
font-size: calc(var(--text-7xl) * var(--typo-scale-factor));
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
@utility typo-13 {
|
|
422
|
+
@apply typo-body;
|
|
423
|
+
font-size: calc(var(--text-8xl) * var(--typo-scale-factor));
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
@utility typo-14 {
|
|
427
|
+
@apply typo-body;
|
|
428
|
+
font-size: calc(var(--text-9xl) * var(--typo-scale-factor));
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
@utility typo-15 {
|
|
432
|
+
@apply typo-body;
|
|
433
|
+
font-size: calc(var(--text-10xl) * var(--typo-scale-factor));
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
@utility typo-16 {
|
|
437
|
+
@apply typo-body;
|
|
438
|
+
font-size: calc(var(--text-11xl) * var(--typo-scale-factor));
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
@utility typo-17 {
|
|
442
|
+
@apply typo-body;
|
|
443
|
+
font-size: calc(var(--text-12xl) * var(--typo-scale-factor));
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
@utility typo-18 {
|
|
447
|
+
@apply typo-body;
|
|
448
|
+
font-size: calc(var(--text-13xl) * var(--typo-scale-factor));
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
@utility filter-none {
|
|
452
|
+
filter: none;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
@utility flex-col-center {
|
|
456
|
+
@apply flex flex-col justify-center items-center align-middle;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
@utility grid-hor-center {
|
|
460
|
+
@apply grid grid-flow-col items-center;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
@utility grid-ver-center {
|
|
464
|
+
@apply grid grid-flow-row items-center;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
@utility flex-row-center {
|
|
468
|
+
@apply flex flex-row justify-center items-center align-middle;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
@utility cs-border-dashed {
|
|
472
|
+
@apply border border-dashed border-neutralA-4;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
@utility cs-disabled {
|
|
476
|
+
@apply disabled:pointer-events-none disabled:opacity-50 data-disabled:pointer-events-none data-disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
@utility cs-has-disabled {
|
|
480
|
+
@apply has-[[data-slot=control]:disabled]:pointer-events-none has-[[data-slot=control]:disabled]:opacity-50;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
@utility cs-transition {
|
|
484
|
+
@apply transition-all duration-200 ease-in-out;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
@utility cs-contrast {
|
|
488
|
+
@apply drop-shadow-[0_1px_1px_#0008] drop-shadow-[0_-1px_1px_#fff4];
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
@utility cs-popup-animation {
|
|
492
|
+
@apply origin-(--transform-origin) transition-[scale,opacity] duration-[0.25s] ease-[cubic-bezier(0.34,1.56,0.64,1)] data-starting-style:scale-90 data-starting-style:opacity-0 data-ending-style:scale-90 data-ending-style:opacity-0 data-instant:transition-none;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
@utility cs-focus {
|
|
496
|
+
@apply outline-none focus-visible:duration-0 focus-visible:outline-solid focus-visible:z-1 focus-visible:ring-[3px] focus-visible:ring-accent-4 focus-visible:outline-1 focus-visible:-outline-offset-1 focus-visible:outline-accent-9;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
@utility cs-has-focus {
|
|
500
|
+
@apply has-[[data-slot=control]:focus-visible]:z-1 has-[[data-slot=control]:focus-visible]:ring-[3px] has-[[data-slot=control]:focus-visible]:ring-accent-4 has-[[data-slot=control]:focus-visible]:outline-1 has-[[data-slot=control]:focus-visible]:outline-solid has-[[data-slot=control]:focus-visible]:-outline-offset-1 has-[[data-slot=control]:focus-visible]:outline-accent-9;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
@utility cs-invalid {
|
|
504
|
+
@apply aria-invalid:ring-3 aria-invalid:ring-error-3 aria-invalid:ring-error-6 aria-invalid:border-error-9 focus-visible:aria-invalid:ring-error-4 focus-visible:aria-invalid:outline-error-9;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
@utility cs-has-invalid {
|
|
508
|
+
@apply has-[[data-slot=control][aria-invalid=true]]:ring-3 has-[[data-slot=control][aria-invalid=true]]:ring-error-3 has-[[data-slot=control][aria-invalid=true]]:ring-error-6 has-[[data-slot=control][aria-invalid=true]]:border-error-9 has-[[data-slot=control][aria-invalid=true]:focus-visible]:ring-error-4 has-[[data-slot=control][aria-invalid=true]:focus-visible]:outline-error-9;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
@utility cs-masonry {
|
|
512
|
+
columns: 3;
|
|
513
|
+
& > * {
|
|
514
|
+
break-inside: avoid-column;
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
@utility cs-stroke {
|
|
519
|
+
-webkit-text-stroke-width: var(--stroke-w, 2px);
|
|
520
|
+
-webkit-text-stroke-color: var(--stroke-color, var(--color-neutral-12));
|
|
521
|
+
color: transparent;
|
|
522
|
+
paint-order: stroke fill;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
@utility cs-backdrop-panel {
|
|
526
|
+
@apply rounded-md border-neutralA-4 bg-neutral-1/60 text-neutral-11 backdrop-blur-lg border shadow-m;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
@utility animate-collapsible-down {
|
|
530
|
+
animation: collapsible-down 0.2s ease-out;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
@utility animate-collapsible-up {
|
|
534
|
+
animation: collapsible-up 0.2s ease-out;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
@utility no-scrollbar {
|
|
538
|
+
@apply [scrollbar-width:none] [&::-webkit-scrollbar]:hidden;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
@utility cs-gutter {
|
|
542
|
+
background: repeating-linear-gradient(315deg, var(--color-neutral-3) 0 1px, transparent 1px 50%);
|
|
543
|
+
background-size: 10px 10px;
|
|
544
|
+
background-attachment: fixed;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
@keyframes stripes {
|
|
548
|
+
from { background-position: 0 0; }
|
|
549
|
+
to { background-position: 16px 0; }
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
@utility cs-stripes {
|
|
553
|
+
background-image: repeating-linear-gradient(315deg, var(--color-neutralA-4) 0 4px, transparent 2px 50%);
|
|
554
|
+
background-size: 16px 16px;
|
|
555
|
+
animation: stripes 0.6s linear infinite;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
@utility cs-guides {
|
|
559
|
+
overflow: clip;
|
|
560
|
+
isolation: isolate;
|
|
561
|
+
|
|
562
|
+
& > * {
|
|
563
|
+
position: relative;
|
|
564
|
+
z-index: 0;
|
|
565
|
+
|
|
566
|
+
&::after {
|
|
567
|
+
content: '';
|
|
568
|
+
position: absolute;
|
|
569
|
+
left: 0;
|
|
570
|
+
right: -1px;
|
|
571
|
+
top: -9999px;
|
|
572
|
+
bottom: -9999px;
|
|
573
|
+
border-left: 1px solid var(--color-neutral-4);
|
|
574
|
+
border-right: 1px solid var(--color-neutral-4);
|
|
575
|
+
pointer-events: none;
|
|
576
|
+
z-index: 1;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
&::before {
|
|
580
|
+
content: '';
|
|
581
|
+
position: absolute;
|
|
582
|
+
top: 0;
|
|
583
|
+
bottom: -1px;
|
|
584
|
+
left: -9999px;
|
|
585
|
+
right: -9999px;
|
|
586
|
+
border-top: 1px solid var(--color-neutral-4);
|
|
587
|
+
border-bottom: 1px solid var(--color-neutral-4);
|
|
588
|
+
pointer-events: none;
|
|
589
|
+
z-index: 1;
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
@utility cs-page-container {
|
|
595
|
+
@apply grid grid-cols-[1fr_minmax(0,var(--page-max-w,64rem))_1fr];
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
@utility cs-page-grid {
|
|
599
|
+
position: relative;
|
|
600
|
+
max-width: var(--page-max-w, 64rem);
|
|
601
|
+
width: 100%;
|
|
602
|
+
margin-inline: auto;
|
|
603
|
+
border-inline: 1px solid var(--color-neutral-4);
|
|
604
|
+
|
|
605
|
+
& > :where(*) {
|
|
606
|
+
position: relative;
|
|
607
|
+
|
|
608
|
+
&::after {
|
|
609
|
+
content: '';
|
|
610
|
+
position: absolute;
|
|
611
|
+
bottom: 0;
|
|
612
|
+
left: -100vw;
|
|
613
|
+
width: 200vw;
|
|
614
|
+
height: 1px;
|
|
615
|
+
background-color: var(--color-neutral-4);
|
|
616
|
+
pointer-events: none;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
& > :where(*:first-child)::before {
|
|
621
|
+
content: '';
|
|
622
|
+
position: absolute;
|
|
623
|
+
top: 0;
|
|
624
|
+
left: -100vw;
|
|
625
|
+
width: 200vw;
|
|
626
|
+
height: 1px;
|
|
627
|
+
background-color: var(--color-neutral-4);
|
|
628
|
+
pointer-events: none;
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
@utility cs-page-gutter {
|
|
633
|
+
&::before, &::after {
|
|
634
|
+
content: '';
|
|
635
|
+
position: absolute;
|
|
636
|
+
top: 0;
|
|
637
|
+
bottom: 0;
|
|
638
|
+
width: var(--page-gutter-w, 2.5rem);
|
|
639
|
+
pointer-events: none;
|
|
640
|
+
background: repeating-linear-gradient(315deg, var(--color-neutral-3) 0 1px, transparent 1px 50%);
|
|
641
|
+
background-size: 10px 10px;
|
|
642
|
+
background-attachment: fixed;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
&::before {
|
|
646
|
+
right: 100%;
|
|
647
|
+
border-left: 1px solid var(--color-neutral-4);
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
&::after {
|
|
651
|
+
left: 100%;
|
|
652
|
+
border-right: 1px solid var(--color-neutral-4);
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
@layer base {
|
|
657
|
+
|
|
658
|
+
* {
|
|
659
|
+
@apply transition-colors duration-200;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
body {
|
|
663
|
+
color: var(--color-neutral-12);
|
|
664
|
+
background-color: var(--color-neutral-1);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
@font-face {
|
|
669
|
+
font-family: 'geist';
|
|
670
|
+
font-weight: 100 900;
|
|
671
|
+
font-style: normal;
|
|
672
|
+
font-display: swap;
|
|
673
|
+
size-adjust: 100%;
|
|
674
|
+
src: url(https://cdn.digo-labs.com/fonts/geist.ttf) format('truetype');
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
@font-face {
|
|
678
|
+
font-family: 'geist-mono';
|
|
679
|
+
font-weight: 100 900;
|
|
680
|
+
font-style: normal;
|
|
681
|
+
font-display: swap;
|
|
682
|
+
size-adjust: 100%;
|
|
683
|
+
src: url(https://cdn.digo-labs.com/fonts/geist-mono.ttf) format('truetype');
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
@font-face {
|
|
687
|
+
font-family: 'geist-pixel-circle';
|
|
688
|
+
font-weight: 400;
|
|
689
|
+
font-style: normal;
|
|
690
|
+
font-display: swap;
|
|
691
|
+
size-adjust: 100%;
|
|
692
|
+
src: url(https://cdn.digo-labs.com/fonts/geist-pixel-circle.ttf) format('truetype');
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
@font-face {
|
|
696
|
+
font-family: 'geist-pixel-grid';
|
|
697
|
+
font-weight: 400;
|
|
698
|
+
font-style: normal;
|
|
699
|
+
font-display: swap;
|
|
700
|
+
size-adjust: 100%;
|
|
701
|
+
src: url(https://cdn.digo-labs.com/fonts/geist-pixel-grid.ttf) format('truetype');
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
@font-face {
|
|
705
|
+
font-family: 'geist-pixel-line';
|
|
706
|
+
font-weight: 400;
|
|
707
|
+
font-style: normal;
|
|
708
|
+
font-display: swap;
|
|
709
|
+
size-adjust: 100%;
|
|
710
|
+
src: url(https://cdn.digo-labs.com/fonts/geist-pixel-line.ttf) format('truetype');
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
@font-face {
|
|
714
|
+
font-family: 'geist-pixel-square';
|
|
715
|
+
font-weight: 400;
|
|
716
|
+
font-style: normal;
|
|
717
|
+
font-display: swap;
|
|
718
|
+
size-adjust: 100%;
|
|
719
|
+
src: url(https://cdn.digo-labs.com/fonts/geist-pixel-square.ttf) format('truetype');
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
@font-face {
|
|
723
|
+
font-family: 'geist-pixel-triangle';
|
|
724
|
+
font-weight: 400;
|
|
725
|
+
font-style: normal;
|
|
726
|
+
font-display: swap;
|
|
727
|
+
size-adjust: 100%;
|
|
728
|
+
src: url(https://cdn.digo-labs.com/fonts/geist-pixel-triangle.ttf) format('truetype');
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
@font-face {
|
|
732
|
+
font-family: 'clash-grotesk-variable';
|
|
733
|
+
font-weight: 200 700;
|
|
734
|
+
font-style: normal;
|
|
735
|
+
font-display: swap;
|
|
736
|
+
size-adjust: 100%;
|
|
737
|
+
src: url(https://cdn.digo-labs.com/fonts/clash-grotesk-variable.ttf) format('truetype');
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
@font-face {
|
|
741
|
+
font-family: 'nippo';
|
|
742
|
+
font-weight: 200 700;
|
|
743
|
+
font-style: normal;
|
|
744
|
+
font-display: swap;
|
|
745
|
+
size-adjust: 100%;
|
|
746
|
+
src: url(https://cdn.digo-labs.com/fonts/nippo.ttf) format('truetype');
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
@font-face {
|
|
750
|
+
font-family: 'being';
|
|
751
|
+
font-weight: 400;
|
|
752
|
+
font-style: normal;
|
|
753
|
+
font-display: swap;
|
|
754
|
+
size-adjust: 100%;
|
|
755
|
+
src: url(https://cdn.digo-labs.com/fonts/being.otf) format('opentype');
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
@font-face {
|
|
759
|
+
font-family: 'Aalto';
|
|
760
|
+
font-weight: 400;
|
|
761
|
+
font-style: normal;
|
|
762
|
+
font-display: swap;
|
|
763
|
+
size-adjust: 100%;
|
|
764
|
+
src: url(https://cdn.digo-labs.com/fonts/aalto.otf) format('opentype');
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
@font-face {
|
|
768
|
+
font-family: 'humane-variable';
|
|
769
|
+
font-weight: 200 800;
|
|
770
|
+
font-style: normal;
|
|
771
|
+
font-display: swap;
|
|
772
|
+
size-adjust: 100%;
|
|
773
|
+
src: url(https://cdn.digo-labs.com/fonts/humane-variable.ttf) format('truetype');
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
@font-face {
|
|
777
|
+
font-family: 'general-sans';
|
|
778
|
+
font-weight: 200 800;
|
|
779
|
+
font-style: normal;
|
|
780
|
+
font-display: swap;
|
|
781
|
+
size-adjust: 100%;
|
|
782
|
+
src: url(https://cdn.digo-labs.com/fonts/general-sans.ttf) format('truetype');
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
@font-face {
|
|
786
|
+
font-family: 'karmatic-arcade-regular';
|
|
787
|
+
font-style: normal;
|
|
788
|
+
font-weight: 400;
|
|
789
|
+
font-display: swap;
|
|
790
|
+
size-adjust: 100%;
|
|
791
|
+
src: url(https://cdn.digo-labs.com/fonts/karmatic-arcade-regular.ttf) format('truetype');
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
@font-face {
|
|
795
|
+
font-family: 'kode-mono-vf';
|
|
796
|
+
font-style: normal;
|
|
797
|
+
font-weight: 400 700;
|
|
798
|
+
font-display: swap;
|
|
799
|
+
size-adjust: 100%;
|
|
800
|
+
src: url(https://cdn.digo-labs.com/fonts/kode-mono-vf.ttf) format('truetype');
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
@font-face {
|
|
804
|
+
font-family: 'digital-7-mono';
|
|
805
|
+
font-style: normal;
|
|
806
|
+
font-weight: 400;
|
|
807
|
+
font-display: swap;
|
|
808
|
+
size-adjust: 100%;
|
|
809
|
+
src: url(https://cdn.digo-labs.com/fonts/digital-7-mono.ttf) format('truetype');
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
@font-face {
|
|
813
|
+
font-family: 'pixelony';
|
|
814
|
+
font-style: normal;
|
|
815
|
+
font-weight: 400;
|
|
816
|
+
font-display: swap;
|
|
817
|
+
size-adjust: 100%;
|
|
818
|
+
src: url(https://cdn.digo-labs.com/fonts/pixelony.ttf) format('truetype');
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
@font-face {
|
|
822
|
+
font-family: 'unknown';
|
|
823
|
+
font-weight: 400;
|
|
824
|
+
font-style: normal;
|
|
825
|
+
font-display: swap;
|
|
826
|
+
size-adjust: 140%;
|
|
827
|
+
src: url(https://cdn.digo-labs.com/fonts/unknown.otf) format('opentype');
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
@font-face {
|
|
831
|
+
font-family: 'benzol';
|
|
832
|
+
font-weight: 400;
|
|
833
|
+
font-style: normal;
|
|
834
|
+
font-display: swap;
|
|
835
|
+
size-adjust: 100%;
|
|
836
|
+
src: url(https://cdn.digo-labs.com/fonts/benzol.otf) format('opentype');
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
@font-face {
|
|
840
|
+
font-family: 'half';
|
|
841
|
+
font-weight: 400;
|
|
842
|
+
font-style: normal;
|
|
843
|
+
font-display: swap;
|
|
844
|
+
size-adjust: 100%;
|
|
845
|
+
src: url(https://cdn.digo-labs.com/fonts/half.otf) format('opentype');
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
@font-face {
|
|
849
|
+
font-family: 'miratrix';
|
|
850
|
+
font-weight: 400;
|
|
851
|
+
font-style: normal;
|
|
852
|
+
font-display: swap;
|
|
853
|
+
size-adjust: 100%;
|
|
854
|
+
src: url(https://cdn.digo-labs.com/fonts/miratrix.otf) format('opentype');
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
@font-face {
|
|
858
|
+
font-family: 'triakis';
|
|
859
|
+
font-weight: 400;
|
|
860
|
+
font-style: normal;
|
|
861
|
+
font-display: swap;
|
|
862
|
+
size-adjust: 100%;
|
|
863
|
+
src: url(https://cdn.digo-labs.com/fonts/triakis.otf) format('opentype');
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
@font-face {
|
|
867
|
+
font-family: 'yeager';
|
|
868
|
+
font-weight: 400;
|
|
869
|
+
font-style: normal;
|
|
870
|
+
font-display: swap;
|
|
871
|
+
size-adjust: 100%;
|
|
872
|
+
src: url(https://cdn.digo-labs.com/fonts/yeager.otf) format('opentype');
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
@font-face {
|
|
876
|
+
font-family: 'disket';
|
|
877
|
+
font-style: normal;
|
|
878
|
+
font-weight: 400;
|
|
879
|
+
font-display: swap;
|
|
880
|
+
size-adjust: 100%;
|
|
881
|
+
src: url(https://cdn.digo-labs.com/fonts/disket.ttf) format('truetype');
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
@font-face {
|
|
885
|
+
font-family: 'heming';
|
|
886
|
+
font-style: normal;
|
|
887
|
+
font-weight: 400;
|
|
888
|
+
font-display: swap;
|
|
889
|
+
size-adjust: 100%;
|
|
890
|
+
src: url(https://cdn.digo-labs.com/fonts/heming.ttf) format('truetype');
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
@font-face {
|
|
894
|
+
font-family: 'obrazec';
|
|
895
|
+
font-style: normal;
|
|
896
|
+
font-weight: 400;
|
|
897
|
+
font-display: swap;
|
|
898
|
+
size-adjust: 100%;
|
|
899
|
+
src: url(https://cdn.digo-labs.com/fonts/obrazec.ttf) format('truetype');
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
@layer utilities {
|
|
905
|
+
* {
|
|
906
|
+
scrollbar-width: thin;
|
|
907
|
+
scrollbar-color: #ffffff50 transparent;
|
|
908
|
+
}
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
@layer base {
|
|
912
|
+
::selection {
|
|
913
|
+
background-color: var(--color-neutral-12);
|
|
914
|
+
color: var(--color-neutral-1);
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
::-moz-selection {
|
|
918
|
+
background-color: var(--color-neutral-12);
|
|
919
|
+
color: var(--color-neutral-1);
|
|
920
|
+
}
|
|
921
|
+
}
|