@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,1641 @@
1
+ function mergeTheme(base, override) {
2
+ if (!base || !override || typeof base !== "object" || typeof override !== "object" || Array.isArray(base) || Array.isArray(override)) {
3
+ return override;
4
+ }
5
+ const result = { ...base };
6
+ for (const [key, value] of Object.entries(override)) {
7
+ result[key] = key in base ? mergeTheme(base[key], value) : value;
8
+ }
9
+ return result;
10
+ }
11
+
12
+ const seedsLightTheme = {
13
+ breakpoints: Object.assign([
14
+ "900px",
15
+ "1200px",
16
+ "1500px",
17
+ "1800px"
18
+ ], {
19
+ sm: "640px",
20
+ md: "768px",
21
+ lg: "1024px",
22
+ xl: "1280px"
23
+ }),
24
+ colors: {
25
+ app: {
26
+ background: {
27
+ base: "#f3f4f4"
28
+ }
29
+ },
30
+ container: {
31
+ background: {
32
+ base: "#FFFFFF",
33
+ success: "#d7f4d7",
34
+ warning: "#fdefcd",
35
+ error: "#ffd5d2",
36
+ info: "#deebfe",
37
+ opportunity: "#eaeaf9",
38
+ danger: "#ffd5d2",
39
+ decorative: {
40
+ green: "#d7f4d7",
41
+ blue: "#deebfe",
42
+ purple: "#eaeaf9",
43
+ yellow: "#fdefcd",
44
+ orange: "#fcdccc",
45
+ red: "#ffd5d2",
46
+ neutral: "#f3f4f4",
47
+ magenta: "#f9e3fc",
48
+ pink: "#fcdbeb",
49
+ aqua: "#c5f9f9",
50
+ teal: "#cdf7ef"
51
+ },
52
+ selected: "#364141",
53
+ positive_sentiment: "#3876e3",
54
+ negative_sentiment: "#f76054",
55
+ neutral_sentiment: "#c8cccc",
56
+ ai_generated: "var(--color-container-bg-ai-generated)"
57
+ },
58
+ border: {
59
+ base: "#dee1e1",
60
+ success: "#59cb59",
61
+ warning: "#ffbc00",
62
+ error: "#ed4c42",
63
+ danger: "#ed4c42",
64
+ info: "#2b68d3",
65
+ opportunity: "#9180f4",
66
+ decorative: {
67
+ green: "#59cb59",
68
+ blue: "#2b68d3",
69
+ purple: "#9180f4",
70
+ yellow: "#ffbc00",
71
+ orange: "#f57d33",
72
+ red: "#ed4c42",
73
+ neutral: "#6e797a",
74
+ magenta: "#c44eb9",
75
+ pink: "#e0447c",
76
+ aqua: "#17b8ce",
77
+ teal: "#08c4b2"
78
+ },
79
+ selected: "#364141",
80
+ ai_generated: "#6f5ed3"
81
+ }
82
+ },
83
+ gradient: {
84
+ ai: "radial-gradient(circle at bottom left, #205bc3 0%, #9747ff 61%, #f282f5 100%)",
85
+ "ai-subtle": "radial-gradient(circle at bottom left, color-mix(in srgb, #205bc3, transparent 80%) 0%, color-mix(in srgb, #9747ff, transparent 80%) 61%, color-mix(in srgb, #f282f5, transparent 80%) 100%)",
86
+ "ai-stop-1": "#205bc3",
87
+ "ai-stop-2": "#9747ff",
88
+ "ai-stop-3": "#f282f5"
89
+ },
90
+ button: {
91
+ primary: {
92
+ background: {
93
+ base: "#205bc3",
94
+ hover: "#1150aa",
95
+ active: "#0c3f89"
96
+ },
97
+ border: {
98
+ base: "transparent"
99
+ },
100
+ text: {
101
+ base: "#FFFFFF",
102
+ hover: "#FFFFFF"
103
+ }
104
+ },
105
+ secondary: {
106
+ background: {
107
+ base: "transparent",
108
+ hover: "#364141",
109
+ active: "#273333"
110
+ },
111
+ border: {
112
+ base: "#364141"
113
+ },
114
+ text: {
115
+ base: "#364141",
116
+ hover: "#FFFFFF"
117
+ }
118
+ },
119
+ pill: {
120
+ background: {
121
+ base: "transparent",
122
+ hover: "#f3f4f4",
123
+ active: "#dee1e1"
124
+ },
125
+ border: {
126
+ base: "transparent",
127
+ hover: "#364141"
128
+ },
129
+ text: {
130
+ base: "#364141",
131
+ hover: "#273333"
132
+ }
133
+ },
134
+ destructive: {
135
+ background: {
136
+ base: "#c63434",
137
+ hover: "#992222",
138
+ active: "#6d1313"
139
+ },
140
+ border: {
141
+ base: "transparent"
142
+ },
143
+ text: {
144
+ base: "#FFFFFF",
145
+ hover: "#FFFFFF"
146
+ }
147
+ },
148
+ placeholder: {
149
+ background: {
150
+ base: "transparent",
151
+ hover: "#FFFFFF",
152
+ active: "#FFFFFF"
153
+ },
154
+ border: {
155
+ base: "#929a9b"
156
+ },
157
+ text: {
158
+ base: "#205bc3",
159
+ hover: "#1150aa"
160
+ }
161
+ },
162
+ overlay: {
163
+ background: {
164
+ base: "color-mix(in srgb, #040404, transparent 40%)",
165
+ hover: "color-mix(in srgb, #040404, transparent 25%)"
166
+ },
167
+ text: {
168
+ base: "#FFFFFF"
169
+ }
170
+ },
171
+ unstyled: {
172
+ background: {
173
+ base: "transparent"
174
+ },
175
+ border: {
176
+ base: "transparent"
177
+ },
178
+ text: {
179
+ base: "#515e5f",
180
+ hover: "#273333"
181
+ }
182
+ },
183
+ "ai-primary": {
184
+ background: {
185
+ base: "var(--color-gradient-ai)"
186
+ },
187
+ border: {
188
+ base: "transparent"
189
+ },
190
+ text: {
191
+ base: "#FFFFFF",
192
+ hover: "#FFFFFF"
193
+ }
194
+ },
195
+ "ai-secondary": {
196
+ background: {
197
+ base: "var(--color-gradient-ai-subtle)"
198
+ },
199
+ border: {
200
+ base: "transparent"
201
+ },
202
+ text: {
203
+ base: "#364141",
204
+ hover: "#364141"
205
+ }
206
+ },
207
+ "ai-outline": {
208
+ background: {
209
+ base: "transparent"
210
+ },
211
+ border: {
212
+ base: "var(--color-gradient-ai)"
213
+ },
214
+ text: {
215
+ base: "#364141",
216
+ hover: "#364141"
217
+ }
218
+ }
219
+ },
220
+ link: {
221
+ base: "#1150aa",
222
+ hover: "#0c3f89"
223
+ },
224
+ text: {
225
+ headline: "#273333",
226
+ subtext: "#515e5f",
227
+ body: "#364141",
228
+ inverse: "#FFFFFF",
229
+ error: "#992222",
230
+ background: {
231
+ highlight: "#ffe99a",
232
+ selection: "#a1c2f8"
233
+ },
234
+ decorative: {
235
+ green: "#006b40",
236
+ blue: "#0c3f89",
237
+ purple: "#5e4eba",
238
+ yellow: "#944c0c",
239
+ orange: "#962c0b",
240
+ red: "#992222",
241
+ neutral: "#273333",
242
+ magenta: "#6c2277",
243
+ pink: "#931847",
244
+ aqua: "#035e73",
245
+ teal: "#026661"
246
+ },
247
+ ai_generated: "#273333"
248
+ },
249
+ icon: {
250
+ base: "#364141",
251
+ inverse: "#FFFFFF",
252
+ success: "#006b40",
253
+ warning: "#944c0c",
254
+ error: "#992222",
255
+ danger: "#992222",
256
+ info: "#0c3f89",
257
+ opportunity: "#5e4eba",
258
+ applied: "#205bc3",
259
+ positive_sentiment: "#2b68d3",
260
+ negative_sentiment: "#ed4c42",
261
+ neutral_sentiment: "#6e797a"
262
+ },
263
+ form: {
264
+ background: {
265
+ base: "#FFFFFF",
266
+ selected: "#364141"
267
+ },
268
+ border: {
269
+ base: "#6e797a",
270
+ error: "#ed4c42",
271
+ warning: "#ffbc00",
272
+ selected: "#364141"
273
+ },
274
+ placeholder: {
275
+ base: "#515e5f"
276
+ }
277
+ },
278
+ listItem: {
279
+ background: {
280
+ base: "transparent",
281
+ hover: "#f3f4f4",
282
+ selected: "#364141",
283
+ active: "#b0b6b7"
284
+ },
285
+ border: {
286
+ base: "#6e797a"
287
+ }
288
+ },
289
+ menuItem: {
290
+ background: {
291
+ active: "#b0b6b7"
292
+ }
293
+ },
294
+ nav: {
295
+ navItem: {
296
+ text: {
297
+ base: "#FFFFFF"
298
+ },
299
+ icon: {
300
+ base: "#FFFFFF"
301
+ },
302
+ indicator: {
303
+ notification: {
304
+ base: "#e0447c"
305
+ },
306
+ userStatus: {
307
+ online: "#59cb59",
308
+ offline: "#ed4c42",
309
+ unavailable: "#364141"
310
+ }
311
+ },
312
+ background: {
313
+ base: "transparent",
314
+ hover: "#364141",
315
+ active: "#040404",
316
+ selected: "#515e5f"
317
+ },
318
+ border: {
319
+ hover: "#515e5f",
320
+ active: "#515e5f",
321
+ selected: "#515e5f"
322
+ }
323
+ }
324
+ },
325
+ overlay: {
326
+ background: {
327
+ base: "color-mix(in srgb, #162020, transparent 44%)",
328
+ inverse: "color-mix(in srgb, #FFFFFF, transparent 30%)"
329
+ },
330
+ text: {
331
+ base: "#FFFFFF"
332
+ },
333
+ icon: {
334
+ base: "#FFFFFF"
335
+ }
336
+ },
337
+ elevation: {
338
+ base: "#2733333D"
339
+ },
340
+ illustration: {
341
+ fill: "#679eff",
342
+ stroke: "#273333"
343
+ },
344
+ network: {
345
+ twitter: "#000000",
346
+ twitter_like: "#e0245e",
347
+ facebook: "#1877F2",
348
+ facebook_audience_network: "#58409B",
349
+ linkedin: "#0A66C2",
350
+ instagram: "#e4405f",
351
+ feedly: "#2bb24c",
352
+ analytics: "#ef6c00",
353
+ google_analytics_property: "#ef6c00",
354
+ youtube: "#ff0000",
355
+ messenger: "#000000",
356
+ snapchat: "#fffc00",
357
+ pinterest: "#E60023",
358
+ tumblr: "#35465c",
359
+ reddit: "#ff4500",
360
+ tripadvisor: "#00B087",
361
+ glassdoor: "#0CAA41",
362
+ google_ads: "#FBBC04",
363
+ google_my_business: "#4285F4",
364
+ google_business_messages: "#1A73EA",
365
+ google_play_store: "#01875F",
366
+ apple_app_store: "#17C8F5",
367
+ salesforce: "#1589EE",
368
+ zendesk: "#03363D",
369
+ hubspot: "#FF7A59",
370
+ microsoft_dynamics: "#002050",
371
+ yelp: "#FF1A1A",
372
+ whatsapp: "#59CE72",
373
+ tiktok: "#000000",
374
+ threads: "#000000",
375
+ trustpilot: "#04DA8D",
376
+ x: "#000000",
377
+ x_like: "#e0245e",
378
+ bluesky: "#1185FE",
379
+ bazaarvoice: "#002E6E"
380
+ },
381
+ dataviz: {
382
+ map: {
383
+ 1: "#08c4b2",
384
+ 2: "#6f5ed3",
385
+ 3: "#ce3665",
386
+ 4: "#ffcd1c",
387
+ 5: "#3876e3",
388
+ 6: "#db61db",
389
+ 7: "#59cb59",
390
+ 8: "#fc8943",
391
+ 9: "#db3e3e",
392
+ 10: "#026661",
393
+ 11: "#a193f2",
394
+ 12: "#931847",
395
+ 13: "#944c0c",
396
+ 14: "#0c3f89",
397
+ 15: "#6c2277",
398
+ 16: "#006b40",
399
+ 17: "#962c0b",
400
+ 18: "#ff7f6e",
401
+ 19: "#0ca750",
402
+ 20: "#ba7506"
403
+ },
404
+ list: [
405
+ "#08c4b2",
406
+ "#6f5ed3",
407
+ "#ce3665",
408
+ "#ffcd1c",
409
+ "#3876e3",
410
+ "#db61db",
411
+ "#59cb59",
412
+ "#fc8943",
413
+ "#db3e3e",
414
+ "#026661",
415
+ "#a193f2",
416
+ "#931847",
417
+ "#944c0c",
418
+ "#0c3f89",
419
+ "#6c2277",
420
+ "#006b40",
421
+ "#962c0b",
422
+ "#ff7f6e",
423
+ "#0ca750",
424
+ "#ba7506"
425
+ ],
426
+ placeholder: "#c8cccc"
427
+ },
428
+ userStatus: {
429
+ online: "#0ca750",
430
+ offline: "#ed4c42",
431
+ unavailable: "#6e797a"
432
+ },
433
+ neutral: {
434
+ 0: "#FFFFFF",
435
+ 100: "#f3f4f4",
436
+ 200: "#dee1e1",
437
+ 300: "#c8cccc",
438
+ 400: "#b0b6b7",
439
+ 500: "#929a9b",
440
+ 600: "#6e797a",
441
+ 700: "#515e5f",
442
+ 800: "#364141",
443
+ 900: "#273333",
444
+ 950: "#1D2525",
445
+ 1000: "#162020",
446
+ 1100: "#040404"
447
+ },
448
+ green: {
449
+ 0: "#ebf9eb",
450
+ 100: "#d7f4d7",
451
+ 200: "#c2f2bd",
452
+ 300: "#98e58e",
453
+ 400: "#75dd66",
454
+ 500: "#59cb59",
455
+ 600: "#2bb656",
456
+ 700: "#0ca750",
457
+ 800: "#008b46",
458
+ 900: "#006b40",
459
+ 1000: "#08422f",
460
+ 1100: "#002b20"
461
+ },
462
+ red: {
463
+ 0: "#ffeae9",
464
+ 100: "#ffd5d2",
465
+ 200: "#ffb8b1",
466
+ 300: "#ff9c8f",
467
+ 400: "#ff7f6e",
468
+ 500: "#f76054",
469
+ 600: "#ed4c42",
470
+ 700: "#db3e3e",
471
+ 800: "#c63434",
472
+ 900: "#992222",
473
+ 1000: "#6d1313",
474
+ 1100: "#2b1111"
475
+ },
476
+ blue: {
477
+ 0: "#e9f4ff",
478
+ 100: "#deebfe",
479
+ 200: "#c7dbf9",
480
+ 300: "#a1c2f8",
481
+ 400: "#679eff",
482
+ 500: "#3876e3",
483
+ 600: "#2b68d3",
484
+ 700: "#205bc3",
485
+ 800: "#1150aa",
486
+ 900: "#0c3f89",
487
+ 1000: "#0a2960",
488
+ 1100: "#001738"
489
+ },
490
+ teal: {
491
+ 0: "#e5f9f5",
492
+ 50: "#CCF1EA",
493
+ 100: "#cdf7ef",
494
+ 200: "#b3f2e6",
495
+ 300: "#7dead5",
496
+ 400: "#24e0c5",
497
+ 500: "#08c4b2",
498
+ 600: "#00a99c",
499
+ 700: "#0b968f",
500
+ 800: "#067c7c",
501
+ 900: "#026661",
502
+ 1000: "#083f3f",
503
+ 1100: "#002528"
504
+ },
505
+ aqua: {
506
+ 0: "#d9fcfb",
507
+ 100: "#c5f9f9",
508
+ 200: "#a5f2f2",
509
+ 300: "#76e5e2",
510
+ 400: "#33d6e2",
511
+ 500: "#17b8ce",
512
+ 600: "#0797ae",
513
+ 700: "#0b8599",
514
+ 800: "#0f6e84",
515
+ 900: "#035e73",
516
+ 1000: "#083d4f",
517
+ 1100: "#002838"
518
+ },
519
+ purple: {
520
+ 0: "#f2f2f9",
521
+ 100: "#eaeaf9",
522
+ 200: "#d8d7f9",
523
+ 300: "#c1c1f7",
524
+ 400: "#a193f2",
525
+ 500: "#9180f4",
526
+ 600: "#816fea",
527
+ 700: "#6f5ed3",
528
+ 800: "#5e4eba",
529
+ 900: "#483a9c",
530
+ 1000: "#2d246b",
531
+ 1100: "#1d1d38"
532
+ },
533
+ magenta: {
534
+ 0: "#fef0ff",
535
+ 100: "#f9e3fc",
536
+ 200: "#f4c4f7",
537
+ 300: "#edadf2",
538
+ 350: "#EC9AF1",
539
+ 400: "#f282f5",
540
+ 500: "#db61db",
541
+ 600: "#c44eb9",
542
+ 700: "#ac44a8",
543
+ 800: "#8f3896",
544
+ 900: "#6c2277",
545
+ 1000: "#451551",
546
+ 1100: "#29192d"
547
+ },
548
+ yellow: {
549
+ 0: "#fff8e2",
550
+ 100: "#fdefcd",
551
+ 200: "#ffe99a",
552
+ 300: "#ffe16e",
553
+ 400: "#ffd943",
554
+ 500: "#ffcd1c",
555
+ 600: "#ffbc00",
556
+ 700: "#dd9903",
557
+ 800: "#ba7506",
558
+ 900: "#944c0c",
559
+ 1000: "#542a00",
560
+ 1100: "#2d1a05"
561
+ },
562
+ pink: {
563
+ 0: "#ffe9f3",
564
+ 100: "#fcdbeb",
565
+ 200: "#ffb5d5",
566
+ 300: "#ff95c1",
567
+ 400: "#ff76ae",
568
+ 500: "#ef588b",
569
+ 600: "#e0447c",
570
+ 700: "#ce3665",
571
+ 800: "#b22f5b",
572
+ 900: "#931847",
573
+ 1000: "#561231",
574
+ 1100: "#2b1721"
575
+ },
576
+ orange: {
577
+ 0: "#ffede3",
578
+ 100: "#fcdccc",
579
+ 200: "#ffc6a4",
580
+ 300: "#ffb180",
581
+ 400: "#ff9c5d",
582
+ 500: "#fc8943",
583
+ 600: "#f57d33",
584
+ 700: "#ed7024",
585
+ 800: "#ce5511",
586
+ 900: "#962c0b",
587
+ 1000: "#601700",
588
+ 1100: "#2d130e"
589
+ },
590
+ DATAVIZ_COLORS_LIST: [
591
+ "#08c4b2",
592
+ "#6f5ed3",
593
+ "#ce3665",
594
+ "#ffcd1c",
595
+ "#3876e3",
596
+ "#db61db",
597
+ "#59cb59",
598
+ "#fc8943",
599
+ "#db3e3e",
600
+ "#026661",
601
+ "#a193f2",
602
+ "#931847",
603
+ "#944c0c",
604
+ "#0c3f89",
605
+ "#6c2277",
606
+ "#006b40",
607
+ "#962c0b",
608
+ "#ff7f6e",
609
+ "#0ca750",
610
+ "#ba7506"
611
+ ],
612
+ DATAVIZ_COLORS_MAP: {
613
+ 1: "#08c4b2",
614
+ 2: "#6f5ed3",
615
+ 3: "#ce3665",
616
+ 4: "#ffcd1c",
617
+ 5: "#3876e3",
618
+ 6: "#db61db",
619
+ 7: "#59cb59",
620
+ 8: "#fc8943",
621
+ 9: "#db3e3e",
622
+ 10: "#026661",
623
+ 11: "#a193f2",
624
+ 12: "#931847",
625
+ 13: "#944c0c",
626
+ 14: "#0c3f89",
627
+ 15: "#6c2277",
628
+ 16: "#006b40",
629
+ 17: "#962c0b",
630
+ 18: "#ff7f6e",
631
+ 19: "#0ca750",
632
+ 20: "#ba7506"
633
+ },
634
+ PLACEHOLDER: "#c8cccc"
635
+ },
636
+ typography: {
637
+ 100: {
638
+ fontSize: "11px",
639
+ lineHeight: "18.666666666666668px"
640
+ },
641
+ 200: {
642
+ fontSize: "13px",
643
+ lineHeight: "21.333333333333332px"
644
+ },
645
+ 300: {
646
+ fontSize: "16px",
647
+ lineHeight: "24px"
648
+ },
649
+ 400: {
650
+ fontSize: "18px",
651
+ lineHeight: "26.666666666666668px"
652
+ },
653
+ 500: {
654
+ fontSize: "21px",
655
+ lineHeight: "29.333333333333332px"
656
+ },
657
+ 600: {
658
+ fontSize: "24px",
659
+ lineHeight: "32px"
660
+ },
661
+ 700: {
662
+ fontSize: "32px",
663
+ lineHeight: "40px"
664
+ },
665
+ 800: {
666
+ fontSize: "43px",
667
+ lineHeight: "50.666666666666664px"
668
+ },
669
+ 900: {
670
+ fontSize: "57px",
671
+ lineHeight: "64px"
672
+ },
673
+ 1000: {
674
+ fontSize: "76px",
675
+ lineHeight: "80px"
676
+ },
677
+ 1100: {
678
+ fontSize: "101px",
679
+ lineHeight: "101.33333333333333px"
680
+ },
681
+ 1200: {
682
+ fontSize: "135px",
683
+ lineHeight: "125.33333333333333px"
684
+ },
685
+ typography: {
686
+ 100: {
687
+ fontSize: "11px",
688
+ lineHeight: "18.666666666666668px"
689
+ },
690
+ 200: {
691
+ fontSize: "13px",
692
+ lineHeight: "21.333333333333332px"
693
+ },
694
+ 300: {
695
+ fontSize: "16px",
696
+ lineHeight: "24px"
697
+ },
698
+ 400: {
699
+ fontSize: "18px",
700
+ lineHeight: "26.666666666666668px"
701
+ },
702
+ 500: {
703
+ fontSize: "21px",
704
+ lineHeight: "29.333333333333332px"
705
+ },
706
+ 600: {
707
+ fontSize: "24px",
708
+ lineHeight: "32px"
709
+ },
710
+ 700: {
711
+ fontSize: "32px",
712
+ lineHeight: "40px"
713
+ },
714
+ 800: {
715
+ fontSize: "43px",
716
+ lineHeight: "50.666666666666664px"
717
+ },
718
+ 900: {
719
+ fontSize: "57px",
720
+ lineHeight: "64px"
721
+ },
722
+ 1000: {
723
+ fontSize: "76px",
724
+ lineHeight: "80px"
725
+ },
726
+ 1100: {
727
+ fontSize: "101px",
728
+ lineHeight: "101.33333333333333px"
729
+ },
730
+ 1200: {
731
+ fontSize: "135px",
732
+ lineHeight: "125.33333333333333px"
733
+ }
734
+ }
735
+ },
736
+ fontSizes: {
737
+ 100: "11px",
738
+ 200: "13px",
739
+ 300: "16px",
740
+ 400: "18px",
741
+ 500: "21px",
742
+ 600: "24px",
743
+ 700: "32px",
744
+ 800: "43px",
745
+ 900: "57px",
746
+ 1000: "76px",
747
+ 1100: "101px",
748
+ 1200: "135px"
749
+ },
750
+ lineHeights: {
751
+ 100: "18.666666666666668px",
752
+ 200: "21.333333333333332px",
753
+ 300: "24px",
754
+ 400: "26.666666666666668px",
755
+ 500: "29.333333333333332px",
756
+ 600: "32px",
757
+ 700: "40px",
758
+ 800: "50.666666666666664px",
759
+ 900: "64px",
760
+ 1000: "80px",
761
+ 1100: "101.33333333333333px",
762
+ 1200: "125.33333333333333px"
763
+ },
764
+ fontFamily: "system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif",
765
+ fontWeights: {
766
+ normal: "400",
767
+ semibold: "600",
768
+ bold: "700",
769
+ extrabold: "800"
770
+ },
771
+ space: {
772
+ 0: "0px",
773
+ 100: "2px",
774
+ 200: "4px",
775
+ 300: "8px",
776
+ 350: "12px",
777
+ 400: "16px",
778
+ 450: "24px",
779
+ 500: "32px",
780
+ 600: "40px",
781
+ space: {
782
+ 0: "0px",
783
+ 100: "2px",
784
+ 200: "4px",
785
+ 300: "8px",
786
+ 350: "12px",
787
+ 400: "16px",
788
+ 450: "24px",
789
+ 500: "32px",
790
+ 600: "40px"
791
+ },
792
+ "-space": {
793
+ 0: "-0px",
794
+ 100: "-2px",
795
+ 200: "-4px",
796
+ 300: "-8px",
797
+ 350: "-12px",
798
+ 400: "-16px",
799
+ 450: "-24px",
800
+ 500: "-32px",
801
+ 600: "-40px"
802
+ }
803
+ },
804
+ radii: {
805
+ 400: "4px",
806
+ 500: "6px",
807
+ 600: "8px",
808
+ 800: "12px",
809
+ 900: "24px",
810
+ 1000: "999999px",
811
+ inner: "6px",
812
+ outer: "8px",
813
+ pill: "999999px",
814
+ radii: {
815
+ 400: "4px",
816
+ 500: "6px",
817
+ 600: "8px",
818
+ 800: "12px",
819
+ 900: "24px",
820
+ 1000: "999999px",
821
+ inner: "6px",
822
+ outer: "8px",
823
+ pill: "999999px"
824
+ }
825
+ },
826
+ borders: {
827
+ 500: "1px solid",
828
+ 600: "2px solid",
829
+ 700: "3px solid"
830
+ },
831
+ borderWidths: {
832
+ 500: "1px",
833
+ 600: "2px",
834
+ 700: "3px"
835
+ },
836
+ shadows: {
837
+ low: "0px 2px 4px var(--color-elevation-base)",
838
+ medium: "0px 8px 16px var(--color-elevation-base)",
839
+ high: "0px 16px 32px var(--color-elevation-base)"
840
+ },
841
+ easing: {
842
+ ease_in: "cubic-bezier(.4, 0, .7, .2)",
843
+ ease_out: "cubic-bezier(0, 0, .2, 1)",
844
+ ease_inout: "cubic-bezier(.4, 0, .2, 1)"
845
+ },
846
+ duration: {
847
+ fast: ".15s",
848
+ medium: ".3s",
849
+ slow: ".6s"
850
+ },
851
+ mode: "light"
852
+ };
853
+
854
+ const sproutLightTheme = mergeTheme(seedsLightTheme, {
855
+ colors: {
856
+ ai: {
857
+ feature: {
858
+ decorative: {
859
+ primary: "#067c7c",
860
+ secondary: "#0c3f89"
861
+ },
862
+ background: {
863
+ primary: "#067c7c",
864
+ secondary: "#0c3f89",
865
+ default: {
866
+ primary: "#067c7c",
867
+ secondary: "#0c3f89"
868
+ },
869
+ inverse: {
870
+ primary: "#cdf7ef",
871
+ secondary: "#c7dbf9"
872
+ }
873
+ }
874
+ }
875
+ },
876
+ navigation: {
877
+ main: {
878
+ background: {
879
+ base: "#273333",
880
+ overflowGradient: "#162020"
881
+ },
882
+ border: {
883
+ base: "#162020"
884
+ }
885
+ },
886
+ secondary: {
887
+ background: {
888
+ base: "#364141"
889
+ },
890
+ widget: {
891
+ background: {
892
+ base: "#162020"
893
+ }
894
+ },
895
+ accordion: {
896
+ background: {
897
+ base: "#273333"
898
+ }
899
+ }
900
+ },
901
+ settings: {
902
+ listItem: {
903
+ background: {
904
+ base: "transparent",
905
+ hover: "#dee1e1",
906
+ selected: "#FFFFFF"
907
+ }
908
+ }
909
+ },
910
+ text: {
911
+ base: "#FFFFFF",
912
+ hover: "#FFFFFF"
913
+ },
914
+ icon: {
915
+ base: "#FFFFFF",
916
+ hover: "#FFFFFF"
917
+ },
918
+ listItem: {
919
+ background: {
920
+ base: "#364141",
921
+ hover: "#162020",
922
+ selected: "#515e5f"
923
+ }
924
+ }
925
+ },
926
+ datePicker: {
927
+ comparison: {
928
+ background: {
929
+ base: "#b0b6b7"
930
+ },
931
+ text: {
932
+ base: "#364141"
933
+ }
934
+ }
935
+ },
936
+ analytics: {
937
+ trend: {
938
+ positive: "#067c7c",
939
+ neutral: "#364141",
940
+ negative: "#364141"
941
+ },
942
+ overlay: {
943
+ background: {
944
+ base: "color-mix(in srgb, #FFFFFF, transparent 20%)"
945
+ }
946
+ }
947
+ },
948
+ listening: {
949
+ chart: {
950
+ indicator: {
951
+ default: {
952
+ primary: "#b0b6b7",
953
+ secondary: "#FFFFFF"
954
+ },
955
+ hover: {
956
+ primary: "#162020",
957
+ secondary: "#FFFFFF"
958
+ }
959
+ },
960
+ spike: {
961
+ background: {
962
+ base: "#08c4b2"
963
+ },
964
+ icon: {
965
+ base: "#FFFFFF"
966
+ }
967
+ }
968
+ },
969
+ topicTypes: {
970
+ customTopic: "#679eff",
971
+ brandHealth: "#ff7f6e",
972
+ industryInsights: "#75dd66",
973
+ competitiveAnalysis: "#ffd943",
974
+ campaignAnalysis: "#f282f5",
975
+ eventMonitoring: "#33d6e2",
976
+ featuredTopic: "#75dd66"
977
+ },
978
+ worldMap: {
979
+ empty: "#dee1e1",
980
+ q0: "#d8d7f9",
981
+ q1: "#c1c1f7",
982
+ q2: "#a193f2",
983
+ q3: "#9180f4",
984
+ q4: "#816fea",
985
+ q5: "#6f5ed3",
986
+ q6: "#5e4eba",
987
+ q7: "#483a9c"
988
+ }
989
+ },
990
+ growth: {
991
+ carousel: {
992
+ indicator: {
993
+ active: "#2b68d3",
994
+ inactive: "#c8cccc"
995
+ }
996
+ },
997
+ education: {
998
+ decorative: {
999
+ aqua: "#0797ae",
1000
+ teal: "#0b968f"
1001
+ }
1002
+ },
1003
+ opportunity: {
1004
+ background: {
1005
+ base: "#6f5ed3",
1006
+ secondary: "#273333",
1007
+ hover: "#c1c1f7"
1008
+ },
1009
+ button: {
1010
+ primary: {
1011
+ base: "#6f5ed3",
1012
+ hover: "#5e4eba"
1013
+ }
1014
+ },
1015
+ badge: {
1016
+ background: {
1017
+ base: "#d8d7f9",
1018
+ active: "#5e4eba"
1019
+ },
1020
+ icon: {
1021
+ base: "#6f5ed3",
1022
+ active: "#eaeaf9"
1023
+ },
1024
+ text: {
1025
+ base: "#6f5ed3"
1026
+ }
1027
+ },
1028
+ decorative: {
1029
+ green: "#0ca750",
1030
+ lightAqua: "#0797ae",
1031
+ darkAqua: "#002838",
1032
+ purple: "#6f5ed3"
1033
+ }
1034
+ },
1035
+ featuredDemo: {
1036
+ background: {
1037
+ primary: {
1038
+ base: "#205bc3",
1039
+ hover: "#0c3f89"
1040
+ },
1041
+ secondary: {
1042
+ base: "#5e4eba",
1043
+ hover: "#5e4eba"
1044
+ }
1045
+ }
1046
+ },
1047
+ darkModal: {
1048
+ background: {
1049
+ base: "#002838"
1050
+ },
1051
+ text: {
1052
+ base: "#FFFFFF"
1053
+ },
1054
+ cards: {
1055
+ background: {
1056
+ base: "#FFFFFF",
1057
+ hover: "#eaeaf9"
1058
+ },
1059
+ text: {
1060
+ base: "#364141",
1061
+ hover: "#273333"
1062
+ },
1063
+ border: {
1064
+ base: "#FFFFFF",
1065
+ hover: "#6f5ed3"
1066
+ }
1067
+ }
1068
+ },
1069
+ user: {
1070
+ status: {
1071
+ online: "#0ca750"
1072
+ }
1073
+ }
1074
+ },
1075
+ cardControl: {
1076
+ background: {
1077
+ base: "#FFFFFF",
1078
+ selected: "#364141",
1079
+ hover: "#f3f4f4"
1080
+ },
1081
+ text: {
1082
+ selected: "#FFFFFF"
1083
+ }
1084
+ },
1085
+ tags: {
1086
+ collections: {
1087
+ background: {
1088
+ base: "#f3f4f4"
1089
+ }
1090
+ }
1091
+ }
1092
+ }
1093
+ });
1094
+
1095
+ const seedsDarkTheme = mergeTheme(seedsLightTheme, {
1096
+ colors: {
1097
+ app: {
1098
+ background: {
1099
+ base: "#162020"
1100
+ }
1101
+ },
1102
+ container: {
1103
+ background: {
1104
+ base: "#273333",
1105
+ success: "#006b40",
1106
+ warning: "#944c0c",
1107
+ error: "#992222",
1108
+ info: "#0c3f89",
1109
+ opportunity: "#483a9c",
1110
+ danger: "#992222",
1111
+ decorative: {
1112
+ green: "#006b40",
1113
+ blue: "#0c3f89",
1114
+ purple: "#483a9c",
1115
+ yellow: "#944c0c",
1116
+ orange: "#962c0b",
1117
+ red: "#992222",
1118
+ neutral: "#162020",
1119
+ magenta: "#6c2277",
1120
+ pink: "#931847",
1121
+ aqua: "#035e73",
1122
+ teal: "#026661"
1123
+ },
1124
+ selected: "#FFFFFF"
1125
+ },
1126
+ border: {
1127
+ base: "#040404",
1128
+ selected: "#FFFFFF"
1129
+ }
1130
+ },
1131
+ gradient: {
1132
+ ai: "radial-gradient(circle at bottom left, #679eff 0%, #b984ff 61%, #f282f5 100%)",
1133
+ "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%)",
1134
+ "ai-stop-1": "#679eff",
1135
+ "ai-stop-2": "#b984ff"
1136
+ },
1137
+ button: {
1138
+ primary: {
1139
+ background: {
1140
+ base: "#679eff",
1141
+ hover: "#a1c2f8",
1142
+ active: "#c7dbf9"
1143
+ },
1144
+ text: {
1145
+ base: "#273333",
1146
+ hover: "#162020"
1147
+ }
1148
+ },
1149
+ secondary: {
1150
+ background: {
1151
+ hover: "#f3f4f4",
1152
+ active: "#FFFFFF"
1153
+ },
1154
+ border: {
1155
+ base: "#FFFFFF"
1156
+ },
1157
+ text: {
1158
+ base: "#FFFFFF",
1159
+ hover: "#364141"
1160
+ }
1161
+ },
1162
+ pill: {
1163
+ background: {
1164
+ hover: "#162020",
1165
+ active: "#273333"
1166
+ },
1167
+ border: {
1168
+ hover: "#FFFFFF"
1169
+ },
1170
+ text: {
1171
+ base: "#f3f4f4",
1172
+ hover: "#FFFFFF"
1173
+ }
1174
+ },
1175
+ destructive: {
1176
+ background: {
1177
+ base: "#ff7f6e",
1178
+ hover: "#ff9c8f",
1179
+ active: "#ffb8b1"
1180
+ },
1181
+ text: {
1182
+ base: "#273333",
1183
+ hover: "#162020"
1184
+ }
1185
+ },
1186
+ placeholder: {
1187
+ background: {
1188
+ hover: "#040404",
1189
+ active: "#040404"
1190
+ },
1191
+ text: {
1192
+ base: "#679eff",
1193
+ hover: "#a1c2f8"
1194
+ }
1195
+ },
1196
+ overlay: {
1197
+ background: {
1198
+ base: "color-mix(in srgb, #FFFFFF, transparent 40%)",
1199
+ hover: "color-mix(in srgb, #FFFFFF, transparent 25%)"
1200
+ },
1201
+ text: {
1202
+ base: "#162020"
1203
+ }
1204
+ },
1205
+ unstyled: {
1206
+ text: {
1207
+ base: "#c8cccc",
1208
+ hover: "#dee1e1"
1209
+ }
1210
+ },
1211
+ "ai-secondary": {
1212
+ text: {
1213
+ base: "#f3f4f4",
1214
+ hover: "#f3f4f4"
1215
+ }
1216
+ },
1217
+ "ai-outline": {
1218
+ text: {
1219
+ base: "#f3f4f4",
1220
+ hover: "#f3f4f4"
1221
+ }
1222
+ }
1223
+ },
1224
+ link: {
1225
+ base: "#679eff",
1226
+ hover: "#a1c2f8"
1227
+ },
1228
+ text: {
1229
+ headline: "#FFFFFF",
1230
+ subtext: "#dee1e1",
1231
+ body: "#f3f4f4",
1232
+ inverse: "#273333",
1233
+ error: "#ffd5d2",
1234
+ background: {
1235
+ highlight: "#944c0c",
1236
+ selection: "#1150aa"
1237
+ },
1238
+ decorative: {
1239
+ green: "#d7f4d7",
1240
+ blue: "#deebfe",
1241
+ purple: "#eaeaf9",
1242
+ yellow: "#fdefcd",
1243
+ orange: "#fcdccc",
1244
+ red: "#ffd5d2",
1245
+ neutral: "#f3f4f4",
1246
+ magenta: "#f9e3fc",
1247
+ pink: "#fcdbeb",
1248
+ aqua: "#c5f9f9",
1249
+ teal: "#cdf7ef"
1250
+ },
1251
+ ai_generated: "#FFFFFF"
1252
+ },
1253
+ icon: {
1254
+ base: "#f3f4f4",
1255
+ inverse: "#273333",
1256
+ success: "#d7f4d7",
1257
+ warning: "#fdefcd",
1258
+ error: "#ffd5d2",
1259
+ danger: "#ffd5d2",
1260
+ info: "#deebfe",
1261
+ opportunity: "#eaeaf9",
1262
+ applied: "#679eff",
1263
+ neutral_sentiment: "#929a9b"
1264
+ },
1265
+ form: {
1266
+ background: {
1267
+ base: "#273333",
1268
+ selected: "#FFFFFF"
1269
+ },
1270
+ border: {
1271
+ base: "#929a9b",
1272
+ selected: "#FFFFFF"
1273
+ },
1274
+ placeholder: {
1275
+ base: "#929a9b"
1276
+ }
1277
+ },
1278
+ listItem: {
1279
+ background: {
1280
+ hover: "#364141",
1281
+ selected: "#FFFFFF",
1282
+ active: "#FFFFFF"
1283
+ }
1284
+ },
1285
+ menuItem: {
1286
+ background: {
1287
+ active: "#515e5f"
1288
+ }
1289
+ },
1290
+ overlay: {
1291
+ background: {
1292
+ base: "color-mix(in srgb, #162020, transparent 28%)",
1293
+ inverse: "color-mix(in srgb, #040404, transparent 30%)"
1294
+ }
1295
+ },
1296
+ elevation: {
1297
+ base: "#040404FF"
1298
+ },
1299
+ illustration: {
1300
+ stroke: "#f3f4f4"
1301
+ },
1302
+ dataviz: {
1303
+ map: {
1304
+ 1: "#24e0c5",
1305
+ 2: "#a193f2",
1306
+ 3: "#ff76ae",
1307
+ 5: "#679eff",
1308
+ 6: "#f282f5",
1309
+ 7: "#75dd66",
1310
+ 8: "#ff9c5d",
1311
+ 10: "#0b968f",
1312
+ 11: "#6f5ed3",
1313
+ 12: "#ce3665",
1314
+ 13: "#ba7506",
1315
+ 14: "#205bc3",
1316
+ 15: "#ac44a8",
1317
+ 16: "#0ca750",
1318
+ 17: "#ed7024",
1319
+ 19: "#c2f2bd",
1320
+ 20: "#ffe99a"
1321
+ },
1322
+ list: [
1323
+ "#24e0c5",
1324
+ "#a193f2",
1325
+ "#ff76ae",
1326
+ "#ffcd1c",
1327
+ "#679eff",
1328
+ "#f282f5",
1329
+ "#75dd66",
1330
+ "#ff9c5d",
1331
+ "#db3e3e",
1332
+ "#0b968f",
1333
+ "#6f5ed3",
1334
+ "#ce3665",
1335
+ "#ba7506",
1336
+ "#205bc3",
1337
+ "#ac44a8",
1338
+ "#0ca750",
1339
+ "#ed7024",
1340
+ "#ff7f6e",
1341
+ "#c2f2bd",
1342
+ "#ffe99a"
1343
+ ],
1344
+ placeholder: "#364141"
1345
+ },
1346
+ userStatus: {
1347
+ online: "#59cb59",
1348
+ offline: "#f76054",
1349
+ unavailable: "#929a9b"
1350
+ },
1351
+ DATAVIZ_COLORS_LIST: [
1352
+ "#24e0c5",
1353
+ "#a193f2",
1354
+ "#ff76ae",
1355
+ "#ffcd1c",
1356
+ "#679eff",
1357
+ "#f282f5",
1358
+ "#75dd66",
1359
+ "#ff9c5d",
1360
+ "#db3e3e",
1361
+ "#0b968f",
1362
+ "#6f5ed3",
1363
+ "#ce3665",
1364
+ "#ba7506",
1365
+ "#205bc3",
1366
+ "#ac44a8",
1367
+ "#0ca750",
1368
+ "#ed7024",
1369
+ "#ff7f6e",
1370
+ "#c2f2bd",
1371
+ "#ffe99a"
1372
+ ],
1373
+ DATAVIZ_COLORS_MAP: {
1374
+ 1: "#24e0c5",
1375
+ 2: "#a193f2",
1376
+ 3: "#ff76ae",
1377
+ 5: "#679eff",
1378
+ 6: "#f282f5",
1379
+ 7: "#75dd66",
1380
+ 8: "#ff9c5d",
1381
+ 10: "#0b968f",
1382
+ 11: "#6f5ed3",
1383
+ 12: "#ce3665",
1384
+ 13: "#ba7506",
1385
+ 14: "#205bc3",
1386
+ 15: "#ac44a8",
1387
+ 16: "#0ca750",
1388
+ 17: "#ed7024",
1389
+ 19: "#c2f2bd",
1390
+ 20: "#ffe99a"
1391
+ },
1392
+ PLACEHOLDER: "#364141"
1393
+ },
1394
+ mode: "dark"
1395
+ });
1396
+
1397
+ const sproutDarkTheme = mergeTheme(seedsDarkTheme, {
1398
+ colors: {
1399
+ ai: {
1400
+ feature: {
1401
+ decorative: {
1402
+ primary: "#067c7c",
1403
+ secondary: "#0c3f89"
1404
+ },
1405
+ background: {
1406
+ primary: "#cdf7ef",
1407
+ secondary: "#c7dbf9",
1408
+ default: {
1409
+ primary: "#cdf7ef",
1410
+ secondary: "#c7dbf9"
1411
+ },
1412
+ inverse: {
1413
+ primary: "#067c7c",
1414
+ secondary: "#0c3f89"
1415
+ }
1416
+ }
1417
+ }
1418
+ },
1419
+ navigation: {
1420
+ main: {
1421
+ background: {
1422
+ base: "#162020",
1423
+ overflowGradient: "#040404"
1424
+ },
1425
+ border: {
1426
+ base: "#040404"
1427
+ }
1428
+ },
1429
+ secondary: {
1430
+ background: {
1431
+ base: "#273333"
1432
+ },
1433
+ widget: {
1434
+ background: {
1435
+ base: "#364141"
1436
+ }
1437
+ },
1438
+ accordion: {
1439
+ background: {
1440
+ base: "#162020A3"
1441
+ }
1442
+ }
1443
+ },
1444
+ settings: {
1445
+ listItem: {
1446
+ background: {
1447
+ base: "transparent",
1448
+ hover: "#040404",
1449
+ selected: "#364141"
1450
+ }
1451
+ }
1452
+ },
1453
+ text: {
1454
+ base: "#FFFFFF",
1455
+ hover: "#FFFFFF"
1456
+ },
1457
+ icon: {
1458
+ base: "#FFFFFF",
1459
+ hover: "#FFFFFF"
1460
+ },
1461
+ listItem: {
1462
+ background: {
1463
+ base: "#162020",
1464
+ hover: "#040404",
1465
+ selected: "#515e5f"
1466
+ }
1467
+ }
1468
+ },
1469
+ datePicker: {
1470
+ comparison: {
1471
+ background: {
1472
+ base: "#b0b6b7"
1473
+ },
1474
+ text: {
1475
+ base: "#364141"
1476
+ }
1477
+ }
1478
+ },
1479
+ analytics: {
1480
+ trend: {
1481
+ positive: "#08c4b2",
1482
+ neutral: "#f3f4f4",
1483
+ negative: "#f3f4f4"
1484
+ },
1485
+ overlay: {
1486
+ background: {
1487
+ base: "color-mix(in srgb, #273333, transparent 20%)"
1488
+ }
1489
+ }
1490
+ },
1491
+ listening: {
1492
+ chart: {
1493
+ indicator: {
1494
+ default: {
1495
+ primary: "#f3f4f4",
1496
+ secondary: "#273333"
1497
+ },
1498
+ hover: {
1499
+ primary: "#c8cccc",
1500
+ secondary: "#FFFFFF"
1501
+ }
1502
+ },
1503
+ spike: {
1504
+ background: {
1505
+ base: "#08c4b2"
1506
+ },
1507
+ icon: {
1508
+ base: "#FFFFFF"
1509
+ }
1510
+ }
1511
+ },
1512
+ topicTypes: {
1513
+ customTopic: "#24e0c5",
1514
+ brandHealth: "#ff7f6e",
1515
+ industryInsights: "#75dd66",
1516
+ competitiveAnalysis: "#ffd943",
1517
+ campaignAnalysis: "#f282f5",
1518
+ eventMonitoring: "#33d6e2",
1519
+ featuredTopic: "#75dd66"
1520
+ },
1521
+ worldMap: {
1522
+ empty: "#dee1e1",
1523
+ q0: "#d8d7f9",
1524
+ q1: "#c1c1f7",
1525
+ q2: "#a193f2",
1526
+ q3: "#9180f4",
1527
+ q4: "#816fea",
1528
+ q5: "#6f5ed3",
1529
+ q6: "#5e4eba",
1530
+ q7: "#483a9c"
1531
+ }
1532
+ },
1533
+ growth: {
1534
+ carousel: {
1535
+ indicator: {
1536
+ active: "#2b68d3",
1537
+ inactive: "#c8cccc"
1538
+ }
1539
+ },
1540
+ education: {
1541
+ decorative: {
1542
+ aqua: "#0797ae",
1543
+ teal: "#08c4b2"
1544
+ }
1545
+ },
1546
+ opportunity: {
1547
+ background: {
1548
+ base: "#6f5ed3",
1549
+ secondary: "#515e5f",
1550
+ hover: "#9180f4"
1551
+ },
1552
+ button: {
1553
+ primary: {
1554
+ base: "#a193f2",
1555
+ hover: "#c1c1f7"
1556
+ }
1557
+ },
1558
+ badge: {
1559
+ background: {
1560
+ base: "#6f5ed3",
1561
+ active: "#eaeaf9"
1562
+ },
1563
+ icon: {
1564
+ base: "#d8d7f9",
1565
+ active: "#5e4eba"
1566
+ },
1567
+ text: {
1568
+ base: "#d8d7f9"
1569
+ }
1570
+ },
1571
+ decorative: {
1572
+ green: "#0ca750",
1573
+ lightAqua: "#0797ae",
1574
+ darkAqua: "#002838",
1575
+ purple: "#6f5ed3"
1576
+ }
1577
+ },
1578
+ featuredDemo: {
1579
+ background: {
1580
+ primary: {
1581
+ base: "#679eff",
1582
+ hover: "#deebfe"
1583
+ },
1584
+ secondary: {
1585
+ base: "#9180f4",
1586
+ hover: "#eaeaf9"
1587
+ }
1588
+ }
1589
+ },
1590
+ darkModal: {
1591
+ background: {
1592
+ base: "#002838"
1593
+ },
1594
+ text: {
1595
+ base: "#FFFFFF"
1596
+ },
1597
+ cards: {
1598
+ background: {
1599
+ base: "#FFFFFF",
1600
+ hover: "#eaeaf9"
1601
+ },
1602
+ text: {
1603
+ base: "#364141",
1604
+ hover: "#273333"
1605
+ },
1606
+ border: {
1607
+ base: "#FFFFFF",
1608
+ hover: "#6f5ed3"
1609
+ }
1610
+ }
1611
+ },
1612
+ user: {
1613
+ status: {
1614
+ online: "#0ca750"
1615
+ }
1616
+ }
1617
+ },
1618
+ cardControl: {
1619
+ background: {
1620
+ base: "#273333",
1621
+ selected: "#515e5f",
1622
+ hover: "#364141"
1623
+ },
1624
+ text: {
1625
+ selected: "#f3f4f4"
1626
+ }
1627
+ },
1628
+ tags: {
1629
+ collections: {
1630
+ background: {
1631
+ base: "#364141"
1632
+ }
1633
+ }
1634
+ }
1635
+ }
1636
+ });
1637
+
1638
+ const theme = seedsLightTheme;
1639
+ const darkTheme = seedsDarkTheme;
1640
+
1641
+ export { seedsLightTheme, sproutLightTheme, seedsDarkTheme, sproutDarkTheme, theme, darkTheme };