@sproutsocial/seeds-theme 0.1.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.
Files changed (42) hide show
  1. package/README.md +259 -0
  2. package/dist/css-tokens.json +134 -0
  3. package/dist/legacy-dark.css +437 -0
  4. package/dist/legacy-light.css +437 -0
  5. package/dist/legacy.css +659 -0
  6. package/dist/schema.json +11798 -0
  7. package/dist/shadcn-dark.css +2 -0
  8. package/dist/shadcn-light.css +2 -0
  9. package/dist/shadcn.css +2 -0
  10. package/dist/shadcn.registry.json +77 -0
  11. package/dist/source/shadcn-dark.tokens.json +169 -0
  12. package/dist/source/shadcn-light.tokens.json +169 -0
  13. package/dist/source/theme-dark.tokens.json +1945 -0
  14. package/dist/source/theme-light.tokens.json +1945 -0
  15. package/dist/styled-components/index.cjs +1648 -0
  16. package/dist/styled-components/index.d.ts +3654 -0
  17. package/dist/styled-components/index.js +1641 -0
  18. package/dist/styled-components/index.ts +5285 -0
  19. package/dist/tailwind.css +40 -0
  20. package/dist/theme-dark.css +388 -0
  21. package/dist/theme-dark.d.ts +420 -0
  22. package/dist/theme-dark.js +401 -0
  23. package/dist/theme-dark.json +712 -0
  24. package/dist/theme-light.css +388 -0
  25. package/dist/theme-light.d.ts +420 -0
  26. package/dist/theme-light.js +400 -0
  27. package/dist/theme-light.json +712 -0
  28. package/dist/theme.css +611 -0
  29. package/mode-authoring.md +54 -0
  30. package/package.json +96 -0
  31. package/src/cli.js +42 -0
  32. package/src/compiler.d.ts +9 -0
  33. package/src/compiler.js +533 -0
  34. package/src/config.d.ts +39 -0
  35. package/src/config.js +280 -0
  36. package/src/contract.js +351 -0
  37. package/src/extension-schema.js +88 -0
  38. package/src/extension.d.ts +18 -0
  39. package/src/extension.js +81 -0
  40. package/src/index.d.ts +90 -0
  41. package/src/index.js +9 -0
  42. package/src/primitives.js +98 -0
@@ -0,0 +1,1945 @@
1
+ {
2
+ "breakpoints": {
3
+ "0": {
4
+ "$value": "900px",
5
+ "$type": "dimension"
6
+ },
7
+ "1": {
8
+ "$value": "1200px",
9
+ "$type": "dimension"
10
+ },
11
+ "2": {
12
+ "$value": "1500px",
13
+ "$type": "dimension"
14
+ },
15
+ "3": {
16
+ "$value": "1800px",
17
+ "$type": "dimension"
18
+ },
19
+ "sm": {
20
+ "$value": "640px",
21
+ "$type": "dimension"
22
+ },
23
+ "md": {
24
+ "$value": "768px",
25
+ "$type": "dimension"
26
+ },
27
+ "lg": {
28
+ "$value": "1024px",
29
+ "$type": "dimension"
30
+ },
31
+ "xl": {
32
+ "$value": "1280px",
33
+ "$type": "dimension"
34
+ },
35
+ "$extensions": {
36
+ "org.sproutsocial.seeds": {
37
+ "collection": "array"
38
+ }
39
+ }
40
+ },
41
+ "colors": {
42
+ "container": {
43
+ "background": {
44
+ "positive_sentiment": {
45
+ "$value": "{color.blue.500}",
46
+ "$type": "color"
47
+ },
48
+ "negative_sentiment": {
49
+ "$value": "{color.red.500}",
50
+ "$type": "color"
51
+ },
52
+ "neutral_sentiment": {
53
+ "$value": "{color.neutral.300}",
54
+ "$type": "color"
55
+ },
56
+ "ai_generated": {
57
+ "$type": "string",
58
+ "$value": "{colors.gradient.ai-subtle}, {colors.container.background.base}"
59
+ },
60
+ "base": {
61
+ "$value": "{color.neutral.0}",
62
+ "$type": "color"
63
+ },
64
+ "success": {
65
+ "$value": "{color.green.100}",
66
+ "$type": "color"
67
+ },
68
+ "warning": {
69
+ "$value": "{color.yellow.100}",
70
+ "$type": "color"
71
+ },
72
+ "error": {
73
+ "$value": "{color.red.100}",
74
+ "$type": "color"
75
+ },
76
+ "info": {
77
+ "$value": "{color.blue.100}",
78
+ "$type": "color"
79
+ },
80
+ "opportunity": {
81
+ "$value": "{color.purple.100}",
82
+ "$type": "color"
83
+ },
84
+ "danger": {
85
+ "$value": "{color.red.100}",
86
+ "$type": "color"
87
+ },
88
+ "decorative": {
89
+ "green": {
90
+ "$value": "{color.green.100}",
91
+ "$type": "color"
92
+ },
93
+ "blue": {
94
+ "$value": "{color.blue.100}",
95
+ "$type": "color"
96
+ },
97
+ "purple": {
98
+ "$value": "{color.purple.100}",
99
+ "$type": "color"
100
+ },
101
+ "yellow": {
102
+ "$value": "{color.yellow.100}",
103
+ "$type": "color"
104
+ },
105
+ "orange": {
106
+ "$value": "{color.orange.100}",
107
+ "$type": "color"
108
+ },
109
+ "red": {
110
+ "$value": "{color.red.100}",
111
+ "$type": "color"
112
+ },
113
+ "neutral": {
114
+ "$value": "{color.neutral.100}",
115
+ "$type": "color"
116
+ },
117
+ "magenta": {
118
+ "$value": "{color.magenta.100}",
119
+ "$type": "color"
120
+ },
121
+ "pink": {
122
+ "$value": "{color.pink.100}",
123
+ "$type": "color"
124
+ },
125
+ "aqua": {
126
+ "$value": "{color.aqua.100}",
127
+ "$type": "color"
128
+ },
129
+ "teal": {
130
+ "$value": "{color.teal.100}",
131
+ "$type": "color"
132
+ }
133
+ },
134
+ "selected": {
135
+ "$value": "{color.neutral.800}",
136
+ "$type": "color"
137
+ }
138
+ },
139
+ "border": {
140
+ "success": {
141
+ "$value": "{color.green.500}",
142
+ "$type": "color"
143
+ },
144
+ "warning": {
145
+ "$value": "{color.yellow.600}",
146
+ "$type": "color"
147
+ },
148
+ "error": {
149
+ "$value": "{color.red.600}",
150
+ "$type": "color"
151
+ },
152
+ "danger": {
153
+ "$value": "{color.red.600}",
154
+ "$type": "color"
155
+ },
156
+ "info": {
157
+ "$value": "{color.blue.600}",
158
+ "$type": "color"
159
+ },
160
+ "opportunity": {
161
+ "$value": "{color.purple.500}",
162
+ "$type": "color"
163
+ },
164
+ "decorative": {
165
+ "green": {
166
+ "$value": "{color.green.500}",
167
+ "$type": "color"
168
+ },
169
+ "blue": {
170
+ "$value": "{color.blue.600}",
171
+ "$type": "color"
172
+ },
173
+ "purple": {
174
+ "$value": "{color.purple.500}",
175
+ "$type": "color"
176
+ },
177
+ "yellow": {
178
+ "$value": "{color.yellow.600}",
179
+ "$type": "color"
180
+ },
181
+ "orange": {
182
+ "$value": "{color.orange.600}",
183
+ "$type": "color"
184
+ },
185
+ "red": {
186
+ "$value": "{color.red.600}",
187
+ "$type": "color"
188
+ },
189
+ "neutral": {
190
+ "$value": "{color.neutral.600}",
191
+ "$type": "color"
192
+ },
193
+ "magenta": {
194
+ "$value": "{color.magenta.600}",
195
+ "$type": "color"
196
+ },
197
+ "pink": {
198
+ "$value": "{color.pink.600}",
199
+ "$type": "color"
200
+ },
201
+ "aqua": {
202
+ "$value": "{color.aqua.500}",
203
+ "$type": "color"
204
+ },
205
+ "teal": {
206
+ "$value": "{color.teal.500}",
207
+ "$type": "color"
208
+ }
209
+ },
210
+ "ai_generated": {
211
+ "$value": "{color.purple.700}",
212
+ "$type": "color"
213
+ },
214
+ "base": {
215
+ "$value": "{color.neutral.200}",
216
+ "$type": "color"
217
+ },
218
+ "selected": {
219
+ "$value": "{color.neutral.800}",
220
+ "$type": "color"
221
+ }
222
+ },
223
+ "$description": "Backgrounds and borders for containers, statuses, selections, and decorative containers."
224
+ },
225
+ "gradient": {
226
+ "ai-stop-3": {
227
+ "$value": "{color.magenta.400}",
228
+ "$type": "color"
229
+ },
230
+ "$description": "AI gradients and their individual color stops.",
231
+ "ai": {
232
+ "$type": "string",
233
+ "$value": "radial-gradient(circle at bottom left, {color.blue.700} 0%, {colors.gradient.ai-stop-2} 61%, {color.magenta.400} 100%)"
234
+ },
235
+ "ai-subtle": {
236
+ "$type": "string",
237
+ "$value": "radial-gradient(circle at bottom left, color-mix(in srgb, {color.blue.700}, transparent 80%) 0%, color-mix(in srgb, {colors.gradient.ai-stop-2}, transparent 80%) 61%, color-mix(in srgb, {color.magenta.400}, transparent 80%) 100%)"
238
+ },
239
+ "ai-stop-1": {
240
+ "$value": "{color.blue.700}",
241
+ "$type": "color"
242
+ },
243
+ "ai-stop-2": {
244
+ "$value": "#9747ff",
245
+ "$description": "Theme-owned AI gradient middle stop. No exact existing seeds-color primitive; preserved for compatibility. Other stops reference seeds-color.",
246
+ "$type": "color"
247
+ }
248
+ },
249
+ "button": {
250
+ "primary": {
251
+ "border": {
252
+ "base": {
253
+ "$value": "transparent",
254
+ "$type": "color"
255
+ }
256
+ },
257
+ "background": {
258
+ "base": {
259
+ "$value": "{color.blue.700}",
260
+ "$type": "color"
261
+ },
262
+ "hover": {
263
+ "$value": "{color.blue.800}",
264
+ "$type": "color"
265
+ },
266
+ "active": {
267
+ "$value": "{color.blue.900}",
268
+ "$type": "color"
269
+ }
270
+ },
271
+ "text": {
272
+ "base": {
273
+ "$value": "{color.neutral.0}",
274
+ "$type": "color"
275
+ },
276
+ "hover": {
277
+ "$value": "{color.neutral.0}",
278
+ "$type": "color"
279
+ }
280
+ }
281
+ },
282
+ "secondary": {
283
+ "background": {
284
+ "base": {
285
+ "$value": "transparent",
286
+ "$type": "color"
287
+ },
288
+ "hover": {
289
+ "$value": "{color.neutral.800}",
290
+ "$type": "color"
291
+ },
292
+ "active": {
293
+ "$value": "{color.neutral.900}",
294
+ "$type": "color"
295
+ }
296
+ },
297
+ "border": {
298
+ "base": {
299
+ "$value": "{color.neutral.800}",
300
+ "$type": "color"
301
+ }
302
+ },
303
+ "text": {
304
+ "base": {
305
+ "$value": "{color.neutral.800}",
306
+ "$type": "color"
307
+ },
308
+ "hover": {
309
+ "$value": "{color.neutral.0}",
310
+ "$type": "color"
311
+ }
312
+ }
313
+ },
314
+ "pill": {
315
+ "background": {
316
+ "base": {
317
+ "$value": "transparent",
318
+ "$type": "color"
319
+ },
320
+ "hover": {
321
+ "$value": "{color.neutral.100}",
322
+ "$type": "color"
323
+ },
324
+ "active": {
325
+ "$value": "{color.neutral.200}",
326
+ "$type": "color"
327
+ }
328
+ },
329
+ "border": {
330
+ "base": {
331
+ "$value": "transparent",
332
+ "$type": "color"
333
+ },
334
+ "hover": {
335
+ "$value": "{color.neutral.800}",
336
+ "$type": "color"
337
+ }
338
+ },
339
+ "text": {
340
+ "base": {
341
+ "$value": "{color.neutral.800}",
342
+ "$type": "color"
343
+ },
344
+ "hover": {
345
+ "$value": "{color.neutral.900}",
346
+ "$type": "color"
347
+ }
348
+ }
349
+ },
350
+ "destructive": {
351
+ "border": {
352
+ "base": {
353
+ "$value": "transparent",
354
+ "$type": "color"
355
+ }
356
+ },
357
+ "background": {
358
+ "base": {
359
+ "$value": "{color.red.800}",
360
+ "$type": "color"
361
+ },
362
+ "hover": {
363
+ "$value": "{color.red.900}",
364
+ "$type": "color"
365
+ },
366
+ "active": {
367
+ "$value": "{color.red.1000}",
368
+ "$type": "color"
369
+ }
370
+ },
371
+ "text": {
372
+ "base": {
373
+ "$value": "{color.neutral.0}",
374
+ "$type": "color"
375
+ },
376
+ "hover": {
377
+ "$value": "{color.neutral.0}",
378
+ "$type": "color"
379
+ }
380
+ }
381
+ },
382
+ "placeholder": {
383
+ "background": {
384
+ "base": {
385
+ "$value": "transparent",
386
+ "$type": "color"
387
+ },
388
+ "hover": {
389
+ "$value": "{color.neutral.0}",
390
+ "$type": "color"
391
+ },
392
+ "active": {
393
+ "$value": "{color.neutral.0}",
394
+ "$type": "color"
395
+ }
396
+ },
397
+ "border": {
398
+ "base": {
399
+ "$value": "{color.neutral.500}",
400
+ "$type": "color"
401
+ }
402
+ },
403
+ "text": {
404
+ "base": {
405
+ "$value": "{color.blue.700}",
406
+ "$type": "color"
407
+ },
408
+ "hover": {
409
+ "$value": "{color.blue.800}",
410
+ "$type": "color"
411
+ }
412
+ }
413
+ },
414
+ "unstyled": {
415
+ "background": {
416
+ "base": {
417
+ "$value": "transparent",
418
+ "$type": "color"
419
+ }
420
+ },
421
+ "border": {
422
+ "base": {
423
+ "$value": "transparent",
424
+ "$type": "color"
425
+ }
426
+ },
427
+ "text": {
428
+ "base": {
429
+ "$value": "{color.neutral.700}",
430
+ "$type": "color"
431
+ },
432
+ "hover": {
433
+ "$value": "{color.neutral.900}",
434
+ "$type": "color"
435
+ }
436
+ }
437
+ },
438
+ "ai-primary": {
439
+ "background": {
440
+ "base": {
441
+ "$value": "{colors.gradient.ai}",
442
+ "$type": "string"
443
+ }
444
+ },
445
+ "border": {
446
+ "base": {
447
+ "$value": "transparent",
448
+ "$type": "color"
449
+ }
450
+ },
451
+ "text": {
452
+ "base": {
453
+ "$value": "{color.neutral.0}",
454
+ "$type": "color"
455
+ },
456
+ "hover": {
457
+ "$value": "{color.neutral.0}",
458
+ "$type": "color"
459
+ }
460
+ }
461
+ },
462
+ "ai-secondary": {
463
+ "background": {
464
+ "base": {
465
+ "$value": "{colors.gradient.ai-subtle}",
466
+ "$type": "string"
467
+ }
468
+ },
469
+ "border": {
470
+ "base": {
471
+ "$value": "transparent",
472
+ "$type": "color"
473
+ }
474
+ },
475
+ "text": {
476
+ "base": {
477
+ "$value": "{color.neutral.800}",
478
+ "$type": "color"
479
+ },
480
+ "hover": {
481
+ "$value": "{color.neutral.800}",
482
+ "$type": "color"
483
+ }
484
+ }
485
+ },
486
+ "ai-outline": {
487
+ "background": {
488
+ "base": {
489
+ "$value": "transparent",
490
+ "$type": "color"
491
+ }
492
+ },
493
+ "border": {
494
+ "base": {
495
+ "$value": "{colors.gradient.ai}",
496
+ "$type": "string"
497
+ }
498
+ },
499
+ "text": {
500
+ "base": {
501
+ "$value": "{color.neutral.800}",
502
+ "$type": "color"
503
+ },
504
+ "hover": {
505
+ "$value": "{color.neutral.800}",
506
+ "$type": "color"
507
+ }
508
+ }
509
+ },
510
+ "$description": "Background, border, and text colors for historical button variants and interaction states.",
511
+ "overlay": {
512
+ "background": {
513
+ "base": {
514
+ "$value": "color-mix(in srgb, {color.neutral.1100}, transparent 40%)",
515
+ "$type": "color"
516
+ },
517
+ "hover": {
518
+ "$value": "color-mix(in srgb, {color.neutral.1100}, transparent 25%)",
519
+ "$type": "color"
520
+ }
521
+ },
522
+ "text": {
523
+ "base": {
524
+ "$value": "{color.neutral.0}",
525
+ "$type": "color"
526
+ }
527
+ }
528
+ }
529
+ },
530
+ "icon": {
531
+ "positive_sentiment": {
532
+ "$value": "{color.blue.600}",
533
+ "$type": "color"
534
+ },
535
+ "negative_sentiment": {
536
+ "$value": "{color.red.600}",
537
+ "$type": "color"
538
+ },
539
+ "$description": "icon colors for emphasis, feedback, sentiment, and opportunity states.",
540
+ "base": {
541
+ "$value": "{color.neutral.800}",
542
+ "$type": "color"
543
+ },
544
+ "inverse": {
545
+ "$value": "{color.neutral.0}",
546
+ "$type": "color"
547
+ },
548
+ "success": {
549
+ "$value": "{color.green.900}",
550
+ "$type": "color"
551
+ },
552
+ "warning": {
553
+ "$value": "{color.yellow.900}",
554
+ "$type": "color"
555
+ },
556
+ "error": {
557
+ "$value": "{color.red.900}",
558
+ "$type": "color"
559
+ },
560
+ "danger": {
561
+ "$value": "{color.red.900}",
562
+ "$type": "color"
563
+ },
564
+ "info": {
565
+ "$value": "{color.blue.900}",
566
+ "$type": "color"
567
+ },
568
+ "opportunity": {
569
+ "$value": "{color.purple.800}",
570
+ "$type": "color"
571
+ },
572
+ "applied": {
573
+ "$value": "{color.blue.700}",
574
+ "$type": "color"
575
+ },
576
+ "neutral_sentiment": {
577
+ "$value": "{color.neutral.600}",
578
+ "$type": "color"
579
+ }
580
+ },
581
+ "form": {
582
+ "border": {
583
+ "error": {
584
+ "$value": "{color.red.600}",
585
+ "$type": "color"
586
+ },
587
+ "warning": {
588
+ "$value": "{color.yellow.600}",
589
+ "$type": "color"
590
+ },
591
+ "base": {
592
+ "$value": "{color.neutral.600}",
593
+ "$type": "color"
594
+ },
595
+ "selected": {
596
+ "$value": "{color.neutral.800}",
597
+ "$type": "color"
598
+ }
599
+ },
600
+ "$description": "Background, border, and placeholder colors for form controls.",
601
+ "background": {
602
+ "base": {
603
+ "$value": "{color.neutral.0}",
604
+ "$type": "color"
605
+ },
606
+ "selected": {
607
+ "$value": "{color.neutral.800}",
608
+ "$type": "color"
609
+ }
610
+ },
611
+ "placeholder": {
612
+ "base": {
613
+ "$value": "{color.neutral.700}",
614
+ "$type": "color"
615
+ }
616
+ }
617
+ },
618
+ "listItem": {
619
+ "background": {
620
+ "base": {
621
+ "$value": "transparent",
622
+ "$type": "color"
623
+ },
624
+ "hover": {
625
+ "$value": "{color.neutral.100}",
626
+ "$type": "color"
627
+ },
628
+ "selected": {
629
+ "$value": "{color.neutral.800}",
630
+ "$type": "color"
631
+ },
632
+ "active": {
633
+ "$value": "{color.neutral.400}",
634
+ "$type": "color"
635
+ }
636
+ },
637
+ "border": {
638
+ "base": {
639
+ "$value": "{color.neutral.600}",
640
+ "$type": "color"
641
+ }
642
+ },
643
+ "$description": "Background and border colors for list-item interaction states."
644
+ },
645
+ "nav": {
646
+ "navItem": {
647
+ "text": {
648
+ "base": {
649
+ "$value": "{color.neutral.0}",
650
+ "$type": "color"
651
+ }
652
+ },
653
+ "icon": {
654
+ "base": {
655
+ "$value": "{color.neutral.0}",
656
+ "$type": "color"
657
+ }
658
+ },
659
+ "indicator": {
660
+ "notification": {
661
+ "base": {
662
+ "$value": "{color.pink.600}",
663
+ "$type": "color"
664
+ }
665
+ },
666
+ "userStatus": {
667
+ "online": {
668
+ "$value": "{color.green.500}",
669
+ "$type": "color"
670
+ },
671
+ "offline": {
672
+ "$value": "{color.red.600}",
673
+ "$type": "color"
674
+ },
675
+ "unavailable": {
676
+ "$value": "{color.neutral.800}",
677
+ "$type": "color"
678
+ }
679
+ }
680
+ },
681
+ "background": {
682
+ "base": {
683
+ "$value": "transparent",
684
+ "$type": "color"
685
+ },
686
+ "hover": {
687
+ "$value": "{color.neutral.800}",
688
+ "$type": "color"
689
+ },
690
+ "active": {
691
+ "$value": "{color.neutral.1100}",
692
+ "$type": "color"
693
+ },
694
+ "selected": {
695
+ "$value": "{color.neutral.700}",
696
+ "$type": "color"
697
+ }
698
+ },
699
+ "border": {
700
+ "hover": {
701
+ "$value": "{color.neutral.700}",
702
+ "$type": "color"
703
+ },
704
+ "active": {
705
+ "$value": "{color.neutral.700}",
706
+ "$type": "color"
707
+ },
708
+ "selected": {
709
+ "$value": "{color.neutral.700}",
710
+ "$type": "color"
711
+ }
712
+ }
713
+ },
714
+ "$description": "Colors for the historical shared navigation-item API."
715
+ },
716
+ "overlay": {
717
+ "text": {
718
+ "base": {
719
+ "$value": "{color.neutral.0}",
720
+ "$type": "color"
721
+ }
722
+ },
723
+ "icon": {
724
+ "base": {
725
+ "$value": "{color.neutral.0}",
726
+ "$type": "color"
727
+ }
728
+ },
729
+ "$description": "Background and foreground colors for content displayed in overlays.",
730
+ "background": {
731
+ "base": {
732
+ "$value": "color-mix(in srgb, {color.neutral.1000}, transparent 44%)",
733
+ "$type": "color"
734
+ },
735
+ "inverse": {
736
+ "$value": "color-mix(in srgb, {color.neutral.0}, transparent 30%)",
737
+ "$type": "color"
738
+ }
739
+ }
740
+ },
741
+ "illustration": {
742
+ "fill": {
743
+ "$value": "{color.blue.400}",
744
+ "$type": "color"
745
+ },
746
+ "$description": "Default fill and stroke colors for illustrations.",
747
+ "stroke": {
748
+ "$value": "{color.neutral.900}",
749
+ "$type": "color"
750
+ }
751
+ },
752
+ "dataviz": {
753
+ "map": {
754
+ "1": {
755
+ "$value": "{color.teal.500}",
756
+ "$type": "color"
757
+ },
758
+ "2": {
759
+ "$value": "{color.purple.700}",
760
+ "$type": "color"
761
+ },
762
+ "3": {
763
+ "$value": "{color.pink.700}",
764
+ "$type": "color"
765
+ },
766
+ "4": {
767
+ "$value": "{color.yellow.500}",
768
+ "$type": "color"
769
+ },
770
+ "5": {
771
+ "$value": "{color.blue.500}",
772
+ "$type": "color"
773
+ },
774
+ "6": {
775
+ "$value": "{color.magenta.500}",
776
+ "$type": "color"
777
+ },
778
+ "7": {
779
+ "$value": "{color.green.500}",
780
+ "$type": "color"
781
+ },
782
+ "8": {
783
+ "$value": "{color.orange.500}",
784
+ "$type": "color"
785
+ },
786
+ "9": {
787
+ "$value": "{color.red.700}",
788
+ "$type": "color"
789
+ },
790
+ "10": {
791
+ "$value": "{color.teal.900}",
792
+ "$type": "color"
793
+ },
794
+ "11": {
795
+ "$value": "{color.purple.400}",
796
+ "$type": "color"
797
+ },
798
+ "12": {
799
+ "$value": "{color.pink.900}",
800
+ "$type": "color"
801
+ },
802
+ "13": {
803
+ "$value": "{color.yellow.900}",
804
+ "$type": "color"
805
+ },
806
+ "14": {
807
+ "$value": "{color.blue.900}",
808
+ "$type": "color"
809
+ },
810
+ "15": {
811
+ "$value": "{color.magenta.900}",
812
+ "$type": "color"
813
+ },
814
+ "16": {
815
+ "$value": "{color.green.900}",
816
+ "$type": "color"
817
+ },
818
+ "17": {
819
+ "$value": "{color.orange.900}",
820
+ "$type": "color"
821
+ },
822
+ "18": {
823
+ "$value": "{color.red.400}",
824
+ "$type": "color"
825
+ },
826
+ "19": {
827
+ "$value": "{color.green.700}",
828
+ "$type": "color"
829
+ },
830
+ "20": {
831
+ "$value": "{color.yellow.800}",
832
+ "$type": "color"
833
+ }
834
+ },
835
+ "list": {
836
+ "0": {
837
+ "$value": "{color.teal.500}",
838
+ "$type": "color"
839
+ },
840
+ "1": {
841
+ "$value": "{color.purple.700}",
842
+ "$type": "color"
843
+ },
844
+ "2": {
845
+ "$value": "{color.pink.700}",
846
+ "$type": "color"
847
+ },
848
+ "3": {
849
+ "$value": "{color.yellow.500}",
850
+ "$type": "color"
851
+ },
852
+ "4": {
853
+ "$value": "{color.blue.500}",
854
+ "$type": "color"
855
+ },
856
+ "5": {
857
+ "$value": "{color.magenta.500}",
858
+ "$type": "color"
859
+ },
860
+ "6": {
861
+ "$value": "{color.green.500}",
862
+ "$type": "color"
863
+ },
864
+ "7": {
865
+ "$value": "{color.orange.500}",
866
+ "$type": "color"
867
+ },
868
+ "8": {
869
+ "$value": "{color.red.700}",
870
+ "$type": "color"
871
+ },
872
+ "9": {
873
+ "$value": "{color.teal.900}",
874
+ "$type": "color"
875
+ },
876
+ "10": {
877
+ "$value": "{color.purple.400}",
878
+ "$type": "color"
879
+ },
880
+ "11": {
881
+ "$value": "{color.pink.900}",
882
+ "$type": "color"
883
+ },
884
+ "12": {
885
+ "$value": "{color.yellow.900}",
886
+ "$type": "color"
887
+ },
888
+ "13": {
889
+ "$value": "{color.blue.900}",
890
+ "$type": "color"
891
+ },
892
+ "14": {
893
+ "$value": "{color.magenta.900}",
894
+ "$type": "color"
895
+ },
896
+ "15": {
897
+ "$value": "{color.green.900}",
898
+ "$type": "color"
899
+ },
900
+ "16": {
901
+ "$value": "{color.orange.900}",
902
+ "$type": "color"
903
+ },
904
+ "17": {
905
+ "$value": "{color.red.400}",
906
+ "$type": "color"
907
+ },
908
+ "18": {
909
+ "$value": "{color.green.700}",
910
+ "$type": "color"
911
+ },
912
+ "19": {
913
+ "$value": "{color.yellow.800}",
914
+ "$type": "color"
915
+ },
916
+ "$extensions": {
917
+ "org.sproutsocial.seeds": {
918
+ "collection": "array"
919
+ }
920
+ }
921
+ },
922
+ "$description": "Categorical series and placeholder colors for data visualizations.",
923
+ "placeholder": {
924
+ "$value": "{color.neutral.300}",
925
+ "$type": "color"
926
+ }
927
+ },
928
+ "DATAVIZ_COLORS_LIST": {
929
+ "0": {
930
+ "$value": "{color.teal.500}",
931
+ "$type": "color"
932
+ },
933
+ "1": {
934
+ "$value": "{color.purple.700}",
935
+ "$type": "color"
936
+ },
937
+ "2": {
938
+ "$value": "{color.pink.700}",
939
+ "$type": "color"
940
+ },
941
+ "3": {
942
+ "$value": "{color.yellow.500}",
943
+ "$type": "color"
944
+ },
945
+ "4": {
946
+ "$value": "{color.blue.500}",
947
+ "$type": "color"
948
+ },
949
+ "5": {
950
+ "$value": "{color.magenta.500}",
951
+ "$type": "color"
952
+ },
953
+ "6": {
954
+ "$value": "{color.green.500}",
955
+ "$type": "color"
956
+ },
957
+ "7": {
958
+ "$value": "{color.orange.500}",
959
+ "$type": "color"
960
+ },
961
+ "8": {
962
+ "$value": "{color.red.700}",
963
+ "$type": "color"
964
+ },
965
+ "9": {
966
+ "$value": "{color.teal.900}",
967
+ "$type": "color"
968
+ },
969
+ "10": {
970
+ "$value": "{color.purple.400}",
971
+ "$type": "color"
972
+ },
973
+ "11": {
974
+ "$value": "{color.pink.900}",
975
+ "$type": "color"
976
+ },
977
+ "12": {
978
+ "$value": "{color.yellow.900}",
979
+ "$type": "color"
980
+ },
981
+ "13": {
982
+ "$value": "{color.blue.900}",
983
+ "$type": "color"
984
+ },
985
+ "14": {
986
+ "$value": "{color.magenta.900}",
987
+ "$type": "color"
988
+ },
989
+ "15": {
990
+ "$value": "{color.green.900}",
991
+ "$type": "color"
992
+ },
993
+ "16": {
994
+ "$value": "{color.orange.900}",
995
+ "$type": "color"
996
+ },
997
+ "17": {
998
+ "$value": "{color.red.400}",
999
+ "$type": "color"
1000
+ },
1001
+ "18": {
1002
+ "$value": "{color.green.700}",
1003
+ "$type": "color"
1004
+ },
1005
+ "19": {
1006
+ "$value": "{color.yellow.800}",
1007
+ "$type": "color"
1008
+ },
1009
+ "$extensions": {
1010
+ "org.sproutsocial.seeds": {
1011
+ "collection": "array"
1012
+ }
1013
+ },
1014
+ "$description": "Deprecated array-shaped alias of the categorical data-visualization palette."
1015
+ },
1016
+ "DATAVIZ_COLORS_MAP": {
1017
+ "1": {
1018
+ "$value": "{color.teal.500}",
1019
+ "$type": "color"
1020
+ },
1021
+ "2": {
1022
+ "$value": "{color.purple.700}",
1023
+ "$type": "color"
1024
+ },
1025
+ "3": {
1026
+ "$value": "{color.pink.700}",
1027
+ "$type": "color"
1028
+ },
1029
+ "4": {
1030
+ "$value": "{color.yellow.500}",
1031
+ "$type": "color"
1032
+ },
1033
+ "5": {
1034
+ "$value": "{color.blue.500}",
1035
+ "$type": "color"
1036
+ },
1037
+ "6": {
1038
+ "$value": "{color.magenta.500}",
1039
+ "$type": "color"
1040
+ },
1041
+ "7": {
1042
+ "$value": "{color.green.500}",
1043
+ "$type": "color"
1044
+ },
1045
+ "8": {
1046
+ "$value": "{color.orange.500}",
1047
+ "$type": "color"
1048
+ },
1049
+ "9": {
1050
+ "$value": "{color.red.700}",
1051
+ "$type": "color"
1052
+ },
1053
+ "10": {
1054
+ "$value": "{color.teal.900}",
1055
+ "$type": "color"
1056
+ },
1057
+ "11": {
1058
+ "$value": "{color.purple.400}",
1059
+ "$type": "color"
1060
+ },
1061
+ "12": {
1062
+ "$value": "{color.pink.900}",
1063
+ "$type": "color"
1064
+ },
1065
+ "13": {
1066
+ "$value": "{color.yellow.900}",
1067
+ "$type": "color"
1068
+ },
1069
+ "14": {
1070
+ "$value": "{color.blue.900}",
1071
+ "$type": "color"
1072
+ },
1073
+ "15": {
1074
+ "$value": "{color.magenta.900}",
1075
+ "$type": "color"
1076
+ },
1077
+ "16": {
1078
+ "$value": "{color.green.900}",
1079
+ "$type": "color"
1080
+ },
1081
+ "17": {
1082
+ "$value": "{color.orange.900}",
1083
+ "$type": "color"
1084
+ },
1085
+ "18": {
1086
+ "$value": "{color.red.400}",
1087
+ "$type": "color"
1088
+ },
1089
+ "19": {
1090
+ "$value": "{color.green.700}",
1091
+ "$type": "color"
1092
+ },
1093
+ "20": {
1094
+ "$value": "{color.yellow.800}",
1095
+ "$type": "color"
1096
+ },
1097
+ "$description": "Deprecated keyed alias of the categorical data-visualization palette."
1098
+ },
1099
+ "ai": {
1100
+ "feature": {
1101
+ "decorative": {
1102
+ "primary": {
1103
+ "$value": "{color.teal.800}",
1104
+ "$type": "color"
1105
+ },
1106
+ "secondary": {
1107
+ "$value": "{color.blue.900}",
1108
+ "$type": "color"
1109
+ }
1110
+ },
1111
+ "background": {
1112
+ "primary": {
1113
+ "$value": "{color.teal.800}",
1114
+ "$type": "color"
1115
+ },
1116
+ "secondary": {
1117
+ "$value": "{color.blue.900}",
1118
+ "$type": "color"
1119
+ },
1120
+ "default": {
1121
+ "primary": {
1122
+ "$value": "{color.teal.800}",
1123
+ "$type": "color"
1124
+ },
1125
+ "secondary": {
1126
+ "$value": "{color.blue.900}",
1127
+ "$type": "color"
1128
+ }
1129
+ },
1130
+ "inverse": {
1131
+ "primary": {
1132
+ "$value": "{color.teal.100}",
1133
+ "$type": "color"
1134
+ },
1135
+ "secondary": {
1136
+ "$value": "{color.blue.200}",
1137
+ "$type": "color"
1138
+ }
1139
+ }
1140
+ }
1141
+ },
1142
+ "$description": "Sprout product colors for AI feature containers."
1143
+ },
1144
+ "navigation": {
1145
+ "settings": {
1146
+ "listItem": {
1147
+ "background": {
1148
+ "base": {
1149
+ "$value": "transparent",
1150
+ "$type": "color"
1151
+ },
1152
+ "hover": {
1153
+ "$value": "{color.neutral.200}",
1154
+ "$type": "color"
1155
+ },
1156
+ "selected": {
1157
+ "$value": "{color.neutral.0}",
1158
+ "$type": "color"
1159
+ }
1160
+ }
1161
+ }
1162
+ },
1163
+ "text": {
1164
+ "base": {
1165
+ "$value": "{color.neutral.0}",
1166
+ "$type": "color"
1167
+ },
1168
+ "hover": {
1169
+ "$value": "{color.neutral.0}",
1170
+ "$type": "color"
1171
+ }
1172
+ },
1173
+ "icon": {
1174
+ "base": {
1175
+ "$value": "{color.neutral.0}",
1176
+ "$type": "color"
1177
+ },
1178
+ "hover": {
1179
+ "$value": "{color.neutral.0}",
1180
+ "$type": "color"
1181
+ }
1182
+ },
1183
+ "listItem": {
1184
+ "background": {
1185
+ "selected": {
1186
+ "$value": "{color.neutral.700}",
1187
+ "$type": "color"
1188
+ },
1189
+ "base": {
1190
+ "$value": "{color.neutral.800}",
1191
+ "$type": "color"
1192
+ },
1193
+ "hover": {
1194
+ "$value": "{color.neutral.1000}",
1195
+ "$type": "color"
1196
+ }
1197
+ }
1198
+ },
1199
+ "$description": "Sprout product colors for main, secondary, and settings navigation.",
1200
+ "main": {
1201
+ "background": {
1202
+ "base": {
1203
+ "$value": "{color.neutral.900}",
1204
+ "$type": "color"
1205
+ },
1206
+ "overflowGradient": {
1207
+ "$value": "{color.neutral.1000}",
1208
+ "$type": "color"
1209
+ }
1210
+ },
1211
+ "border": {
1212
+ "base": {
1213
+ "$value": "{color.neutral.1000}",
1214
+ "$type": "color"
1215
+ }
1216
+ }
1217
+ },
1218
+ "secondary": {
1219
+ "background": {
1220
+ "base": {
1221
+ "$value": "{color.neutral.800}",
1222
+ "$type": "color"
1223
+ }
1224
+ },
1225
+ "widget": {
1226
+ "background": {
1227
+ "base": {
1228
+ "$value": "{color.neutral.1000}",
1229
+ "$type": "color"
1230
+ }
1231
+ }
1232
+ },
1233
+ "accordion": {
1234
+ "background": {
1235
+ "base": {
1236
+ "$value": "{color.neutral.900}",
1237
+ "$type": "color"
1238
+ }
1239
+ }
1240
+ }
1241
+ }
1242
+ },
1243
+ "datePicker": {
1244
+ "comparison": {
1245
+ "background": {
1246
+ "base": {
1247
+ "$value": "{color.neutral.400}",
1248
+ "$type": "color"
1249
+ }
1250
+ },
1251
+ "text": {
1252
+ "base": {
1253
+ "$value": "{color.neutral.800}",
1254
+ "$type": "color"
1255
+ }
1256
+ }
1257
+ },
1258
+ "$description": "Sprout product colors for date-picker comparison ranges."
1259
+ },
1260
+ "listening": {
1261
+ "chart": {
1262
+ "indicator": {
1263
+ "hover": {
1264
+ "secondary": {
1265
+ "$value": "{color.neutral.0}",
1266
+ "$type": "color"
1267
+ },
1268
+ "primary": {
1269
+ "$value": "{color.neutral.1000}",
1270
+ "$type": "color"
1271
+ }
1272
+ },
1273
+ "default": {
1274
+ "primary": {
1275
+ "$value": "{color.neutral.400}",
1276
+ "$type": "color"
1277
+ },
1278
+ "secondary": {
1279
+ "$value": "{color.neutral.0}",
1280
+ "$type": "color"
1281
+ }
1282
+ }
1283
+ },
1284
+ "spike": {
1285
+ "background": {
1286
+ "base": {
1287
+ "$value": "{color.teal.500}",
1288
+ "$type": "color"
1289
+ }
1290
+ },
1291
+ "icon": {
1292
+ "base": {
1293
+ "$value": "{color.neutral.0}",
1294
+ "$type": "color"
1295
+ }
1296
+ }
1297
+ }
1298
+ },
1299
+ "topicTypes": {
1300
+ "brandHealth": {
1301
+ "$value": "{color.red.400}",
1302
+ "$type": "color"
1303
+ },
1304
+ "industryInsights": {
1305
+ "$value": "{color.green.400}",
1306
+ "$type": "color"
1307
+ },
1308
+ "competitiveAnalysis": {
1309
+ "$value": "{color.yellow.400}",
1310
+ "$type": "color"
1311
+ },
1312
+ "campaignAnalysis": {
1313
+ "$value": "{color.magenta.400}",
1314
+ "$type": "color"
1315
+ },
1316
+ "eventMonitoring": {
1317
+ "$value": "{color.aqua.400}",
1318
+ "$type": "color"
1319
+ },
1320
+ "featuredTopic": {
1321
+ "$value": "{color.green.400}",
1322
+ "$type": "color"
1323
+ },
1324
+ "customTopic": {
1325
+ "$value": "{color.blue.400}",
1326
+ "$type": "color"
1327
+ }
1328
+ },
1329
+ "worldMap": {
1330
+ "empty": {
1331
+ "$value": "{color.neutral.200}",
1332
+ "$type": "color"
1333
+ },
1334
+ "q0": {
1335
+ "$value": "{color.purple.200}",
1336
+ "$type": "color"
1337
+ },
1338
+ "q1": {
1339
+ "$value": "{color.purple.300}",
1340
+ "$type": "color"
1341
+ },
1342
+ "q2": {
1343
+ "$value": "{color.purple.400}",
1344
+ "$type": "color"
1345
+ },
1346
+ "q3": {
1347
+ "$value": "{color.purple.500}",
1348
+ "$type": "color"
1349
+ },
1350
+ "q4": {
1351
+ "$value": "{color.purple.600}",
1352
+ "$type": "color"
1353
+ },
1354
+ "q5": {
1355
+ "$value": "{color.purple.700}",
1356
+ "$type": "color"
1357
+ },
1358
+ "q6": {
1359
+ "$value": "{color.purple.800}",
1360
+ "$type": "color"
1361
+ },
1362
+ "q7": {
1363
+ "$value": "{color.purple.900}",
1364
+ "$type": "color"
1365
+ }
1366
+ },
1367
+ "$description": "Sprout product colors for Listening charts, topics, and maps."
1368
+ },
1369
+ "growth": {
1370
+ "carousel": {
1371
+ "indicator": {
1372
+ "active": {
1373
+ "$value": "{color.blue.600}",
1374
+ "$type": "color"
1375
+ },
1376
+ "inactive": {
1377
+ "$value": "{color.neutral.300}",
1378
+ "$type": "color"
1379
+ }
1380
+ }
1381
+ },
1382
+ "education": {
1383
+ "decorative": {
1384
+ "aqua": {
1385
+ "$value": "{color.aqua.600}",
1386
+ "$type": "color"
1387
+ },
1388
+ "teal": {
1389
+ "$value": "{color.teal.700}",
1390
+ "$type": "color"
1391
+ }
1392
+ }
1393
+ },
1394
+ "opportunity": {
1395
+ "background": {
1396
+ "base": {
1397
+ "$value": "{color.purple.700}",
1398
+ "$type": "color"
1399
+ },
1400
+ "secondary": {
1401
+ "$value": "{color.neutral.900}",
1402
+ "$type": "color"
1403
+ },
1404
+ "hover": {
1405
+ "$value": "{color.purple.300}",
1406
+ "$type": "color"
1407
+ }
1408
+ },
1409
+ "decorative": {
1410
+ "green": {
1411
+ "$value": "{color.green.700}",
1412
+ "$type": "color"
1413
+ },
1414
+ "lightAqua": {
1415
+ "$value": "{color.aqua.600}",
1416
+ "$type": "color"
1417
+ },
1418
+ "darkAqua": {
1419
+ "$value": "{color.aqua.1100}",
1420
+ "$type": "color"
1421
+ },
1422
+ "purple": {
1423
+ "$value": "{color.purple.700}",
1424
+ "$type": "color"
1425
+ }
1426
+ },
1427
+ "button": {
1428
+ "primary": {
1429
+ "base": {
1430
+ "$value": "{color.purple.700}",
1431
+ "$type": "color"
1432
+ },
1433
+ "hover": {
1434
+ "$value": "{color.purple.800}",
1435
+ "$type": "color"
1436
+ }
1437
+ }
1438
+ },
1439
+ "badge": {
1440
+ "background": {
1441
+ "base": {
1442
+ "$value": "{color.purple.200}",
1443
+ "$type": "color"
1444
+ },
1445
+ "active": {
1446
+ "$value": "{color.purple.800}",
1447
+ "$type": "color"
1448
+ }
1449
+ },
1450
+ "icon": {
1451
+ "base": {
1452
+ "$value": "{color.purple.700}",
1453
+ "$type": "color"
1454
+ },
1455
+ "active": {
1456
+ "$value": "{color.purple.100}",
1457
+ "$type": "color"
1458
+ }
1459
+ },
1460
+ "text": {
1461
+ "base": {
1462
+ "$value": "{color.purple.700}",
1463
+ "$type": "color"
1464
+ }
1465
+ }
1466
+ }
1467
+ },
1468
+ "darkModal": {
1469
+ "background": {
1470
+ "base": {
1471
+ "$value": "{color.aqua.1100}",
1472
+ "$type": "color"
1473
+ }
1474
+ },
1475
+ "text": {
1476
+ "base": {
1477
+ "$value": "{color.neutral.0}",
1478
+ "$type": "color"
1479
+ }
1480
+ },
1481
+ "cards": {
1482
+ "background": {
1483
+ "base": {
1484
+ "$value": "{color.neutral.0}",
1485
+ "$type": "color"
1486
+ },
1487
+ "hover": {
1488
+ "$value": "{color.purple.100}",
1489
+ "$type": "color"
1490
+ }
1491
+ },
1492
+ "text": {
1493
+ "base": {
1494
+ "$value": "{color.neutral.800}",
1495
+ "$type": "color"
1496
+ },
1497
+ "hover": {
1498
+ "$value": "{color.neutral.900}",
1499
+ "$type": "color"
1500
+ }
1501
+ },
1502
+ "border": {
1503
+ "base": {
1504
+ "$value": "{color.neutral.0}",
1505
+ "$type": "color"
1506
+ },
1507
+ "hover": {
1508
+ "$value": "{color.purple.700}",
1509
+ "$type": "color"
1510
+ }
1511
+ }
1512
+ }
1513
+ },
1514
+ "user": {
1515
+ "status": {
1516
+ "online": {
1517
+ "$value": "{color.green.700}",
1518
+ "$type": "color"
1519
+ }
1520
+ }
1521
+ },
1522
+ "$description": "Sprout product colors for Growth education, opportunity, demo, and modal experiences.",
1523
+ "featuredDemo": {
1524
+ "background": {
1525
+ "primary": {
1526
+ "base": {
1527
+ "$value": "{color.blue.700}",
1528
+ "$type": "color"
1529
+ },
1530
+ "hover": {
1531
+ "$value": "{color.blue.900}",
1532
+ "$type": "color"
1533
+ }
1534
+ },
1535
+ "secondary": {
1536
+ "base": {
1537
+ "$value": "{color.purple.800}",
1538
+ "$type": "color"
1539
+ },
1540
+ "hover": {
1541
+ "$value": "{color.purple.800}",
1542
+ "$type": "color"
1543
+ }
1544
+ }
1545
+ }
1546
+ }
1547
+ },
1548
+ "app": {
1549
+ "$description": "Application-level background colors.",
1550
+ "background": {
1551
+ "base": {
1552
+ "$value": "{color.neutral.100}",
1553
+ "$type": "color"
1554
+ }
1555
+ }
1556
+ },
1557
+ "link": {
1558
+ "$description": "Text colors for links and their interaction states.",
1559
+ "base": {
1560
+ "$value": "{color.blue.800}",
1561
+ "$type": "color"
1562
+ },
1563
+ "hover": {
1564
+ "$value": "{color.blue.900}",
1565
+ "$type": "color"
1566
+ }
1567
+ },
1568
+ "text": {
1569
+ "$description": "text hierarchy, feedback, decorative, highlight, and selection colors.",
1570
+ "headline": {
1571
+ "$value": "{color.neutral.900}",
1572
+ "$type": "color"
1573
+ },
1574
+ "subtext": {
1575
+ "$value": "{color.neutral.700}",
1576
+ "$type": "color"
1577
+ },
1578
+ "body": {
1579
+ "$value": "{color.neutral.800}",
1580
+ "$type": "color"
1581
+ },
1582
+ "inverse": {
1583
+ "$value": "{color.neutral.0}",
1584
+ "$type": "color"
1585
+ },
1586
+ "error": {
1587
+ "$value": "{color.red.900}",
1588
+ "$type": "color"
1589
+ },
1590
+ "background": {
1591
+ "highlight": {
1592
+ "$value": "{color.yellow.200}",
1593
+ "$type": "color"
1594
+ },
1595
+ "selection": {
1596
+ "$value": "{color.blue.300}",
1597
+ "$type": "color"
1598
+ }
1599
+ },
1600
+ "decorative": {
1601
+ "green": {
1602
+ "$value": "{color.green.900}",
1603
+ "$type": "color"
1604
+ },
1605
+ "blue": {
1606
+ "$value": "{color.blue.900}",
1607
+ "$type": "color"
1608
+ },
1609
+ "purple": {
1610
+ "$value": "{color.purple.800}",
1611
+ "$type": "color"
1612
+ },
1613
+ "yellow": {
1614
+ "$value": "{color.yellow.900}",
1615
+ "$type": "color"
1616
+ },
1617
+ "orange": {
1618
+ "$value": "{color.orange.900}",
1619
+ "$type": "color"
1620
+ },
1621
+ "red": {
1622
+ "$value": "{color.red.900}",
1623
+ "$type": "color"
1624
+ },
1625
+ "neutral": {
1626
+ "$value": "{color.neutral.900}",
1627
+ "$type": "color"
1628
+ },
1629
+ "magenta": {
1630
+ "$value": "{color.magenta.900}",
1631
+ "$type": "color"
1632
+ },
1633
+ "pink": {
1634
+ "$value": "{color.pink.900}",
1635
+ "$type": "color"
1636
+ },
1637
+ "aqua": {
1638
+ "$value": "{color.aqua.900}",
1639
+ "$type": "color"
1640
+ },
1641
+ "teal": {
1642
+ "$value": "{color.teal.900}",
1643
+ "$type": "color"
1644
+ }
1645
+ },
1646
+ "ai_generated": {
1647
+ "$value": "{color.neutral.900}",
1648
+ "$type": "color"
1649
+ }
1650
+ },
1651
+ "menuItem": {
1652
+ "$description": "Background colors for menu-item interaction states.",
1653
+ "background": {
1654
+ "active": {
1655
+ "$value": "{color.neutral.400}",
1656
+ "$type": "color"
1657
+ }
1658
+ }
1659
+ },
1660
+ "elevation": {
1661
+ "$description": "Color used by container elevation shadows.",
1662
+ "base": {
1663
+ "$value": "rgb(from {color.neutral.900} r g b / calc(61 / 255))",
1664
+ "$type": "color"
1665
+ }
1666
+ },
1667
+ "userStatus": {
1668
+ "$description": "Indicator colors for user availability states.",
1669
+ "online": {
1670
+ "$value": "{color.green.700}",
1671
+ "$type": "color"
1672
+ },
1673
+ "offline": {
1674
+ "$value": "{color.red.600}",
1675
+ "$type": "color"
1676
+ },
1677
+ "unavailable": {
1678
+ "$value": "{color.neutral.600}",
1679
+ "$type": "color"
1680
+ }
1681
+ },
1682
+ "analytics": {
1683
+ "$description": "Sprout product colors for Analytics trends and overlays.",
1684
+ "trend": {
1685
+ "positive": {
1686
+ "$value": "{color.teal.800}",
1687
+ "$type": "color"
1688
+ },
1689
+ "neutral": {
1690
+ "$value": "{color.neutral.800}",
1691
+ "$type": "color"
1692
+ },
1693
+ "negative": {
1694
+ "$value": "{color.neutral.800}",
1695
+ "$type": "color"
1696
+ }
1697
+ },
1698
+ "overlay": {
1699
+ "background": {
1700
+ "base": {
1701
+ "$value": "color-mix(in srgb, {color.neutral.0}, transparent 20%)",
1702
+ "$type": "color"
1703
+ }
1704
+ }
1705
+ }
1706
+ },
1707
+ "cardControl": {
1708
+ "$description": "Sprout product colors for card-control interaction states.",
1709
+ "background": {
1710
+ "base": {
1711
+ "$value": "{color.neutral.0}",
1712
+ "$type": "color"
1713
+ },
1714
+ "selected": {
1715
+ "$value": "{color.neutral.800}",
1716
+ "$type": "color"
1717
+ },
1718
+ "hover": {
1719
+ "$value": "{color.neutral.100}",
1720
+ "$type": "color"
1721
+ }
1722
+ },
1723
+ "text": {
1724
+ "selected": {
1725
+ "$value": "{color.neutral.0}",
1726
+ "$type": "color"
1727
+ }
1728
+ }
1729
+ },
1730
+ "tags": {
1731
+ "$description": "Sprout product colors for collection tags.",
1732
+ "collections": {
1733
+ "background": {
1734
+ "base": {
1735
+ "$value": "{color.neutral.100}",
1736
+ "$type": "color"
1737
+ }
1738
+ }
1739
+ }
1740
+ },
1741
+ "PLACEHOLDER": {
1742
+ "$value": "{color.neutral.300}",
1743
+ "$type": "color"
1744
+ }
1745
+ },
1746
+ "radii": {
1747
+ "inner": {
1748
+ "$value": "{border.radius.500}",
1749
+ "$type": "dimension"
1750
+ },
1751
+ "outer": {
1752
+ "$value": "{border.radius.600}",
1753
+ "$type": "dimension"
1754
+ },
1755
+ "pill": {
1756
+ "$value": "{border.radius.1000}",
1757
+ "$type": "dimension"
1758
+ }
1759
+ },
1760
+ "shadows": {
1761
+ "low": {
1762
+ "$value": "{elevation.level.100} {colors.elevation.base}",
1763
+ "$type": "string"
1764
+ },
1765
+ "medium": {
1766
+ "$value": "{elevation.level.300} {colors.elevation.base}",
1767
+ "$type": "string"
1768
+ },
1769
+ "high": {
1770
+ "$value": "{elevation.level.400} {colors.elevation.base}",
1771
+ "$type": "string"
1772
+ }
1773
+ },
1774
+ "mode": {
1775
+ "$type": "string",
1776
+ "$value": "light"
1777
+ },
1778
+ "css": {
1779
+ "background": {
1780
+ "$type": "color",
1781
+ "$value": "{colors.app.background.base}",
1782
+ "$description": "Background CSS alias for colors.app.background.base."
1783
+ },
1784
+ "foreground": {
1785
+ "$type": "color",
1786
+ "$value": "{colors.text.body}",
1787
+ "$description": "Foreground CSS alias for colors.text.body."
1788
+ },
1789
+ "card": {
1790
+ "$type": "color",
1791
+ "$value": "{colors.container.background.base}",
1792
+ "$description": "Card CSS alias for colors.container.background.base."
1793
+ },
1794
+ "card-foreground": {
1795
+ "$type": "color",
1796
+ "$value": "{colors.text.headline}",
1797
+ "$description": "Card foreground CSS alias for colors.text.headline."
1798
+ },
1799
+ "popover": {
1800
+ "$type": "color",
1801
+ "$value": "{colors.container.background.base}",
1802
+ "$description": "Popover CSS alias for colors.container.background.base."
1803
+ },
1804
+ "popover-foreground": {
1805
+ "$type": "color",
1806
+ "$value": "{colors.text.body}",
1807
+ "$description": "Popover foreground CSS alias for colors.text.body."
1808
+ },
1809
+ "primary": {
1810
+ "$type": "color",
1811
+ "$value": "{colors.button.primary.background.base}",
1812
+ "$description": "Primary CSS alias for colors.button.primary.background.base."
1813
+ },
1814
+ "primary-foreground": {
1815
+ "$type": "color",
1816
+ "$value": "{colors.button.primary.text.base}",
1817
+ "$description": "Primary foreground CSS alias for colors.button.primary.text.base."
1818
+ },
1819
+ "secondary": {
1820
+ "$type": "color",
1821
+ "$value": "{colors.container.border.base}",
1822
+ "$description": "Secondary CSS alias for colors.container.border.base."
1823
+ },
1824
+ "secondary-foreground": {
1825
+ "$type": "color",
1826
+ "$value": "{colors.text.body}",
1827
+ "$description": "Secondary foreground CSS alias for colors.text.body."
1828
+ },
1829
+ "muted": {
1830
+ "$type": "color",
1831
+ "$value": "{colors.container.background.decorative.neutral}",
1832
+ "$description": "Muted CSS alias for colors.container.background.decorative.neutral."
1833
+ },
1834
+ "muted-foreground": {
1835
+ "$type": "color",
1836
+ "$value": "{colors.text.subtext}",
1837
+ "$description": "Muted foreground CSS alias for colors.text.subtext."
1838
+ },
1839
+ "accent": {
1840
+ "$type": "color",
1841
+ "$value": "{colors.listItem.background.hover}",
1842
+ "$description": "Accent CSS alias for colors.listItem.background.hover."
1843
+ },
1844
+ "accent-foreground": {
1845
+ "$type": "color",
1846
+ "$value": "{colors.text.body}",
1847
+ "$description": "Accent foreground CSS alias for colors.text.body."
1848
+ },
1849
+ "destructive": {
1850
+ "$type": "color",
1851
+ "$value": "{colors.button.destructive.background.base}",
1852
+ "$description": "Destructive CSS alias for colors.button.destructive.background.base."
1853
+ },
1854
+ "destructive-foreground": {
1855
+ "$type": "color",
1856
+ "$value": "{colors.button.destructive.text.base}",
1857
+ "$description": "Destructive foreground CSS alias for colors.button.destructive.text.base."
1858
+ },
1859
+ "border": {
1860
+ "$type": "color",
1861
+ "$value": "{colors.container.border.base}",
1862
+ "$description": "Border CSS alias for colors.container.border.base."
1863
+ },
1864
+ "input": {
1865
+ "$type": "color",
1866
+ "$value": "{colors.form.border.base}",
1867
+ "$description": "Input CSS alias for colors.form.border.base."
1868
+ },
1869
+ "ring": {
1870
+ "$type": "color",
1871
+ "$value": "{colors.form.border.selected}",
1872
+ "$description": "Ring CSS alias for colors.form.border.selected."
1873
+ },
1874
+ "radius": {
1875
+ "$type": "dimension",
1876
+ "$value": "{radii.inner}",
1877
+ "$description": "Radius CSS alias for radii.inner."
1878
+ },
1879
+ "sidebar": {
1880
+ "$type": "color",
1881
+ "$value": "{colors.navigation.main.background.base}",
1882
+ "$description": "Sidebar CSS alias for colors.navigation.main.background.base."
1883
+ },
1884
+ "sidebar-foreground": {
1885
+ "$type": "color",
1886
+ "$value": "{colors.navigation.text.base}",
1887
+ "$description": "Sidebar foreground CSS alias for colors.navigation.text.base."
1888
+ },
1889
+ "sidebar-primary": {
1890
+ "$type": "color",
1891
+ "$value": "{colors.navigation.listItem.background.selected}",
1892
+ "$description": "Sidebar primary CSS alias for colors.navigation.listItem.background.selected."
1893
+ },
1894
+ "sidebar-primary-foreground": {
1895
+ "$type": "color",
1896
+ "$value": "{colors.navigation.text.base}",
1897
+ "$description": "Sidebar primary foreground CSS alias for colors.navigation.text.base."
1898
+ },
1899
+ "sidebar-accent": {
1900
+ "$type": "color",
1901
+ "$value": "{colors.navigation.listItem.background.hover}",
1902
+ "$description": "Sidebar accent CSS alias for colors.navigation.listItem.background.hover."
1903
+ },
1904
+ "sidebar-accent-foreground": {
1905
+ "$type": "color",
1906
+ "$value": "{colors.navigation.text.hover}",
1907
+ "$description": "Sidebar accent foreground CSS alias for colors.navigation.text.hover."
1908
+ },
1909
+ "sidebar-border": {
1910
+ "$type": "color",
1911
+ "$value": "{colors.navigation.main.border.base}",
1912
+ "$description": "Sidebar border CSS alias for colors.navigation.main.border.base."
1913
+ },
1914
+ "sidebar-ring": {
1915
+ "$type": "color",
1916
+ "$value": "{colors.form.border.selected}",
1917
+ "$description": "Sidebar ring CSS alias for colors.form.border.selected."
1918
+ },
1919
+ "chart-1": {
1920
+ "$type": "color",
1921
+ "$value": "{colors.dataviz.map.1}",
1922
+ "$description": "Chart 1 CSS alias for colors.dataviz.map.1."
1923
+ },
1924
+ "chart-2": {
1925
+ "$type": "color",
1926
+ "$value": "{colors.dataviz.map.2}",
1927
+ "$description": "Chart 2 CSS alias for colors.dataviz.map.2."
1928
+ },
1929
+ "chart-3": {
1930
+ "$type": "color",
1931
+ "$value": "{colors.dataviz.map.3}",
1932
+ "$description": "Chart 3 CSS alias for colors.dataviz.map.3."
1933
+ },
1934
+ "chart-4": {
1935
+ "$type": "color",
1936
+ "$value": "{colors.dataviz.map.4}",
1937
+ "$description": "Chart 4 CSS alias for colors.dataviz.map.4."
1938
+ },
1939
+ "chart-5": {
1940
+ "$type": "color",
1941
+ "$value": "{colors.dataviz.map.5}",
1942
+ "$description": "Chart 5 CSS alias for colors.dataviz.map.5."
1943
+ }
1944
+ }
1945
+ }