@sproutsocial/seeds-react-theme 3.0.0 → 3.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.
@@ -1,4 +1,523 @@
1
1
  export declare const breakpoints: string[];
2
+ export declare const colors: {
3
+ DATAVIZ_COLORS_LIST: string[];
4
+ DATAVIZ_COLORS_MAP: {
5
+ "1": string;
6
+ "2": string;
7
+ "3": string;
8
+ "4": string;
9
+ "5": string;
10
+ "6": string;
11
+ "7": string;
12
+ "8": string;
13
+ "9": string;
14
+ "10": string;
15
+ "11": string;
16
+ "12": string;
17
+ "13": string;
18
+ "14": string;
19
+ "15": string;
20
+ "16": string;
21
+ "17": string;
22
+ "18": string;
23
+ "19": string;
24
+ "20": string;
25
+ };
26
+ PLACEHOLDER: string;
27
+ neutral: {
28
+ "0": string;
29
+ "100": string;
30
+ "200": string;
31
+ "300": string;
32
+ "400": string;
33
+ "500": string;
34
+ "600": string;
35
+ "700": string;
36
+ "800": string;
37
+ "900": string;
38
+ "1000": string;
39
+ "1100": string;
40
+ };
41
+ green: {
42
+ "0": string;
43
+ "100": string;
44
+ "200": string;
45
+ "300": string;
46
+ "400": string;
47
+ "500": string;
48
+ "600": string;
49
+ "700": string;
50
+ "800": string;
51
+ "900": string;
52
+ "1000": string;
53
+ "1100": string;
54
+ };
55
+ red: {
56
+ "0": string;
57
+ "100": string;
58
+ "200": string;
59
+ "300": string;
60
+ "400": string;
61
+ "500": string;
62
+ "600": string;
63
+ "700": string;
64
+ "800": string;
65
+ "900": string;
66
+ "1000": string;
67
+ "1100": string;
68
+ };
69
+ blue: {
70
+ "0": string;
71
+ "100": string;
72
+ "200": string;
73
+ "300": string;
74
+ "400": string;
75
+ "500": string;
76
+ "600": string;
77
+ "700": string;
78
+ "800": string;
79
+ "900": string;
80
+ "1000": string;
81
+ "1100": string;
82
+ };
83
+ teal: {
84
+ "0": string;
85
+ "50": string;
86
+ "100": string;
87
+ "200": string;
88
+ "300": string;
89
+ "400": string;
90
+ "500": string;
91
+ "600": string;
92
+ "700": string;
93
+ "800": string;
94
+ "900": string;
95
+ "1000": string;
96
+ "1100": string;
97
+ };
98
+ aqua: {
99
+ "0": string;
100
+ "100": string;
101
+ "200": string;
102
+ "300": string;
103
+ "400": string;
104
+ "500": string;
105
+ "600": string;
106
+ "700": string;
107
+ "800": string;
108
+ "900": string;
109
+ "1000": string;
110
+ "1100": string;
111
+ };
112
+ purple: {
113
+ "0": string;
114
+ "100": string;
115
+ "200": string;
116
+ "300": string;
117
+ "400": string;
118
+ "500": string;
119
+ "600": string;
120
+ "700": string;
121
+ "800": string;
122
+ "900": string;
123
+ "1000": string;
124
+ "1100": string;
125
+ };
126
+ magenta: {
127
+ "0": string;
128
+ "100": string;
129
+ "200": string;
130
+ "300": string;
131
+ "350": string;
132
+ "400": string;
133
+ "500": string;
134
+ "600": string;
135
+ "700": string;
136
+ "800": string;
137
+ "900": string;
138
+ "1000": string;
139
+ "1100": string;
140
+ };
141
+ yellow: {
142
+ "0": string;
143
+ "100": string;
144
+ "200": string;
145
+ "300": string;
146
+ "400": string;
147
+ "500": string;
148
+ "600": string;
149
+ "700": string;
150
+ "800": string;
151
+ "900": string;
152
+ "1000": string;
153
+ "1100": string;
154
+ };
155
+ pink: {
156
+ "0": string;
157
+ "100": string;
158
+ "200": string;
159
+ "300": string;
160
+ "400": string;
161
+ "500": string;
162
+ "600": string;
163
+ "700": string;
164
+ "800": string;
165
+ "900": string;
166
+ "1000": string;
167
+ "1100": string;
168
+ };
169
+ orange: {
170
+ "0": string;
171
+ "100": string;
172
+ "200": string;
173
+ "300": string;
174
+ "400": string;
175
+ "500": string;
176
+ "600": string;
177
+ "700": string;
178
+ "800": string;
179
+ "900": string;
180
+ "1000": string;
181
+ "1100": string;
182
+ };
183
+ app: {
184
+ background: {
185
+ base: string;
186
+ };
187
+ };
188
+ container: {
189
+ background: {
190
+ base: string;
191
+ success: string;
192
+ warning: string;
193
+ error: string;
194
+ info: string;
195
+ opportunity: string;
196
+ /** @deprecated Use "error" instead of "danger" */
197
+ danger: string;
198
+ decorative: {
199
+ green: string;
200
+ blue: string;
201
+ purple: string;
202
+ yellow: string;
203
+ orange: string;
204
+ red: string;
205
+ neutral: string;
206
+ magenta: string;
207
+ pink: string;
208
+ aqua: string;
209
+ teal: string;
210
+ };
211
+ selected: string;
212
+ positive_sentiment: string;
213
+ negative_sentiment: string;
214
+ neutral_sentiment: string;
215
+ };
216
+ border: {
217
+ base: string;
218
+ success: string;
219
+ warning: string;
220
+ error: string;
221
+ /** @deprecated Use "error" instead of "danger" */
222
+ danger: string;
223
+ info: string;
224
+ opportunity: string;
225
+ decorative: {
226
+ green: string;
227
+ blue: string;
228
+ purple: string;
229
+ yellow: string;
230
+ orange: string;
231
+ red: string;
232
+ neutral: string;
233
+ magenta: string;
234
+ pink: string;
235
+ aqua: string;
236
+ teal: string;
237
+ };
238
+ selected: string;
239
+ };
240
+ };
241
+ button: {
242
+ primary: {
243
+ background: {
244
+ base: string;
245
+ hover: string;
246
+ active: string;
247
+ };
248
+ border: {
249
+ base: string;
250
+ };
251
+ text: {
252
+ base: string;
253
+ hover: string;
254
+ };
255
+ };
256
+ secondary: {
257
+ background: {
258
+ base: string;
259
+ hover: string;
260
+ active: string;
261
+ };
262
+ border: {
263
+ base: string;
264
+ };
265
+ text: {
266
+ base: string;
267
+ hover: string;
268
+ };
269
+ };
270
+ pill: {
271
+ background: {
272
+ base: string;
273
+ hover: string;
274
+ active: string;
275
+ };
276
+ border: {
277
+ base: string;
278
+ hover: string;
279
+ };
280
+ text: {
281
+ base: string;
282
+ hover: string;
283
+ };
284
+ };
285
+ destructive: {
286
+ background: {
287
+ base: string;
288
+ hover: string;
289
+ active: string;
290
+ };
291
+ border: {
292
+ base: string;
293
+ };
294
+ text: {
295
+ base: string;
296
+ hover: string;
297
+ };
298
+ };
299
+ placeholder: {
300
+ background: {
301
+ base: string;
302
+ hover: string;
303
+ active: string;
304
+ };
305
+ border: {
306
+ base: string;
307
+ };
308
+ text: {
309
+ base: string;
310
+ hover: string;
311
+ };
312
+ };
313
+ overlay: {
314
+ background: {
315
+ base: string;
316
+ hover: string;
317
+ };
318
+ };
319
+ unstyled: {
320
+ background: {
321
+ base: string;
322
+ };
323
+ border: {
324
+ base: string;
325
+ };
326
+ text: {
327
+ base: string;
328
+ hover: string;
329
+ };
330
+ };
331
+ };
332
+ link: {
333
+ base: string;
334
+ hover: string;
335
+ };
336
+ text: {
337
+ headline: string;
338
+ subtext: string;
339
+ body: string;
340
+ inverse: string;
341
+ error: string;
342
+ background: {
343
+ highlight: string;
344
+ selection: string;
345
+ };
346
+ decorative: {
347
+ green: string;
348
+ blue: string;
349
+ purple: string;
350
+ yellow: string;
351
+ orange: string;
352
+ red: string;
353
+ neutral: string;
354
+ magenta: string;
355
+ pink: string;
356
+ aqua: string;
357
+ teal: string;
358
+ };
359
+ };
360
+ icon: {
361
+ base: string;
362
+ inverse: string;
363
+ success: string;
364
+ warning: string;
365
+ error: string;
366
+ /** @deprecated Use "error" instead of "danger" */
367
+ danger: string;
368
+ info: string;
369
+ opportunity: string;
370
+ applied: string;
371
+ positive_sentiment: string;
372
+ negative_sentiment: string;
373
+ neutral_sentiment: string;
374
+ };
375
+ form: {
376
+ background: {
377
+ base: string;
378
+ selected: string;
379
+ };
380
+ border: {
381
+ base: string;
382
+ error: string;
383
+ warning: string;
384
+ selected: string;
385
+ };
386
+ placeholder: {
387
+ base: string;
388
+ };
389
+ };
390
+ listItem: {
391
+ background: {
392
+ base: string;
393
+ hover: string;
394
+ selected: string;
395
+ active: string;
396
+ };
397
+ border: {
398
+ base: string;
399
+ };
400
+ };
401
+ menuItem: {
402
+ background: {
403
+ active: string;
404
+ };
405
+ };
406
+ nav: {
407
+ navItem: {
408
+ text: {
409
+ base: string;
410
+ };
411
+ icon: {
412
+ base: string;
413
+ };
414
+ indicator: {
415
+ notification: {
416
+ base: string;
417
+ };
418
+ userStatus: {
419
+ online: string;
420
+ offline: string;
421
+ unavailable: string;
422
+ };
423
+ };
424
+ background: {
425
+ base: string;
426
+ hover: string;
427
+ active: string;
428
+ selected: string;
429
+ };
430
+ border: {
431
+ hover: string;
432
+ active: string;
433
+ selected: string;
434
+ };
435
+ };
436
+ };
437
+ overlay: {
438
+ background: {
439
+ base: string;
440
+ };
441
+ text: {
442
+ base: string;
443
+ };
444
+ icon: {
445
+ base: string;
446
+ };
447
+ };
448
+ elevation: {
449
+ base: string;
450
+ };
451
+ illustration: {
452
+ fill: string;
453
+ stroke: string;
454
+ };
455
+ network: {
456
+ twitter: string;
457
+ twitter_like: string;
458
+ facebook: string;
459
+ facebook_audience_network: string;
460
+ linkedin: string;
461
+ instagram: string;
462
+ feedly: string;
463
+ analytics: string;
464
+ youtube: string;
465
+ messenger: string;
466
+ snapchat: string;
467
+ pinterest: string;
468
+ tumblr: string;
469
+ reddit: string;
470
+ tripadvisor: string;
471
+ glassdoor: string;
472
+ google_my_business: string;
473
+ google_business_messages: string;
474
+ google_play_store: string;
475
+ apple_app_store: string;
476
+ salesforce: string;
477
+ zendesk: string;
478
+ hubspot: string;
479
+ microsoft_dynamics: string;
480
+ yelp: string;
481
+ whatsapp: string;
482
+ tiktok: string;
483
+ threads: string;
484
+ trustpilot: string;
485
+ x: string;
486
+ x_like: string;
487
+ bluesky: string;
488
+ };
489
+ dataviz: {
490
+ map: {
491
+ "1": string;
492
+ "2": string;
493
+ "3": string;
494
+ "4": string;
495
+ "5": string;
496
+ "6": string;
497
+ "7": string;
498
+ "8": string;
499
+ "9": string;
500
+ "10": string;
501
+ "11": string;
502
+ "12": string;
503
+ "13": string;
504
+ "14": string;
505
+ "15": string;
506
+ "16": string;
507
+ "17": string;
508
+ "18": string;
509
+ "19": string;
510
+ "20": string;
511
+ };
512
+ list: string[];
513
+ placeholder: string;
514
+ };
515
+ userStatus: {
516
+ online: string;
517
+ offline: string;
518
+ unavailable: string;
519
+ };
520
+ };
2
521
  export declare const typography: {
3
522
  100: import("@sproutsocial/seeds-typography").TypographySizeType;
4
523
  200: import("@sproutsocial/seeds-typography").TypographySizeType;
@@ -410,8 +929,10 @@ declare const theme: {
410
929
  };
411
930
  };
412
931
  overlay: {
413
- base: string;
414
- hover: string;
932
+ background: {
933
+ base: string;
934
+ hover: string;
935
+ };
415
936
  };
416
937
  unstyled: {
417
938
  background: {
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/light/theme.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,WAAW,UAA0C,CAAC;AAwUnE,eAAO,MAAM,UAAU;;;;;;;;;;;;;CAatB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;CAarB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;CAavB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC;AAE1C,eAAO,MAAM,UAAU,QAA+B,CAAC;AAEvD,eAAO,MAAM,WAAW;;;;;CAKvB,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;CAUjB,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;CAUjB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,YAAY;;;;CAIxB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;CAIpB,CAAC;AAEF,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAlaL,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA+IrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyRtD,CAAC;AAEF,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/light/theme.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,WAAW,UAA0C,CAAC;AAMnE,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAcb,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;YAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAiJrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0ItD,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;CAatB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;CAarB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;CAavB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC;AAE1C,eAAO,MAAM,UAAU,QAA+B,CAAC;AAEvD,eAAO,MAAM,WAAW;;;;;CAKvB,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;CAUjB,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;CAUjB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,YAAY;;;;CAIxB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;CAIpB,CAAC;AAEF,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBApaL,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAiJrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyRtD,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -1,5 +1,4 @@
1
- import { breakpoints, typography, fontWeights, radii, borders, borderWidths, shadows, space, easing, duration } from "../light/theme";
2
- import type { TypeColors } from "./theme.colors";
1
+ import { breakpoints, colors, typography, fontWeights, radii, borders, borderWidths, shadows, space, easing, duration } from "../light/theme";
3
2
  import type { TypeFontFamilyString } from "../light/theme";
4
3
  import { datePicker, navigation, ai, analytics, listening, growth, cardControl } from "../extendedThemes/sproutTheme/light/theme";
5
4
  export type TypeThemeMode = "light" | "dark";
@@ -8,7 +7,7 @@ export type TypeTypography = typeof typography;
8
7
  export type TypeFontWeight = typeof fontWeights;
9
8
  export type TypeFontFamily = TypeFontFamilyString;
10
9
  export type TypeSpace = typeof space;
11
- export type TypeColor = TypeColors;
10
+ export type TypeColor = typeof colors;
12
11
  export type TypeRadii = typeof radii;
13
12
  export type TypeBorder = typeof borders;
14
13
  export type TypeBorderWidth = typeof borderWidths;
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/types/theme.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,UAAU,EACV,WAAW,EACX,KAAK,EACL,OAAO,EACP,YAAY,EACZ,OAAO,EACP,KAAK,EACL,MAAM,EACN,QAAQ,EACT,MAAM,gBAAgB,CAAC;AACxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,EACL,UAAU,EACV,UAAU,EACV,EAAE,EACF,SAAS,EACT,SAAS,EACT,MAAM,EACN,WAAW,EACZ,MAAM,2CAA2C,CAAC;AAEnD,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,MAAM,CAAC;AAC7C,MAAM,MAAM,cAAc,GAAG,OAAO,WAAW,CAAC;AAChD,MAAM,MAAM,cAAc,GAAG,OAAO,UAAU,CAAC;AAC/C,MAAM,MAAM,cAAc,GAAG,OAAO,WAAW,CAAC;AAChD,MAAM,MAAM,cAAc,GAAG,oBAAoB,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,OAAO,KAAK,CAAC;AACrC,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC;AACnC,MAAM,MAAM,SAAS,GAAG,OAAO,KAAK,CAAC;AACrC,MAAM,MAAM,UAAU,GAAG,OAAO,OAAO,CAAC;AACxC,MAAM,MAAM,eAAe,GAAG,OAAO,YAAY,CAAC;AAClD,MAAM,MAAM,UAAU,GAAG,OAAO,OAAO,CAAC;AACxC,MAAM,MAAM,UAAU,GAAG,OAAO,MAAM,CAAC;AACvC,MAAM,MAAM,YAAY,GAAG,OAAO,QAAQ,CAAC;AAE3C,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,aAAa,CAAC;IACpB,WAAW,EAAE,cAAc,CAAC;IAC5B,MAAM,EAAE,SAAS,CAAC;IAClB,UAAU,EAAE,cAAc,CAAC;IAC3B,WAAW,EAAE,cAAc,CAAC;IAC5B,UAAU,EAAE,cAAc,CAAC;IAC3B,KAAK,EAAE,SAAS,CAAC;IACjB,KAAK,EAAE,SAAS,CAAC;IACjB,OAAO,EAAE,UAAU,CAAC;IACpB,YAAY,EAAE,eAAe,CAAC;IAC9B,OAAO,EAAE,UAAU,CAAC;IACpB,MAAM,EAAE,UAAU,CAAC;IACnB,QAAQ,EAAE,YAAY,CAAC;CACxB;AAGD,MAAM,WAAW,eAAgB,SAAQ,SAAS;IAChD,MAAM,EAAE,SAAS,GAAG;QAClB,UAAU,EAAE,OAAO,UAAU,CAAC;QAC9B,UAAU,EAAE,OAAO,UAAU,CAAC;QAC9B,EAAE,EAAE,OAAO,EAAE,CAAC;QACd,SAAS,EAAE,OAAO,SAAS,CAAC;QAC5B,SAAS,EAAE,OAAO,SAAS,CAAC;QAC5B,MAAM,EAAE,OAAO,MAAM,CAAC;QACtB,WAAW,EAAE,OAAO,WAAW,CAAC;KACjC,CAAC;CACH"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/types/theme.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,MAAM,EACN,UAAU,EACV,WAAW,EACX,KAAK,EACL,OAAO,EACP,YAAY,EACZ,OAAO,EACP,KAAK,EACL,MAAM,EACN,QAAQ,EACT,MAAM,gBAAgB,CAAC;AACxB,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,EACL,UAAU,EACV,UAAU,EACV,EAAE,EACF,SAAS,EACT,SAAS,EACT,MAAM,EACN,WAAW,EACZ,MAAM,2CAA2C,CAAC;AAEnD,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,MAAM,CAAC;AAC7C,MAAM,MAAM,cAAc,GAAG,OAAO,WAAW,CAAC;AAChD,MAAM,MAAM,cAAc,GAAG,OAAO,UAAU,CAAC;AAC/C,MAAM,MAAM,cAAc,GAAG,OAAO,WAAW,CAAC;AAChD,MAAM,MAAM,cAAc,GAAG,oBAAoB,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,OAAO,KAAK,CAAC;AACrC,MAAM,MAAM,SAAS,GAAG,OAAO,MAAM,CAAC;AACtC,MAAM,MAAM,SAAS,GAAG,OAAO,KAAK,CAAC;AACrC,MAAM,MAAM,UAAU,GAAG,OAAO,OAAO,CAAC;AACxC,MAAM,MAAM,eAAe,GAAG,OAAO,YAAY,CAAC;AAClD,MAAM,MAAM,UAAU,GAAG,OAAO,OAAO,CAAC;AACxC,MAAM,MAAM,UAAU,GAAG,OAAO,MAAM,CAAC;AACvC,MAAM,MAAM,YAAY,GAAG,OAAO,QAAQ,CAAC;AAE3C,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,aAAa,CAAC;IACpB,WAAW,EAAE,cAAc,CAAC;IAC5B,MAAM,EAAE,SAAS,CAAC;IAClB,UAAU,EAAE,cAAc,CAAC;IAC3B,WAAW,EAAE,cAAc,CAAC;IAC5B,UAAU,EAAE,cAAc,CAAC;IAC3B,KAAK,EAAE,SAAS,CAAC;IACjB,KAAK,EAAE,SAAS,CAAC;IACjB,OAAO,EAAE,UAAU,CAAC;IACpB,YAAY,EAAE,eAAe,CAAC;IAC9B,OAAO,EAAE,UAAU,CAAC;IACpB,MAAM,EAAE,UAAU,CAAC;IACnB,QAAQ,EAAE,YAAY,CAAC;CACxB;AAGD,MAAM,WAAW,eAAgB,SAAQ,SAAS;IAChD,MAAM,EAAE,SAAS,GAAG;QAClB,UAAU,EAAE,OAAO,UAAU,CAAC;QAC9B,UAAU,EAAE,OAAO,UAAU,CAAC;QAC9B,EAAE,EAAE,OAAO,EAAE,CAAC;QACd,SAAS,EAAE,OAAO,SAAS,CAAC;QAC5B,SAAS,EAAE,OAAO,SAAS,CAAC;QAC5B,MAAM,EAAE,OAAO,MAAM,CAAC;QACtB,WAAW,EAAE,OAAO,WAAW,CAAC;KACjC,CAAC;CACH"}
package/lib/dark/theme.js CHANGED
@@ -23,7 +23,7 @@ export var shadows = {
23
23
 
24
24
  // If you are making changes to the colors in the theme file tag the Design Systems team on your PR! Thank you!!
25
25
 
26
- var colors = _objectSpread(_objectSpread({}, lightTheme.colors), {}, {
26
+ export var colors = _objectSpread(_objectSpread({}, lightTheme.colors), {}, {
27
27
  app: {
28
28
  background: {
29
29
  base: COLORS.COLOR_NEUTRAL_1000
@@ -154,6 +154,12 @@ var colors = _objectSpread(_objectSpread({}, lightTheme.colors), {}, {
154
154
  hover: COLORS.COLOR_BLUE_300
155
155
  }
156
156
  },
157
+ overlay: {
158
+ background: {
159
+ base: transparentize(0.56, COLORS.COLOR_NEUTRAL_1000),
160
+ hover: transparentize(0.64, COLORS.COLOR_NEUTRAL_1000)
161
+ }
162
+ },
157
163
  unstyled: {
158
164
  background: {
159
165
  base: "transparent"
@@ -25,7 +25,7 @@ var MODE = "light";
25
25
 
26
26
  // If you are making changes to the colors in the theme file tag the Design Systems team on your PR! Thank you!!
27
27
 
28
- var colors = _objectSpread(_objectSpread({
28
+ export var colors = _objectSpread(_objectSpread({
29
29
  app: {
30
30
  background: {
31
31
  base: COLORS.COLOR_NEUTRAL_100
@@ -157,8 +157,10 @@ var colors = _objectSpread(_objectSpread({
157
157
  }
158
158
  },
159
159
  overlay: {
160
- base: transparentize(0.56, COLORS.COLOR_NEUTRAL_1000),
161
- hover: transparentize(0.64, COLORS.COLOR_NEUTRAL_1000)
160
+ background: {
161
+ base: transparentize(0.56, COLORS.COLOR_NEUTRAL_1000),
162
+ hover: transparentize(0.64, COLORS.COLOR_NEUTRAL_1000)
163
+ }
162
164
  },
163
165
  unstyled: {
164
166
  background: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-react-theme",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "description": "Seeds Theme",
5
5
  "main": "commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -23,7 +23,7 @@
23
23
  "@sproutsocial/seeds-border": "^1.7.0",
24
24
  "@sproutsocial/seeds-color": "^2.2.0",
25
25
  "@sproutsocial/seeds-depth": "^3.4.0",
26
- "@sproutsocial/seeds-motion": "^1.8.0",
26
+ "@sproutsocial/seeds-motion": "^1.8.1",
27
27
  "@sproutsocial/seeds-networkcolor": "^2.20.0",
28
28
  "@sproutsocial/seeds-space": "^0.8.0",
29
29
  "@sproutsocial/seeds-typography": "^3.7.0",