@akanjs/config 0.0.38 → 0.0.40

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/src/styles.css ADDED
@@ -0,0 +1,450 @@
1
+ @plugin "tailwindcss-animation-delay";
2
+ @plugin "tailwind-scrollbar";
3
+ @plugin "tailwindcss-radix";
4
+ html,
5
+ body {
6
+ margin: 0;
7
+ }
8
+ ::-webkit-scrollbar {
9
+ display: none;
10
+ }
11
+ a {
12
+ color: inherit;
13
+ text-decoration: none;
14
+ }
15
+ .img {
16
+ -webkit-user-drag: none;
17
+ }
18
+ .rounded-btn {
19
+ --rounded-btn: 0.75rem;
20
+ }
21
+ .animate-delay-2000 {
22
+ animation-delay: 2000ms;
23
+ }
24
+ .animate-delay-3000 {
25
+ animation-delay: 3000ms;
26
+ }
27
+ .animate-delay-4000 {
28
+ animation-delay: 4000ms;
29
+ }
30
+ .animate-delay-5000 {
31
+ animation-delay: 5000ms;
32
+ }
33
+ .btn-ghost:hover {
34
+ opacity: 0.5;
35
+ transition: all 0.3s;
36
+ background-color: transparent;
37
+ }
38
+ .btn {
39
+ text-transform: none;
40
+ font-weight: normal;
41
+ }
42
+ .page-content {
43
+ @apply overflow-y-auto h-screen;
44
+ }
45
+ @property --percentage { initial-value: 100%; inherits: false; syntax: "<percentage>"; }
46
+ .chart {
47
+ background: conic-gradient(rgb(244, 62, 21) var(--percentage), white 0);
48
+ border-radius: 50%;
49
+ width: 30px;
50
+ height: 30px;
51
+ animation: timer 10s infinite linear;
52
+ }
53
+ @keyframes timer {
54
+ to {
55
+ --percentage: 0%;
56
+ }
57
+ }
58
+ @layer base {
59
+ button:not(:disabled),
60
+ [role=button]:not(:disabled) {
61
+ cursor: pointer;
62
+ }
63
+ }
64
+ @utility centric { display: flex; flex-direction: column; justify-content: center; align-items: center; }
65
+ @utility container { margin-inline: auto; padding-inline: 2rem; }
66
+ @keyframes smaller {
67
+ 0% {
68
+ scale: 1;
69
+ height: 100%;
70
+ }
71
+ 100% {
72
+ scale: 0;
73
+ height: 0;
74
+ }
75
+ }
76
+ @keyframes bigger {
77
+ 0% {
78
+ transform: scale(0.5);
79
+ }
80
+ 100% {
81
+ transform: scale(1);
82
+ }
83
+ }
84
+ @keyframes fadeIn {
85
+ 0% {
86
+ opacity: 0;
87
+ }
88
+ 100% {
89
+ opacity: 1;
90
+ }
91
+ }
92
+ @keyframes flyOut {
93
+ 0% {
94
+ opacity: 1;
95
+ transform: translate(-50%, -100%);
96
+ }
97
+ 100% {
98
+ opacity: 0;
99
+ transform: translate(-50%, -140%);
100
+ }
101
+ }
102
+ @keyframes drop {
103
+ 0% {
104
+ opacity: 0;
105
+ transform: translate(-50%, -140%);
106
+ }
107
+ 100% {
108
+ opacity: 1;
109
+ transform: translate(-50%, -100%);
110
+ }
111
+ }
112
+ @keyframes fadeOut {
113
+ 0% {
114
+ opacity: 1;
115
+ }
116
+ 100% {
117
+ opacity: 0;
118
+ }
119
+ }
120
+ @keyframes flash {
121
+ 0% {
122
+ opacity: 1;
123
+ }
124
+ 50% {
125
+ opacity: 0.2;
126
+ }
127
+ 100% {
128
+ opacity: 1;
129
+ }
130
+ }
131
+ @keyframes spin {
132
+ 0% {
133
+ transform: rotate(0deg);
134
+ }
135
+ 100% {
136
+ transform: rotate(360deg);
137
+ }
138
+ }
139
+ @keyframes pop {
140
+ 0% {
141
+ transform: scale(0, 0);
142
+ }
143
+ 50% {
144
+ transform: scale(1.5, 1.5);
145
+ }
146
+ 100% {
147
+ transform: scale(1, 1);
148
+ }
149
+ }
150
+ @keyframes slideDown {
151
+ from {
152
+ height: 0;
153
+ }
154
+ to {
155
+ height: var(--radix-accordion-content-height);
156
+ }
157
+ }
158
+ @keyframes slideUp {
159
+ from {
160
+ height: var(--radix-accordion-content-height);
161
+ }
162
+ to {
163
+ height: 0;
164
+ }
165
+ }
166
+ @keyframes menuOpen {
167
+ 0% {
168
+ opacity: 0;
169
+ width: 0;
170
+ }
171
+ 100% {
172
+ opacity: 1;
173
+ width: 80px;
174
+ }
175
+ }
176
+ @keyframes menuClose {
177
+ 0% {
178
+ opacity: 1;
179
+ width: 80px;
180
+ }
181
+ 100% {
182
+ opacity: 0;
183
+ width: 0;
184
+ }
185
+ }
186
+ @keyframes backdrop-blur {
187
+ 0% {
188
+ backdrop-filter: blur(0);
189
+ }
190
+ 100% {
191
+ backdrop-filter: blur(5px);
192
+ }
193
+ }
194
+ @keyframes zoomIn {
195
+ 0% {
196
+ opacity: 0;
197
+ transform: scale(0.6);
198
+ }
199
+ 100% {
200
+ opacity: 1;
201
+ transform: scale(1);
202
+ }
203
+ }
204
+ @keyframes bottomUp {
205
+ 0% {
206
+ transform: translateY(100%);
207
+ }
208
+ 100% {
209
+ transform: translateY(0);
210
+ }
211
+ }
212
+ @keyframes bottomDown {
213
+ 0% {
214
+ transform: translateY(0);
215
+ }
216
+ 100% {
217
+ transform: translateY(100%);
218
+ }
219
+ }
220
+ @keyframes wave {
221
+ 0% {
222
+ box-shadow:
223
+ 0 0 0 0 rgba(219, 39, 119, 0.3),
224
+ 0 0 0 1em rgba(219, 39, 119, 0.3),
225
+ 0 0 0 2em rgba(219, 39, 119, 0.3),
226
+ 0 0 0 3em rgba(219, 39, 119, 0.3);
227
+ }
228
+ 100% {
229
+ box-shadow:
230
+ 0 0 0 1em rgba(219, 39, 119, 0.3),
231
+ 0 0 0 2em rgba(219, 39, 119, 0.3),
232
+ 0 0 0 3em rgba(219, 39, 119, 0.3),
233
+ 0 0 0 4em rgba(219, 39, 119, 0);
234
+ }
235
+ }
236
+ @keyframes translateUp {
237
+ 0% {
238
+ transform: translateY(0);
239
+ }
240
+ 100% {
241
+ transform: translateY(-60%);
242
+ }
243
+ }
244
+ @keyframes tranlateLeft {
245
+ 0% {
246
+ transform: translateX(100%);
247
+ }
248
+ 100% {
249
+ transform: translateX(0);
250
+ }
251
+ }
252
+ @keyframes tranlateRight {
253
+ 0% {
254
+ transform: translateX(-100%);
255
+ }
256
+ 100% {
257
+ transform: translateX(0);
258
+ }
259
+ }
260
+ @keyframes floatUpDown {
261
+ 0% {
262
+ transform: translateY(0%);
263
+ }
264
+ 50% {
265
+ transform: translateY(10%);
266
+ }
267
+ 100% {
268
+ transform: translateY(0%);
269
+ }
270
+ }
271
+ @keyframes floatDownUp {
272
+ 0% {
273
+ transform: translateY(10%);
274
+ }
275
+ 50% {
276
+ transform: translateY(0%);
277
+ }
278
+ 100% {
279
+ transform: translateY(10%);
280
+ }
281
+ }
282
+ @keyframes scanDown {
283
+ 0% {
284
+ top: -100%;
285
+ }
286
+ 100% {
287
+ top: 200%;
288
+ }
289
+ }
290
+ @keyframes fadeInRight5 {
291
+ 0% {
292
+ opacity: 0;
293
+ translate: 5% 0;
294
+ }
295
+ 100% {
296
+ opacity: 1;
297
+ translate: 0 0;
298
+ }
299
+ }
300
+ @keyframes fadeInRight15 {
301
+ 0% {
302
+ opacity: 0;
303
+ translate: 15% 0;
304
+ }
305
+ 100% {
306
+ opacity: 1;
307
+ translate: 0 0;
308
+ }
309
+ }
310
+ @keyframes fadeInRight30 {
311
+ 0% {
312
+ opacity: 0;
313
+ translate: 30% 0;
314
+ }
315
+ 100% {
316
+ opacity: 1;
317
+ translate: 0 0;
318
+ }
319
+ }
320
+ @keyframes fadeInRight100 {
321
+ 0% {
322
+ opacity: 0;
323
+ translate: 100% 0;
324
+ }
325
+ 100% {
326
+ opacity: 1;
327
+ translate: 0 0;
328
+ }
329
+ }
330
+ @keyframes fadeInLeft5 {
331
+ 0% {
332
+ opacity: 0;
333
+ translate: -5% 0;
334
+ }
335
+ 100% {
336
+ opacity: 1;
337
+ translate: 0 0;
338
+ }
339
+ }
340
+ @keyframes fadeInLeft15 {
341
+ 0% {
342
+ opacity: 0;
343
+ translate: -15% 0;
344
+ }
345
+ 100% {
346
+ opacity: 1;
347
+ translate: 0 0;
348
+ }
349
+ }
350
+ @keyframes fadeInLeft30 {
351
+ 0% {
352
+ opacity: 0;
353
+ translate: -30% 0;
354
+ }
355
+ 100% {
356
+ opacity: 1;
357
+ translate: 0 0;
358
+ }
359
+ }
360
+ @keyframes fadeInLeft100 {
361
+ 0% {
362
+ opacity: 0;
363
+ translate: -100% 0;
364
+ }
365
+ 100% {
366
+ opacity: 1;
367
+ translate: 0 0;
368
+ }
369
+ }
370
+ @keyframes fadeInUp5 {
371
+ 0% {
372
+ opacity: 0;
373
+ translate: 0 5%;
374
+ }
375
+ 100% {
376
+ opacity: 1;
377
+ translate: 0 0;
378
+ }
379
+ }
380
+ @keyframes fadeInUp15 {
381
+ 0% {
382
+ opacity: 0;
383
+ translate: 0 15%;
384
+ }
385
+ 100% {
386
+ opacity: 1;
387
+ translate: 0 0;
388
+ }
389
+ }
390
+ @keyframes fadeInUp30 {
391
+ 0% {
392
+ opacity: 0;
393
+ translate: 0 30%;
394
+ }
395
+ 100% {
396
+ opacity: 1;
397
+ translate: 0 0;
398
+ }
399
+ }
400
+ @keyframes fadeInUp100 {
401
+ 0% {
402
+ opacity: 0;
403
+ translate: 0 100%;
404
+ }
405
+ 100% {
406
+ opacity: 1;
407
+ translate: 0 0;
408
+ }
409
+ }
410
+ @keyframes fadeInDown5 {
411
+ 0% {
412
+ opacity: 0;
413
+ translate: 0 -5%;
414
+ }
415
+ 100% {
416
+ opacity: 1;
417
+ translate: 0 0;
418
+ }
419
+ }
420
+ @keyframes fadeInDown15 {
421
+ 0% {
422
+ opacity: 0;
423
+ translate: 0 -15%;
424
+ }
425
+ 100% {
426
+ opacity: 1;
427
+ translate: 0 0;
428
+ }
429
+ }
430
+ @keyframes fadeInDown30 {
431
+ 0% {
432
+ opacity: 0;
433
+ translate: 0 -30%;
434
+ }
435
+ 100% {
436
+ opacity: 1;
437
+ translate: 0 0;
438
+ }
439
+ }
440
+ @keyframes fadeInDown100 {
441
+ 0% {
442
+ opacity: 0;
443
+ translate: 0 -100%;
444
+ }
445
+ 100% {
446
+ opacity: 1;
447
+ translate: 0 0;
448
+ }
449
+ }
450
+ @theme { --color-primary-light: hsl(var(--primary-light) / <alpha-value>); --color-primary-dark: hsl(var(--primary-dark) / <alpha-value>); --color-secondary-light: hsl(var(--secondary-light) / <alpha-value>); --color-secondary-dark: hsl(var(--secondary-dark) / <alpha-value>); --animate-smaller: smaller 0.15s ease-in-out forwards; --animate-bigger: bigger 1s ease-in-out forwards; --animate-fadeIn: fadeIn 0.15s ease-in-out forwards; --animate-fadeIn_750ms: fadeIn 0.75s ease-in-out forwards; --animate-fadeOut: fadeOut 0.15s ease-in-out forwards; --animate-flyOut: flyOut 0.15s ease-in-out forwards; --animate-drop: drop 0.15s ease-in-out forwards; --animate-flash: flash 1s linear infinite; --animate-spin: spin 1s linear infinite; --animate-backdrop-blur: backdrop-blur-sm 2s ease-in-out forwards; --animate-pop: pop 0.15s ease-in-out forwards; --animate-menuOpen: menuOpen 0.3s ease-in-out forwards; --animate-menuClose: menuClose 0.3s ease-in-out forwards; --animate-slideDown: slideDown 300ms cubic-bezier(0.87, 0, 0.13, 1); --animate-slideUp: slideUp 300ms cubic-bezier(0.87, 0, 0.13, 1); --animate-zoomIn: zoomIn 0.15s ease-in-out forwards; --animate-wave: wave 1s linear infinite; --animate-translateUp: translateUp 0.5s ease-in-out 0.5s forwards; --animate-bottomUp: bottomUp 0.5s ease-in-out 0.5s forwards; --animate-translateLeft: tranlateLeft 0.15s ease-in-out forwards; --animate-translateRight: tranlateRight 0.15s ease-in-out forwards; --animate-floatUpDown: floatUpDown 3s linear forwards infinite; --animate-floatDownUp: floatDownUp 3s linear forwards infinite; --animate-scanDown: scanDown 3s ease-in-out infinite; --animate-fadeInRight5-150ms: fadeInRight5 0.15s ease-in-out forwards; --animate-fadeInRight5-500ms: fadeInRight5 0.5s ease-in-out forwards; --animate-fadeInRight5-1000ms: fadeInRight5 1s ease-in-out forwards; --animate-fadeInRight15-150ms: fadeInRight15 0.15s ease-in-out forwards; --animate-fadeInRight15-500ms: fadeInRight15 0.5s ease-in-out forwards; --animate-fadeInRight15-1000ms: fadeInRight15 1s ease-in-out forwards; --animate-fadeInRight30-150ms: fadeInRight30 0.15s ease-in-out forwards; --animate-fadeInRight30-500ms: fadeInRight30 0.5s ease-in-out forwards; --animate-fadeInRight30-1000ms: fadeInRight30 1s ease-in-out forwards; --animate-fadeInRight100-150ms: fadeInRight100 0.15s ease-in-out forwards; --animate-fadeInRight100-500ms: fadeInRight100 0.5s ease-in-out forwards; --animate-fadeInRight100-1000ms: fadeInRight100 1s ease-in-out forwards; --animate-fadeInLeft5-150ms: fadeInLeft5 0.15s ease-in-out forwards; --animate-fadeInLeft5-500ms: fadeInLeft5 0.5s ease-in-out forwards; --animate-fadeInLeft5-1000ms: fadeInLeft5 1s ease-in-out forwards; --animate-fadeInLeft15-150ms: fadeInLeft15 0.15s ease-in-out forwards; --animate-fadeInLeft15-500ms: fadeInLeft15 0.5s ease-in-out forwards; --animate-fadeInLeft15-1000ms: fadeInLeft15 1s ease-in-out forwards; --animate-fadeInLeft30-150ms: fadeInLeft30 0.15s ease-in-out forwards; --animate-fadeInLeft30-500ms: fadeInLeft30 0.5s ease-in-out forwards; --animate-fadeInLeft30-1000ms: fadeInLeft30 1s ease-in-out forwards; --animate-fadeInLeft100-150ms: fadeInLeft100 0.15s ease-in-out forwards; --animate-fadeInLeft100-500ms: fadeInLeft100 0.5s ease-in-out forwards; --animate-fadeInLeft100-1000ms: fadeInLeft100 1s ease-in-out forwards; --animate-fadeInUp5-150ms: fadeInUp5 0.15s ease-in-out forwards; --animate-fadeInUp5-500ms: fadeInUp5 0.5s ease-in-out forwards; --animate-fadeInUp5-1000ms: fadeInUp5 1s ease-in-out forwards; --animate-fadeInUp15-150ms: fadeInUp15 0.15s ease-in-out forwards; --animate-fadeInUp15-500ms: fadeInUp15 0.5s ease-in-out forwards; --animate-fadeInUp15-1000ms: fadeInUp15 1s ease-in-out forwards; --animate-fadeInUp30-150ms: fadeInUp30 0.15s ease-in-out forwards; --animate-fadeInUp30-500ms: fadeInUp30 0.5s ease-in-out forwards; --animate-fadeInUp30-1000ms: fadeInUp30 1s ease-in-out forwards; --animate-fadeInUp100-150ms: fadeInUp100 0.15s ease-in-out forwards; --animate-fadeInUp100-500ms: fadeInUp100 0.5s ease-in-out forwards; --animate-fadeInUp100-1000ms: fadeInUp100 1s ease-in-out forwards; --animate-fadeInDown5-150ms: fadeInDown5 0.15s ease-in-out forwards; --animate-fadeInDown5-500ms: fadeInDown5 0.5s ease-in-out forwards; --animate-fadeInDown5-1000ms: fadeInDown5 1s ease-in-out forwards; --animate-fadeInDown15-150ms: fadeInDown15 0.15s ease-in-out forwards; --animate-fadeInDown15-500ms: fadeInDown15 0.5s ease-in-out forwards; --animate-fadeInDown15-1000ms: fadeInDown15 1s ease-in-out forwards; --animate-fadeInDown30-150ms: fadeInDown30 0.15s ease-in-out forwards; --animate-fadeInDown30-500ms: fadeInDown30 0.5s ease-in-out forwards; --animate-fadeInDown30-1000ms: fadeInDown30 1s ease-in-out forwards; --animate-fadeInDown100-150ms: fadeInDown100 0.15s ease-in-out forwards; --animate-fadeInDown100-500ms: fadeInDown100 0.5s ease-in-out forwards; --animate-fadeInDown100-1000ms: fadeInDown100 1s ease-in-out forwards; --transition-property-all: all; }