@clafoutis/cli 1.1.1 → 1.2.0

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.
@@ -0,0 +1,760 @@
1
+ {
2
+ "colors": {
3
+ "button": {
4
+ "primary": {
5
+ "bg": {
6
+ "$type": "color",
7
+ "$value": "{colors.slate.1200}"
8
+ },
9
+ "hover": {
10
+ "$type": "color",
11
+ "$value": "{colors.slate.1100}"
12
+ },
13
+ "text": {
14
+ "$type": "color",
15
+ "$value": "{colors.text.inverse}"
16
+ }
17
+ },
18
+ "secondary": {
19
+ "bg": {
20
+ "$type": "color",
21
+ "$value": "{colors.slate.500}"
22
+ },
23
+ "hover": {
24
+ "$type": "color",
25
+ "$value": "{colors.slate.600}"
26
+ },
27
+ "text": {
28
+ "$type": "color",
29
+ "$value": "{colors.text.primary}"
30
+ }
31
+ },
32
+ "outline": {
33
+ "bg": {
34
+ "$type": "color",
35
+ "$value": "transparent"
36
+ },
37
+ "hover": {
38
+ "$type": "color",
39
+ "$value": "{colors.slate.400}"
40
+ },
41
+ "border": {
42
+ "$type": "color",
43
+ "$value": "{colors.border.primary}"
44
+ },
45
+ "text": {
46
+ "$type": "color",
47
+ "$value": "{colors.text.primary}"
48
+ }
49
+ },
50
+ "ghost": {
51
+ "bg": {
52
+ "$type": "color",
53
+ "$value": "transparent"
54
+ },
55
+ "hover": {
56
+ "$type": "color",
57
+ "$value": "{colors.slate.400}"
58
+ },
59
+ "text": {
60
+ "$type": "color",
61
+ "$value": "{colors.text.primary}"
62
+ }
63
+ },
64
+ "accent": {
65
+ "bg": {
66
+ "$type": "color",
67
+ "$value": "{colors.blue.900}"
68
+ },
69
+ "hover": {
70
+ "$type": "color",
71
+ "$value": "{colors.blue.1000}"
72
+ },
73
+ "text": {
74
+ "$type": "color",
75
+ "$value": "{colors.slate.100}"
76
+ }
77
+ },
78
+ "success": {
79
+ "bg": {
80
+ "$type": "color",
81
+ "$value": "{colors.green.900}"
82
+ },
83
+ "hover": {
84
+ "$type": "color",
85
+ "$value": "{colors.green.1000}"
86
+ },
87
+ "text": {
88
+ "$type": "color",
89
+ "$value": "{colors.slate.100}"
90
+ }
91
+ },
92
+ "error": {
93
+ "bg": {
94
+ "$type": "color",
95
+ "$value": "{colors.red.900}"
96
+ },
97
+ "hover": {
98
+ "$type": "color",
99
+ "$value": "{colors.red.1000}"
100
+ },
101
+ "text": {
102
+ "$type": "color",
103
+ "$value": "{colors.slate.100}"
104
+ }
105
+ },
106
+ "warning": {
107
+ "bg": {
108
+ "$type": "color",
109
+ "$value": "{colors.yellow.900}"
110
+ },
111
+ "hover": {
112
+ "$type": "color",
113
+ "$value": "{colors.yellow.1000}"
114
+ },
115
+ "text": {
116
+ "$type": "color",
117
+ "$value": "{colors.slate.100}"
118
+ }
119
+ },
120
+ "info": {
121
+ "bg": {
122
+ "$type": "color",
123
+ "$value": "{colors.blue.900}"
124
+ },
125
+ "hover": {
126
+ "$type": "color",
127
+ "$value": "{colors.blue.1000}"
128
+ },
129
+ "text": {
130
+ "$type": "color",
131
+ "$value": "{colors.slate.100}"
132
+ }
133
+ },
134
+ "link": {
135
+ "bg": {
136
+ "$type": "color",
137
+ "$value": "transparent"
138
+ },
139
+ "hover": {
140
+ "$type": "color",
141
+ "$value": "{colors.blue.1000}"
142
+ },
143
+ "text": {
144
+ "$type": "color",
145
+ "$value": "{colors.text.link}"
146
+ }
147
+ }
148
+ },
149
+ "badge": {
150
+ "default": {
151
+ "bg": {
152
+ "$type": "color",
153
+ "$value": "{colors.slate.1200}"
154
+ },
155
+ "text": {
156
+ "$type": "color",
157
+ "$value": "{colors.slate.100}"
158
+ }
159
+ },
160
+ "secondary": {
161
+ "bg": {
162
+ "$type": "color",
163
+ "$value": "{colors.slate.500}"
164
+ },
165
+ "text": {
166
+ "$type": "color",
167
+ "$value": "{colors.slate.1200}"
168
+ }
169
+ },
170
+ "outline": {
171
+ "bg": {
172
+ "$type": "color",
173
+ "$value": "transparent"
174
+ },
175
+ "border": {
176
+ "$type": "color",
177
+ "$value": "{colors.border.primary}"
178
+ },
179
+ "text": {
180
+ "$type": "color",
181
+ "$value": "{colors.text.primary}"
182
+ }
183
+ },
184
+ "info": {
185
+ "bg": {
186
+ "$type": "color",
187
+ "$value": "{colors.blue.900}"
188
+ },
189
+ "text": {
190
+ "$type": "color",
191
+ "$value": "{colors.slate.100}"
192
+ }
193
+ },
194
+ "success": {
195
+ "bg": {
196
+ "$type": "color",
197
+ "$value": "{colors.green.900}"
198
+ },
199
+ "text": {
200
+ "$type": "color",
201
+ "$value": "{colors.slate.100}"
202
+ }
203
+ },
204
+ "warning": {
205
+ "bg": {
206
+ "$type": "color",
207
+ "$value": "{colors.yellow.900}"
208
+ },
209
+ "text": {
210
+ "$type": "color",
211
+ "$value": "{colors.slate.100}"
212
+ }
213
+ },
214
+ "error": {
215
+ "bg": {
216
+ "$type": "color",
217
+ "$value": "{colors.red.900}"
218
+ },
219
+ "text": {
220
+ "$type": "color",
221
+ "$value": "{colors.slate.100}"
222
+ }
223
+ }
224
+ },
225
+ "alert": {
226
+ "info": {
227
+ "bg": {
228
+ "$type": "color",
229
+ "$value": "{colors.state.info.bg}"
230
+ },
231
+ "border": {
232
+ "$type": "color",
233
+ "$value": "{colors.state.info.border}"
234
+ },
235
+ "text": {
236
+ "$type": "color",
237
+ "$value": "{colors.state.info.text}"
238
+ },
239
+ "icon": {
240
+ "$type": "color",
241
+ "$value": "{colors.state.info.primary}"
242
+ }
243
+ },
244
+ "success": {
245
+ "bg": {
246
+ "$type": "color",
247
+ "$value": "{colors.state.success.bg}"
248
+ },
249
+ "border": {
250
+ "$type": "color",
251
+ "$value": "{colors.state.success.border}"
252
+ },
253
+ "text": {
254
+ "$type": "color",
255
+ "$value": "{colors.state.success.text}"
256
+ },
257
+ "icon": {
258
+ "$type": "color",
259
+ "$value": "{colors.state.success.primary}"
260
+ }
261
+ },
262
+ "warning": {
263
+ "bg": {
264
+ "$type": "color",
265
+ "$value": "{colors.state.warning.bg}"
266
+ },
267
+ "border": {
268
+ "$type": "color",
269
+ "$value": "{colors.state.warning.border}"
270
+ },
271
+ "text": {
272
+ "$type": "color",
273
+ "$value": "{colors.state.warning.text}"
274
+ },
275
+ "icon": {
276
+ "$type": "color",
277
+ "$value": "{colors.state.warning.primary}"
278
+ }
279
+ },
280
+ "error": {
281
+ "bg": {
282
+ "$type": "color",
283
+ "$value": "{colors.state.error.bg}"
284
+ },
285
+ "border": {
286
+ "$type": "color",
287
+ "$value": "{colors.state.error.border}"
288
+ },
289
+ "text": {
290
+ "$type": "color",
291
+ "$value": "{colors.state.error.text}"
292
+ },
293
+ "icon": {
294
+ "$type": "color",
295
+ "$value": "{colors.state.error.primary}"
296
+ }
297
+ }
298
+ },
299
+ "input": {
300
+ "bg": {
301
+ "$type": "color",
302
+ "$value": "{colors.surface.primary}"
303
+ },
304
+ "border": {
305
+ "$type": "color",
306
+ "$value": "{colors.border.primary}"
307
+ },
308
+ "text": {
309
+ "$type": "color",
310
+ "$value": "{colors.text.primary}"
311
+ },
312
+ "placeholder": {
313
+ "$type": "color",
314
+ "$value": "{colors.text.placeholder}"
315
+ },
316
+ "focus": {
317
+ "$type": "color",
318
+ "$value": "{colors.ring.primary}"
319
+ },
320
+ "disabled": {
321
+ "bg": {
322
+ "$type": "color",
323
+ "$value": "{colors.state.disabled.bg}"
324
+ },
325
+ "text": {
326
+ "$type": "color",
327
+ "$value": "{colors.state.disabled.text}"
328
+ },
329
+ "border": {
330
+ "$type": "color",
331
+ "$value": "{colors.state.disabled.border}"
332
+ }
333
+ }
334
+ },
335
+ "card": {
336
+ "bg": {
337
+ "$type": "color",
338
+ "$value": "{colors.surface.primary}"
339
+ },
340
+ "border": {
341
+ "$type": "color",
342
+ "$value": "{colors.border.primary}"
343
+ },
344
+ "header": {
345
+ "$type": "color",
346
+ "$value": "{colors.text.primary}"
347
+ },
348
+ "description": {
349
+ "$type": "color",
350
+ "$value": "{colors.text.secondary}"
351
+ }
352
+ },
353
+ "toggle": {
354
+ "bg": {
355
+ "$type": "color",
356
+ "$value": "{colors.slate.500}"
357
+ },
358
+ "text": {
359
+ "$type": "color",
360
+ "$value": "{colors.text.secondary}"
361
+ },
362
+ "hover": {
363
+ "$type": "color",
364
+ "$value": "{colors.slate.600}"
365
+ },
366
+ "active": {
367
+ "bg": {
368
+ "$type": "color",
369
+ "$value": "{colors.slate.1200}"
370
+ },
371
+ "text": {
372
+ "$type": "color",
373
+ "$value": "{colors.slate.100}"
374
+ }
375
+ }
376
+ },
377
+ "switch": {
378
+ "bg": {
379
+ "$type": "color",
380
+ "$value": "{colors.slate.500}"
381
+ },
382
+ "thumb": {
383
+ "$type": "color",
384
+ "$value": "{colors.slate.100}"
385
+ },
386
+ "checked": {
387
+ "bg": {
388
+ "$type": "color",
389
+ "$value": "{colors.blue.900}"
390
+ },
391
+ "thumb": {
392
+ "$type": "color",
393
+ "$value": "{colors.slate.100}"
394
+ }
395
+ }
396
+ },
397
+ "slider": {
398
+ "track": {
399
+ "$type": "color",
400
+ "$value": "{colors.slate.500}"
401
+ },
402
+ "range": {
403
+ "$type": "color",
404
+ "$value": "{colors.blue.900}"
405
+ },
406
+ "thumb": {
407
+ "$type": "color",
408
+ "$value": "{colors.slate.100}"
409
+ },
410
+ "thumbBorder": {
411
+ "$type": "color",
412
+ "$value": "{colors.blue.900}"
413
+ }
414
+ },
415
+ "tooltip": {
416
+ "bg": {
417
+ "$type": "color",
418
+ "$value": "{colors.slate.1200}"
419
+ },
420
+ "text": {
421
+ "$type": "color",
422
+ "$value": "{colors.slate.100}"
423
+ }
424
+ },
425
+ "popover": {
426
+ "bg": {
427
+ "$type": "color",
428
+ "$value": "{colors.surface.primary}"
429
+ },
430
+ "border": {
431
+ "$type": "color",
432
+ "$value": "{colors.border.primary}"
433
+ },
434
+ "text": {
435
+ "$type": "color",
436
+ "$value": "{colors.text.primary}"
437
+ }
438
+ },
439
+ "dropdown": {
440
+ "bg": {
441
+ "$type": "color",
442
+ "$value": "{colors.surface.primary}"
443
+ },
444
+ "border": {
445
+ "$type": "color",
446
+ "$value": "{colors.border.primary}"
447
+ },
448
+ "text": {
449
+ "$type": "color",
450
+ "$value": "{colors.text.primary}"
451
+ },
452
+ "item": {
453
+ "bg": {
454
+ "$type": "color",
455
+ "$value": "transparent"
456
+ }
457
+ },
458
+ "hover": {
459
+ "$type": "color",
460
+ "$value": "{colors.slate.400}"
461
+ },
462
+ "active": {
463
+ "$type": "color",
464
+ "$value": "{colors.slate.500}"
465
+ },
466
+ "separator": {
467
+ "$type": "color",
468
+ "$value": "{colors.separator.primary}"
469
+ }
470
+ },
471
+ "table": {
472
+ "header": {
473
+ "bg": {
474
+ "$type": "color",
475
+ "$value": "{colors.slate.300}"
476
+ },
477
+ "text": {
478
+ "$type": "color",
479
+ "$value": "{colors.text.secondary}"
480
+ }
481
+ },
482
+ "row": {
483
+ "bg": {
484
+ "$type": "color",
485
+ "$value": "{colors.surface.primary}"
486
+ },
487
+ "alt": {
488
+ "$type": "color",
489
+ "$value": "{colors.slate.300}"
490
+ },
491
+ "hover": {
492
+ "$type": "color",
493
+ "$value": "{colors.slate.400}"
494
+ }
495
+ },
496
+ "border": {
497
+ "$type": "color",
498
+ "$value": "{colors.border.secondary}"
499
+ },
500
+ "text": {
501
+ "$type": "color",
502
+ "$value": "{colors.text.primary}"
503
+ }
504
+ },
505
+ "tabs": {
506
+ "list": {
507
+ "bg": {
508
+ "$type": "color",
509
+ "$value": "{colors.slate.300}"
510
+ }
511
+ },
512
+ "trigger": {
513
+ "bg": {
514
+ "$type": "color",
515
+ "$value": "transparent"
516
+ },
517
+ "text": {
518
+ "$type": "color",
519
+ "$value": "{colors.text.secondary}"
520
+ },
521
+ "hover": {
522
+ "$type": "color",
523
+ "$value": "{colors.text.primary}"
524
+ }
525
+ },
526
+ "active": {
527
+ "bg": {
528
+ "$type": "color",
529
+ "$value": "{colors.surface.primary}"
530
+ },
531
+ "text": {
532
+ "$type": "color",
533
+ "$value": "{colors.text.primary}"
534
+ }
535
+ },
536
+ "border": {
537
+ "$type": "color",
538
+ "$value": "{colors.border.primary}"
539
+ }
540
+ },
541
+ "avatar": {
542
+ "bg": {
543
+ "$type": "color",
544
+ "$value": "{colors.slate.500}"
545
+ },
546
+ "text": {
547
+ "$type": "color",
548
+ "$value": "{colors.slate.1100}"
549
+ }
550
+ },
551
+ "skeleton": {
552
+ "bg": {
553
+ "$type": "color",
554
+ "$value": "{colors.slate.400}"
555
+ },
556
+ "shimmer": {
557
+ "$type": "color",
558
+ "$value": "{colors.slate.500}"
559
+ }
560
+ },
561
+ "dialog": {
562
+ "bg": {
563
+ "$type": "color",
564
+ "$value": "{colors.surface.primary}"
565
+ },
566
+ "border": {
567
+ "$type": "color",
568
+ "$value": "{colors.border.primary}"
569
+ },
570
+ "overlay": {
571
+ "$type": "color",
572
+ "$value": "{colors.background.overlay}"
573
+ },
574
+ "title": {
575
+ "$type": "color",
576
+ "$value": "{colors.text.primary}"
577
+ },
578
+ "description": {
579
+ "$type": "color",
580
+ "$value": "{colors.text.secondary}"
581
+ }
582
+ },
583
+ "toast": {
584
+ "bg": {
585
+ "$type": "color",
586
+ "$value": "{colors.surface.primary}"
587
+ },
588
+ "border": {
589
+ "$type": "color",
590
+ "$value": "{colors.border.primary}"
591
+ },
592
+ "text": {
593
+ "$type": "color",
594
+ "$value": "{colors.text.primary}"
595
+ },
596
+ "description": {
597
+ "$type": "color",
598
+ "$value": "{colors.text.secondary}"
599
+ },
600
+ "close": {
601
+ "$type": "color",
602
+ "$value": "{colors.text.tertiary}"
603
+ }
604
+ },
605
+ "sidebar": {
606
+ "bg": {
607
+ "$type": "color",
608
+ "$value": "{colors.slate.100}"
609
+ },
610
+ "border": {
611
+ "$type": "color",
612
+ "$value": "{colors.border.secondary}"
613
+ },
614
+ "item": {
615
+ "text": {
616
+ "$type": "color",
617
+ "$value": "{colors.text.secondary}"
618
+ },
619
+ "hover": {
620
+ "$type": "color",
621
+ "$value": "{colors.slate.400}"
622
+ },
623
+ "active": {
624
+ "$type": "color",
625
+ "$value": "{colors.blue.500}"
626
+ }
627
+ },
628
+ "section": {
629
+ "text": {
630
+ "$type": "color",
631
+ "$value": "{colors.text.tertiary}"
632
+ }
633
+ }
634
+ },
635
+ "accordion": {
636
+ "border": {
637
+ "$type": "color",
638
+ "$value": "{colors.border.primary}"
639
+ },
640
+ "trigger": {
641
+ "bg": {
642
+ "$type": "color",
643
+ "$value": "transparent"
644
+ },
645
+ "text": {
646
+ "$type": "color",
647
+ "$value": "{colors.text.primary}"
648
+ },
649
+ "hover": {
650
+ "$type": "color",
651
+ "$value": "{colors.slate.400}"
652
+ }
653
+ },
654
+ "content": {
655
+ "bg": {
656
+ "$type": "color",
657
+ "$value": "transparent"
658
+ },
659
+ "text": {
660
+ "$type": "color",
661
+ "$value": "{colors.text.secondary}"
662
+ }
663
+ }
664
+ },
665
+ "pagination": {
666
+ "item": {
667
+ "bg": {
668
+ "$type": "color",
669
+ "$value": "transparent"
670
+ },
671
+ "text": {
672
+ "$type": "color",
673
+ "$value": "{colors.text.primary}"
674
+ },
675
+ "border": {
676
+ "$type": "color",
677
+ "$value": "{colors.border.primary}"
678
+ },
679
+ "hover": {
680
+ "$type": "color",
681
+ "$value": "{colors.slate.400}"
682
+ },
683
+ "disabled": {
684
+ "text": {
685
+ "$type": "color",
686
+ "$value": "{colors.text.disabled}"
687
+ }
688
+ }
689
+ },
690
+ "active": {
691
+ "bg": {
692
+ "$type": "color",
693
+ "$value": "{colors.slate.1200}"
694
+ },
695
+ "text": {
696
+ "$type": "color",
697
+ "$value": "{colors.slate.100}"
698
+ }
699
+ }
700
+ },
701
+ "progress": {
702
+ "primary": {
703
+ "bg": {
704
+ "$type": "color",
705
+ "$value": "{colors.slate.500}"
706
+ },
707
+ "fill": {
708
+ "$type": "color",
709
+ "$value": "{colors.blue.900}"
710
+ },
711
+ "hover": {
712
+ "$type": "color",
713
+ "$value": "{colors.blue.1000}"
714
+ }
715
+ },
716
+ "success": {
717
+ "bg": {
718
+ "$type": "color",
719
+ "$value": "{colors.slate.500}"
720
+ },
721
+ "fill": {
722
+ "$type": "color",
723
+ "$value": "{colors.state.success.primary}"
724
+ },
725
+ "hover": {
726
+ "$type": "color",
727
+ "$value": "{colors.green.1000}"
728
+ }
729
+ },
730
+ "error": {
731
+ "bg": {
732
+ "$type": "color",
733
+ "$value": "{colors.slate.500}"
734
+ },
735
+ "fill": {
736
+ "$type": "color",
737
+ "$value": "{colors.state.error.primary}"
738
+ },
739
+ "hover": {
740
+ "$type": "color",
741
+ "$value": "{colors.red.1000}"
742
+ }
743
+ },
744
+ "warning": {
745
+ "bg": {
746
+ "$type": "color",
747
+ "$value": "{colors.slate.500}"
748
+ },
749
+ "fill": {
750
+ "$type": "color",
751
+ "$value": "{colors.state.warning.primary}"
752
+ },
753
+ "hover": {
754
+ "$type": "color",
755
+ "$value": "{colors.yellow.1000}"
756
+ }
757
+ }
758
+ }
759
+ }
760
+ }