@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,712 @@
1
+ {
2
+ "breakpoints": {
3
+ "0": "900px",
4
+ "1": "1200px",
5
+ "2": "1500px",
6
+ "3": "1800px",
7
+ "sm": "640px",
8
+ "md": "768px",
9
+ "lg": "1024px",
10
+ "xl": "1280px"
11
+ },
12
+ "colors": {
13
+ "container": {
14
+ "background": {
15
+ "positive_sentiment": "#3876e3",
16
+ "negative_sentiment": "#f76054",
17
+ "neutral_sentiment": "#c8cccc",
18
+ "ai_generated": "radial-gradient(circle at bottom left, color-mix(in srgb, #679eff, transparent 80%) 0%, color-mix(in srgb, #b984ff, transparent 80%) 61%, color-mix(in srgb, #f282f5, transparent 80%) 100%), #273333",
19
+ "base": "#273333",
20
+ "success": "#006b40",
21
+ "warning": "#944c0c",
22
+ "error": "#992222",
23
+ "info": "#0c3f89",
24
+ "opportunity": "#483a9c",
25
+ "danger": "#992222",
26
+ "decorative": {
27
+ "green": "#006b40",
28
+ "blue": "#0c3f89",
29
+ "purple": "#483a9c",
30
+ "yellow": "#944c0c",
31
+ "orange": "#962c0b",
32
+ "red": "#992222",
33
+ "neutral": "#162020",
34
+ "magenta": "#6c2277",
35
+ "pink": "#931847",
36
+ "aqua": "#035e73",
37
+ "teal": "#026661"
38
+ },
39
+ "selected": "#ffffff"
40
+ },
41
+ "border": {
42
+ "success": "#59cb59",
43
+ "warning": "#ffbc00",
44
+ "error": "#ed4c42",
45
+ "danger": "#ed4c42",
46
+ "info": "#2b68d3",
47
+ "opportunity": "#9180f4",
48
+ "decorative": {
49
+ "green": "#59cb59",
50
+ "blue": "#2b68d3",
51
+ "purple": "#9180f4",
52
+ "yellow": "#ffbc00",
53
+ "orange": "#f57d33",
54
+ "red": "#ed4c42",
55
+ "neutral": "#6e797a",
56
+ "magenta": "#c44eb9",
57
+ "pink": "#e0447c",
58
+ "aqua": "#17b8ce",
59
+ "teal": "#08c4b2"
60
+ },
61
+ "ai_generated": "#6f5ed3",
62
+ "base": "#040404",
63
+ "selected": "#ffffff"
64
+ }
65
+ },
66
+ "gradient": {
67
+ "ai-stop-3": "#f282f5",
68
+ "ai": "radial-gradient(circle at bottom left, #679eff 0%, #b984ff 61%, #f282f5 100%)",
69
+ "ai-subtle": "radial-gradient(circle at bottom left, color-mix(in srgb, #679eff, transparent 80%) 0%, color-mix(in srgb, #b984ff, transparent 80%) 61%, color-mix(in srgb, #f282f5, transparent 80%) 100%)",
70
+ "ai-stop-1": "#679eff",
71
+ "ai-stop-2": "#b984ff"
72
+ },
73
+ "button": {
74
+ "primary": {
75
+ "border": {
76
+ "base": "#00000000"
77
+ },
78
+ "background": {
79
+ "base": "#679eff",
80
+ "hover": "#a1c2f8",
81
+ "active": "#c7dbf9"
82
+ },
83
+ "text": {
84
+ "base": "#273333",
85
+ "hover": "#162020"
86
+ }
87
+ },
88
+ "secondary": {
89
+ "background": {
90
+ "base": "#00000000",
91
+ "hover": "#f3f4f4",
92
+ "active": "#ffffff"
93
+ },
94
+ "border": {
95
+ "base": "#ffffff"
96
+ },
97
+ "text": {
98
+ "base": "#ffffff",
99
+ "hover": "#364141"
100
+ }
101
+ },
102
+ "pill": {
103
+ "background": {
104
+ "base": "#00000000",
105
+ "hover": "#162020",
106
+ "active": "#273333"
107
+ },
108
+ "border": {
109
+ "base": "#00000000",
110
+ "hover": "#ffffff"
111
+ },
112
+ "text": {
113
+ "base": "#f3f4f4",
114
+ "hover": "#ffffff"
115
+ }
116
+ },
117
+ "destructive": {
118
+ "border": {
119
+ "base": "#00000000"
120
+ },
121
+ "background": {
122
+ "base": "#ff7f6e",
123
+ "hover": "#ff9c8f",
124
+ "active": "#ffb8b1"
125
+ },
126
+ "text": {
127
+ "base": "#273333",
128
+ "hover": "#162020"
129
+ }
130
+ },
131
+ "placeholder": {
132
+ "background": {
133
+ "base": "#00000000",
134
+ "hover": "#040404",
135
+ "active": "#040404"
136
+ },
137
+ "border": {
138
+ "base": "#929a9b"
139
+ },
140
+ "text": {
141
+ "base": "#679eff",
142
+ "hover": "#a1c2f8"
143
+ }
144
+ },
145
+ "unstyled": {
146
+ "background": {
147
+ "base": "#00000000"
148
+ },
149
+ "border": {
150
+ "base": "#00000000"
151
+ },
152
+ "text": {
153
+ "base": "#c8cccc",
154
+ "hover": "#dee1e1"
155
+ }
156
+ },
157
+ "ai-primary": {
158
+ "background": {
159
+ "base": "radial-gradient(circle at bottom left, #679eff 0%, #b984ff 61%, #f282f5 100%)"
160
+ },
161
+ "border": {
162
+ "base": "#00000000"
163
+ },
164
+ "text": {
165
+ "base": "#ffffff",
166
+ "hover": "#ffffff"
167
+ }
168
+ },
169
+ "ai-secondary": {
170
+ "background": {
171
+ "base": "radial-gradient(circle at bottom left, color-mix(in srgb, #679eff, transparent 80%) 0%, color-mix(in srgb, #b984ff, transparent 80%) 61%, color-mix(in srgb, #f282f5, transparent 80%) 100%)"
172
+ },
173
+ "border": {
174
+ "base": "#00000000"
175
+ },
176
+ "text": {
177
+ "base": "#f3f4f4",
178
+ "hover": "#f3f4f4"
179
+ }
180
+ },
181
+ "ai-outline": {
182
+ "background": {
183
+ "base": "#00000000"
184
+ },
185
+ "border": {
186
+ "base": "radial-gradient(circle at bottom left, #679eff 0%, #b984ff 61%, #f282f5 100%)"
187
+ },
188
+ "text": {
189
+ "base": "#f3f4f4",
190
+ "hover": "#f3f4f4"
191
+ }
192
+ },
193
+ "overlay": {
194
+ "background": {
195
+ "base": "color-mix(in srgb, #ffffff, transparent 40%)",
196
+ "hover": "color-mix(in srgb, #ffffff, transparent 25%)"
197
+ },
198
+ "text": {
199
+ "base": "#162020"
200
+ }
201
+ }
202
+ },
203
+ "icon": {
204
+ "positive_sentiment": "#2b68d3",
205
+ "negative_sentiment": "#ed4c42",
206
+ "base": "#f3f4f4",
207
+ "inverse": "#273333",
208
+ "success": "#d7f4d7",
209
+ "warning": "#fdefcd",
210
+ "error": "#ffd5d2",
211
+ "danger": "#ffd5d2",
212
+ "info": "#deebfe",
213
+ "opportunity": "#eaeaf9",
214
+ "applied": "#679eff",
215
+ "neutral_sentiment": "#929a9b"
216
+ },
217
+ "form": {
218
+ "border": {
219
+ "error": "#ed4c42",
220
+ "warning": "#ffbc00",
221
+ "base": "#929a9b",
222
+ "selected": "#ffffff"
223
+ },
224
+ "background": {
225
+ "base": "#273333",
226
+ "selected": "#ffffff"
227
+ },
228
+ "placeholder": {
229
+ "base": "#929a9b"
230
+ }
231
+ },
232
+ "listItem": {
233
+ "background": {
234
+ "base": "#00000000",
235
+ "hover": "#364141",
236
+ "selected": "#ffffff",
237
+ "active": "#ffffff"
238
+ },
239
+ "border": {
240
+ "base": "#6e797a"
241
+ }
242
+ },
243
+ "nav": {
244
+ "navItem": {
245
+ "text": {
246
+ "base": "#ffffff"
247
+ },
248
+ "icon": {
249
+ "base": "#ffffff"
250
+ },
251
+ "indicator": {
252
+ "notification": {
253
+ "base": "#e0447c"
254
+ },
255
+ "userStatus": {
256
+ "online": "#59cb59",
257
+ "offline": "#ed4c42",
258
+ "unavailable": "#364141"
259
+ }
260
+ },
261
+ "background": {
262
+ "base": "#00000000",
263
+ "hover": "#364141",
264
+ "active": "#040404",
265
+ "selected": "#515e5f"
266
+ },
267
+ "border": {
268
+ "hover": "#515e5f",
269
+ "active": "#515e5f",
270
+ "selected": "#515e5f"
271
+ }
272
+ }
273
+ },
274
+ "overlay": {
275
+ "text": {
276
+ "base": "#ffffff"
277
+ },
278
+ "icon": {
279
+ "base": "#ffffff"
280
+ },
281
+ "background": {
282
+ "base": "color-mix(in srgb, #162020, transparent 28%)",
283
+ "inverse": "color-mix(in srgb, #040404, transparent 30%)"
284
+ }
285
+ },
286
+ "illustration": {
287
+ "fill": "#679eff",
288
+ "stroke": "#f3f4f4"
289
+ },
290
+ "dataviz": {
291
+ "map": {
292
+ "1": "#24e0c5",
293
+ "2": "#a193f2",
294
+ "3": "#ff76ae",
295
+ "4": "#ffcd1c",
296
+ "5": "#679eff",
297
+ "6": "#f282f5",
298
+ "7": "#75dd66",
299
+ "8": "#ff9c5d",
300
+ "9": "#db3e3e",
301
+ "10": "#0b968f",
302
+ "11": "#6f5ed3",
303
+ "12": "#ce3665",
304
+ "13": "#ba7506",
305
+ "14": "#205bc3",
306
+ "15": "#ac44a8",
307
+ "16": "#0ca750",
308
+ "17": "#ed7024",
309
+ "18": "#ff7f6e",
310
+ "19": "#c2f2bd",
311
+ "20": "#ffe99a"
312
+ },
313
+ "list": {
314
+ "0": "#24e0c5",
315
+ "1": "#a193f2",
316
+ "2": "#ff76ae",
317
+ "3": "#ffcd1c",
318
+ "4": "#679eff",
319
+ "5": "#f282f5",
320
+ "6": "#75dd66",
321
+ "7": "#ff9c5d",
322
+ "8": "#db3e3e",
323
+ "9": "#0b968f",
324
+ "10": "#6f5ed3",
325
+ "11": "#ce3665",
326
+ "12": "#ba7506",
327
+ "13": "#205bc3",
328
+ "14": "#ac44a8",
329
+ "15": "#0ca750",
330
+ "16": "#ed7024",
331
+ "17": "#ff7f6e",
332
+ "18": "#c2f2bd",
333
+ "19": "#ffe99a"
334
+ },
335
+ "placeholder": "#364141"
336
+ },
337
+ "DATAVIZ_COLORS_LIST": {
338
+ "0": "#24e0c5",
339
+ "1": "#a193f2",
340
+ "2": "#ff76ae",
341
+ "3": "#ffcd1c",
342
+ "4": "#679eff",
343
+ "5": "#f282f5",
344
+ "6": "#75dd66",
345
+ "7": "#ff9c5d",
346
+ "8": "#db3e3e",
347
+ "9": "#0b968f",
348
+ "10": "#6f5ed3",
349
+ "11": "#ce3665",
350
+ "12": "#ba7506",
351
+ "13": "#205bc3",
352
+ "14": "#ac44a8",
353
+ "15": "#0ca750",
354
+ "16": "#ed7024",
355
+ "17": "#ff7f6e",
356
+ "18": "#c2f2bd",
357
+ "19": "#ffe99a"
358
+ },
359
+ "DATAVIZ_COLORS_MAP": {
360
+ "1": "#24e0c5",
361
+ "2": "#a193f2",
362
+ "3": "#ff76ae",
363
+ "4": "#ffcd1c",
364
+ "5": "#679eff",
365
+ "6": "#f282f5",
366
+ "7": "#75dd66",
367
+ "8": "#ff9c5d",
368
+ "9": "#db3e3e",
369
+ "10": "#0b968f",
370
+ "11": "#6f5ed3",
371
+ "12": "#ce3665",
372
+ "13": "#ba7506",
373
+ "14": "#205bc3",
374
+ "15": "#ac44a8",
375
+ "16": "#0ca750",
376
+ "17": "#ed7024",
377
+ "18": "#ff7f6e",
378
+ "19": "#c2f2bd",
379
+ "20": "#ffe99a"
380
+ },
381
+ "ai": {
382
+ "feature": {
383
+ "decorative": {
384
+ "primary": "#067c7c",
385
+ "secondary": "#0c3f89"
386
+ },
387
+ "background": {
388
+ "primary": "#cdf7ef",
389
+ "secondary": "#c7dbf9",
390
+ "default": {
391
+ "primary": "#cdf7ef",
392
+ "secondary": "#c7dbf9"
393
+ },
394
+ "inverse": {
395
+ "primary": "#067c7c",
396
+ "secondary": "#0c3f89"
397
+ }
398
+ }
399
+ }
400
+ },
401
+ "navigation": {
402
+ "settings": {
403
+ "listItem": {
404
+ "background": {
405
+ "base": "#00000000",
406
+ "hover": "#040404",
407
+ "selected": "#364141"
408
+ }
409
+ }
410
+ },
411
+ "text": {
412
+ "base": "#ffffff",
413
+ "hover": "#ffffff"
414
+ },
415
+ "icon": {
416
+ "base": "#ffffff",
417
+ "hover": "#ffffff"
418
+ },
419
+ "listItem": {
420
+ "background": {
421
+ "selected": "#515e5f",
422
+ "base": "#162020",
423
+ "hover": "#040404"
424
+ }
425
+ },
426
+ "main": {
427
+ "background": {
428
+ "base": "#162020",
429
+ "overflowGradient": "#040404"
430
+ },
431
+ "border": {
432
+ "base": "#040404"
433
+ }
434
+ },
435
+ "secondary": {
436
+ "background": {
437
+ "base": "#273333"
438
+ },
439
+ "widget": {
440
+ "background": {
441
+ "base": "#364141"
442
+ }
443
+ },
444
+ "accordion": {
445
+ "background": {
446
+ "base": "rgb(from #162020 r g b / calc(163 / 255))"
447
+ }
448
+ }
449
+ }
450
+ },
451
+ "datePicker": {
452
+ "comparison": {
453
+ "background": {
454
+ "base": "#b0b6b7"
455
+ },
456
+ "text": {
457
+ "base": "#364141"
458
+ }
459
+ }
460
+ },
461
+ "listening": {
462
+ "chart": {
463
+ "indicator": {
464
+ "hover": {
465
+ "secondary": "#ffffff",
466
+ "primary": "#c8cccc"
467
+ },
468
+ "default": {
469
+ "primary": "#f3f4f4",
470
+ "secondary": "#273333"
471
+ }
472
+ },
473
+ "spike": {
474
+ "background": {
475
+ "base": "#08c4b2"
476
+ },
477
+ "icon": {
478
+ "base": "#ffffff"
479
+ }
480
+ }
481
+ },
482
+ "topicTypes": {
483
+ "brandHealth": "#ff7f6e",
484
+ "industryInsights": "#75dd66",
485
+ "competitiveAnalysis": "#ffd943",
486
+ "campaignAnalysis": "#f282f5",
487
+ "eventMonitoring": "#33d6e2",
488
+ "featuredTopic": "#75dd66",
489
+ "customTopic": "#24e0c5"
490
+ },
491
+ "worldMap": {
492
+ "empty": "#dee1e1",
493
+ "q0": "#d8d7f9",
494
+ "q1": "#c1c1f7",
495
+ "q2": "#a193f2",
496
+ "q3": "#9180f4",
497
+ "q4": "#816fea",
498
+ "q5": "#6f5ed3",
499
+ "q6": "#5e4eba",
500
+ "q7": "#483a9c"
501
+ }
502
+ },
503
+ "growth": {
504
+ "carousel": {
505
+ "indicator": {
506
+ "active": "#2b68d3",
507
+ "inactive": "#c8cccc"
508
+ }
509
+ },
510
+ "education": {
511
+ "decorative": {
512
+ "aqua": "#0797ae",
513
+ "teal": "#08c4b2"
514
+ }
515
+ },
516
+ "opportunity": {
517
+ "background": {
518
+ "base": "#6f5ed3",
519
+ "secondary": "#515e5f",
520
+ "hover": "#9180f4"
521
+ },
522
+ "decorative": {
523
+ "green": "#0ca750",
524
+ "lightAqua": "#0797ae",
525
+ "darkAqua": "#002838",
526
+ "purple": "#6f5ed3"
527
+ },
528
+ "button": {
529
+ "primary": {
530
+ "base": "#a193f2",
531
+ "hover": "#c1c1f7"
532
+ }
533
+ },
534
+ "badge": {
535
+ "background": {
536
+ "base": "#6f5ed3",
537
+ "active": "#eaeaf9"
538
+ },
539
+ "icon": {
540
+ "base": "#d8d7f9",
541
+ "active": "#5e4eba"
542
+ },
543
+ "text": {
544
+ "base": "#d8d7f9"
545
+ }
546
+ }
547
+ },
548
+ "darkModal": {
549
+ "background": {
550
+ "base": "#002838"
551
+ },
552
+ "text": {
553
+ "base": "#ffffff"
554
+ },
555
+ "cards": {
556
+ "background": {
557
+ "base": "#ffffff",
558
+ "hover": "#eaeaf9"
559
+ },
560
+ "text": {
561
+ "base": "#364141",
562
+ "hover": "#273333"
563
+ },
564
+ "border": {
565
+ "base": "#ffffff",
566
+ "hover": "#6f5ed3"
567
+ }
568
+ }
569
+ },
570
+ "user": {
571
+ "status": {
572
+ "online": "#0ca750"
573
+ }
574
+ },
575
+ "featuredDemo": {
576
+ "background": {
577
+ "primary": {
578
+ "base": "#679eff",
579
+ "hover": "#deebfe"
580
+ },
581
+ "secondary": {
582
+ "base": "#9180f4",
583
+ "hover": "#eaeaf9"
584
+ }
585
+ }
586
+ }
587
+ },
588
+ "app": {
589
+ "background": {
590
+ "base": "#162020"
591
+ }
592
+ },
593
+ "link": {
594
+ "base": "#679eff",
595
+ "hover": "#a1c2f8"
596
+ },
597
+ "text": {
598
+ "headline": "#ffffff",
599
+ "subtext": "#dee1e1",
600
+ "body": "#f3f4f4",
601
+ "inverse": "#273333",
602
+ "error": "#ffd5d2",
603
+ "background": {
604
+ "highlight": "#944c0c",
605
+ "selection": "#1150aa"
606
+ },
607
+ "decorative": {
608
+ "green": "#d7f4d7",
609
+ "blue": "#deebfe",
610
+ "purple": "#eaeaf9",
611
+ "yellow": "#fdefcd",
612
+ "orange": "#fcdccc",
613
+ "red": "#ffd5d2",
614
+ "neutral": "#f3f4f4",
615
+ "magenta": "#f9e3fc",
616
+ "pink": "#fcdbeb",
617
+ "aqua": "#c5f9f9",
618
+ "teal": "#cdf7ef"
619
+ },
620
+ "ai_generated": "#ffffff"
621
+ },
622
+ "menuItem": {
623
+ "background": {
624
+ "active": "#515e5f"
625
+ }
626
+ },
627
+ "elevation": {
628
+ "base": "rgb(from #040404 r g b / calc(255 / 255))"
629
+ },
630
+ "userStatus": {
631
+ "online": "#59cb59",
632
+ "offline": "#f76054",
633
+ "unavailable": "#929a9b"
634
+ },
635
+ "analytics": {
636
+ "trend": {
637
+ "positive": "#08c4b2",
638
+ "neutral": "#f3f4f4",
639
+ "negative": "#f3f4f4"
640
+ },
641
+ "overlay": {
642
+ "background": {
643
+ "base": "color-mix(in srgb, #273333, transparent 20%)"
644
+ }
645
+ }
646
+ },
647
+ "cardControl": {
648
+ "background": {
649
+ "base": "#273333",
650
+ "selected": "#515e5f",
651
+ "hover": "#364141"
652
+ },
653
+ "text": {
654
+ "selected": "#f3f4f4"
655
+ }
656
+ },
657
+ "tags": {
658
+ "collections": {
659
+ "background": {
660
+ "base": "#364141"
661
+ }
662
+ }
663
+ },
664
+ "PLACEHOLDER": "#364141"
665
+ },
666
+ "radii": {
667
+ "inner": "6px",
668
+ "outer": "8px",
669
+ "pill": "999999px"
670
+ },
671
+ "shadows": {
672
+ "low": "0px 2px 4px rgb(from #040404 r g b / calc(255 / 255))",
673
+ "medium": "0px 8px 16px rgb(from #040404 r g b / calc(255 / 255))",
674
+ "high": "0px 16px 32px rgb(from #040404 r g b / calc(255 / 255))"
675
+ },
676
+ "mode": "dark",
677
+ "css": {
678
+ "background": "#162020",
679
+ "foreground": "#f3f4f4",
680
+ "card": "#273333",
681
+ "card-foreground": "#ffffff",
682
+ "popover": "#273333",
683
+ "popover-foreground": "#f3f4f4",
684
+ "primary": "#679eff",
685
+ "primary-foreground": "#273333",
686
+ "secondary": "#040404",
687
+ "secondary-foreground": "#f3f4f4",
688
+ "muted": "#162020",
689
+ "muted-foreground": "#dee1e1",
690
+ "accent": "#364141",
691
+ "accent-foreground": "#f3f4f4",
692
+ "destructive": "#ff7f6e",
693
+ "destructive-foreground": "#273333",
694
+ "border": "#040404",
695
+ "input": "#929a9b",
696
+ "ring": "#ffffff",
697
+ "radius": "6px",
698
+ "sidebar": "#162020",
699
+ "sidebar-foreground": "#ffffff",
700
+ "sidebar-primary": "#515e5f",
701
+ "sidebar-primary-foreground": "#ffffff",
702
+ "sidebar-accent": "#040404",
703
+ "sidebar-accent-foreground": "#ffffff",
704
+ "sidebar-border": "#040404",
705
+ "sidebar-ring": "#ffffff",
706
+ "chart-1": "#24e0c5",
707
+ "chart-2": "#a193f2",
708
+ "chart-3": "#ff76ae",
709
+ "chart-4": "#ffcd1c",
710
+ "chart-5": "#679eff"
711
+ }
712
+ }