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