@sproutsocial/seeds-react-theme 1.2.0 → 1.3.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.
@@ -90,6 +90,16 @@ export type TypeAITheme = {|
90
90
  background: {
91
91
  primary: string,
92
92
  secondary: string,
93
+ default: {
94
+ primary: string,
95
+ secondary: string,
96
+ ...
97
+ },
98
+ inverse: {
99
+ primary: string,
100
+ secondary: string,
101
+ ...
102
+ },
93
103
  ...
94
104
  },
95
105
  ...
@@ -86,7 +86,15 @@ var ai = exports.ai = {
86
86
  },
87
87
  background: {
88
88
  primary: _theme.default.colors.teal[100],
89
- secondary: _theme.default.colors.blue[200]
89
+ secondary: _theme.default.colors.blue[200],
90
+ default: {
91
+ primary: _theme.default.colors.teal[100],
92
+ secondary: _theme.default.colors.blue[200]
93
+ },
94
+ inverse: {
95
+ primary: _theme.default.colors.teal[800],
96
+ secondary: _theme.default.colors.blue[900]
97
+ }
90
98
  }
91
99
  }
92
100
  };
@@ -83,7 +83,15 @@ var ai = exports.ai = {
83
83
  },
84
84
  background: {
85
85
  primary: _theme.default.colors.teal[800],
86
- secondary: _theme.default.colors.blue[900]
86
+ secondary: _theme.default.colors.blue[900],
87
+ default: {
88
+ primary: _theme.default.colors.teal[800],
89
+ secondary: _theme.default.colors.blue[900]
90
+ },
91
+ inverse: {
92
+ primary: _theme.default.colors.teal[100],
93
+ secondary: _theme.default.colors.blue[200]
94
+ }
87
95
  }
88
96
  }
89
97
  };
@@ -7,7 +7,7 @@ exports.typography = exports.space = exports.shadows = exports.radii = exports.l
7
7
  var _polished = require("polished");
8
8
  var _seedsColor = _interopRequireDefault(require("@sproutsocial/seeds-color"));
9
9
  var _seedsNetworkcolor = _interopRequireDefault(require("@sproutsocial/seeds-networkcolor"));
10
- var TYPOGRAPHY = _interopRequireWildcard(require("@sproutsocial/seeds-typography"));
10
+ var _seedsTypography = _interopRequireDefault(require("@sproutsocial/seeds-typography"));
11
11
  var _seedsSpace = _interopRequireDefault(require("@sproutsocial/seeds-space"));
12
12
  var _seedsDepth = _interopRequireDefault(require("@sproutsocial/seeds-depth"));
13
13
  var _seedsMotion = _interopRequireDefault(require("@sproutsocial/seeds-motion"));
@@ -15,8 +15,6 @@ var _seedsBorder = _interopRequireDefault(require("@sproutsocial/seeds-border"))
15
15
  var _literalColors = _interopRequireDefault(require("./literal-colors"));
16
16
  var _datavizPalette = require("./dataviz-palette");
17
17
  var _decorativePalettes = require("./decorative-palettes");
18
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
19
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
20
18
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
19
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
22
20
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
@@ -297,53 +295,53 @@ var colors = _objectSpread(_objectSpread({
297
295
  }
298
296
  }, _literalColors.default), _datavizPalette.datavizPalette);
299
297
  var typography = exports.typography = {
300
- 100: TYPOGRAPHY.TYPOGRAPHY_SIZE_100,
301
- 200: TYPOGRAPHY.TYPOGRAPHY_SIZE_200,
302
- 300: TYPOGRAPHY.TYPOGRAPHY_SIZE_300,
303
- 400: TYPOGRAPHY.TYPOGRAPHY_SIZE_400,
304
- 500: TYPOGRAPHY.TYPOGRAPHY_SIZE_500,
305
- 600: TYPOGRAPHY.TYPOGRAPHY_SIZE_600,
306
- 700: TYPOGRAPHY.TYPOGRAPHY_SIZE_700,
307
- 800: TYPOGRAPHY.TYPOGRAPHY_SIZE_800,
308
- 900: TYPOGRAPHY.TYPOGRAPHY_SIZE_900,
309
- 1000: TYPOGRAPHY.TYPOGRAPHY_SIZE_1000,
310
- 1100: TYPOGRAPHY.TYPOGRAPHY_SIZE_1100,
311
- 1200: TYPOGRAPHY.TYPOGRAPHY_SIZE_1200
298
+ 100: _seedsTypography.default.TYPOGRAPHY_SIZE_100,
299
+ 200: _seedsTypography.default.TYPOGRAPHY_SIZE_200,
300
+ 300: _seedsTypography.default.TYPOGRAPHY_SIZE_300,
301
+ 400: _seedsTypography.default.TYPOGRAPHY_SIZE_400,
302
+ 500: _seedsTypography.default.TYPOGRAPHY_SIZE_500,
303
+ 600: _seedsTypography.default.TYPOGRAPHY_SIZE_600,
304
+ 700: _seedsTypography.default.TYPOGRAPHY_SIZE_700,
305
+ 800: _seedsTypography.default.TYPOGRAPHY_SIZE_800,
306
+ 900: _seedsTypography.default.TYPOGRAPHY_SIZE_900,
307
+ 1000: _seedsTypography.default.TYPOGRAPHY_SIZE_1000,
308
+ 1100: _seedsTypography.default.TYPOGRAPHY_SIZE_1100,
309
+ 1200: _seedsTypography.default.TYPOGRAPHY_SIZE_1200
312
310
  };
313
311
  var fontSizes = exports.fontSizes = {
314
- 100: TYPOGRAPHY.TYPOGRAPHY_SIZE_100.fontSize,
315
- 200: TYPOGRAPHY.TYPOGRAPHY_SIZE_200.fontSize,
316
- 300: TYPOGRAPHY.TYPOGRAPHY_SIZE_300.fontSize,
317
- 400: TYPOGRAPHY.TYPOGRAPHY_SIZE_400.fontSize,
318
- 500: TYPOGRAPHY.TYPOGRAPHY_SIZE_500.fontSize,
319
- 600: TYPOGRAPHY.TYPOGRAPHY_SIZE_600.fontSize,
320
- 700: TYPOGRAPHY.TYPOGRAPHY_SIZE_700.fontSize,
321
- 800: TYPOGRAPHY.TYPOGRAPHY_SIZE_800.fontSize,
322
- 900: TYPOGRAPHY.TYPOGRAPHY_SIZE_900.fontSize,
323
- 1000: TYPOGRAPHY.TYPOGRAPHY_SIZE_1000.fontSize,
324
- 1100: TYPOGRAPHY.TYPOGRAPHY_SIZE_1100.fontSize,
325
- 1200: TYPOGRAPHY.TYPOGRAPHY_SIZE_1200.fontSize
312
+ 100: _seedsTypography.default.TYPOGRAPHY_SIZE_100.fontSize,
313
+ 200: _seedsTypography.default.TYPOGRAPHY_SIZE_200.fontSize,
314
+ 300: _seedsTypography.default.TYPOGRAPHY_SIZE_300.fontSize,
315
+ 400: _seedsTypography.default.TYPOGRAPHY_SIZE_400.fontSize,
316
+ 500: _seedsTypography.default.TYPOGRAPHY_SIZE_500.fontSize,
317
+ 600: _seedsTypography.default.TYPOGRAPHY_SIZE_600.fontSize,
318
+ 700: _seedsTypography.default.TYPOGRAPHY_SIZE_700.fontSize,
319
+ 800: _seedsTypography.default.TYPOGRAPHY_SIZE_800.fontSize,
320
+ 900: _seedsTypography.default.TYPOGRAPHY_SIZE_900.fontSize,
321
+ 1000: _seedsTypography.default.TYPOGRAPHY_SIZE_1000.fontSize,
322
+ 1100: _seedsTypography.default.TYPOGRAPHY_SIZE_1100.fontSize,
323
+ 1200: _seedsTypography.default.TYPOGRAPHY_SIZE_1200.fontSize
326
324
  };
327
325
  var lineHeights = exports.lineHeights = {
328
- 100: TYPOGRAPHY.TYPOGRAPHY_SIZE_100.lineHeight,
329
- 200: TYPOGRAPHY.TYPOGRAPHY_SIZE_200.lineHeight,
330
- 300: TYPOGRAPHY.TYPOGRAPHY_SIZE_300.lineHeight,
331
- 400: TYPOGRAPHY.TYPOGRAPHY_SIZE_400.lineHeight,
332
- 500: TYPOGRAPHY.TYPOGRAPHY_SIZE_500.lineHeight,
333
- 600: TYPOGRAPHY.TYPOGRAPHY_SIZE_600.lineHeight,
334
- 700: TYPOGRAPHY.TYPOGRAPHY_SIZE_700.lineHeight,
335
- 800: TYPOGRAPHY.TYPOGRAPHY_SIZE_800.lineHeight,
336
- 900: TYPOGRAPHY.TYPOGRAPHY_SIZE_900.lineHeight,
337
- 1000: TYPOGRAPHY.TYPOGRAPHY_SIZE_1000.lineHeight,
338
- 1100: TYPOGRAPHY.TYPOGRAPHY_SIZE_1100.lineHeight,
339
- 1200: TYPOGRAPHY.TYPOGRAPHY_SIZE_1200.lineHeight
326
+ 100: _seedsTypography.default.TYPOGRAPHY_SIZE_100.lineHeight,
327
+ 200: _seedsTypography.default.TYPOGRAPHY_SIZE_200.lineHeight,
328
+ 300: _seedsTypography.default.TYPOGRAPHY_SIZE_300.lineHeight,
329
+ 400: _seedsTypography.default.TYPOGRAPHY_SIZE_400.lineHeight,
330
+ 500: _seedsTypography.default.TYPOGRAPHY_SIZE_500.lineHeight,
331
+ 600: _seedsTypography.default.TYPOGRAPHY_SIZE_600.lineHeight,
332
+ 700: _seedsTypography.default.TYPOGRAPHY_SIZE_700.lineHeight,
333
+ 800: _seedsTypography.default.TYPOGRAPHY_SIZE_800.lineHeight,
334
+ 900: _seedsTypography.default.TYPOGRAPHY_SIZE_900.lineHeight,
335
+ 1000: _seedsTypography.default.TYPOGRAPHY_SIZE_1000.lineHeight,
336
+ 1100: _seedsTypography.default.TYPOGRAPHY_SIZE_1100.lineHeight,
337
+ 1200: _seedsTypography.default.TYPOGRAPHY_SIZE_1200.lineHeight
340
338
  };
341
- var fontFamily = exports.fontFamily = TYPOGRAPHY.TYPOGRAPHY_FAMILY;
339
+ var fontFamily = exports.fontFamily = _seedsTypography.default.TYPOGRAPHY_FAMILY;
342
340
  var fontWeights = exports.fontWeights = {
343
- normal: TYPOGRAPHY.TYPOGRAPHY_WEIGHT_NORMAL,
344
- semibold: TYPOGRAPHY.TYPOGRAPHY_WEIGHT_SEMIBOLD,
345
- bold: TYPOGRAPHY.TYPOGRAPHY_WEIGHT_BOLD,
346
- extrabold: TYPOGRAPHY.TYPOGRAPHY_WEIGHT_EXTRA_BOLD
341
+ normal: _seedsTypography.default.TYPOGRAPHY_WEIGHT_NORMAL,
342
+ semibold: _seedsTypography.default.TYPOGRAPHY_WEIGHT_SEMIBOLD,
343
+ bold: _seedsTypography.default.TYPOGRAPHY_WEIGHT_BOLD,
344
+ extrabold: _seedsTypography.default.TYPOGRAPHY_WEIGHT_EXTRA_BOLD
347
345
  };
348
346
  var space = exports.space = {
349
347
  0: _seedsSpace.default.SPACE_SIZE_0,
@@ -7,7 +7,15 @@ $theme: (
7
7
  ),
8
8
  "background": (
9
9
  "primary": #cdf7ef,
10
- "secondary": #c7dbf9
10
+ "secondary": #c7dbf9,
11
+ "default": (
12
+ "primary": #cdf7ef,
13
+ "secondary": #c7dbf9
14
+ ),
15
+ "inverse": (
16
+ "primary": #067c7c,
17
+ "secondary": #0c3f89
18
+ )
11
19
  )
12
20
  )
13
21
  ),
@@ -574,7 +582,15 @@ $theme: (
574
582
  ),
575
583
  "background": (
576
584
  "primary": #cdf7ef,
577
- "secondary": #c7dbf9
585
+ "secondary": #c7dbf9,
586
+ "default": (
587
+ "primary": #cdf7ef,
588
+ "secondary": #c7dbf9
589
+ ),
590
+ "inverse": (
591
+ "primary": #067c7c,
592
+ "secondary": #0c3f89
593
+ )
578
594
  )
579
595
  )
580
596
  ),
@@ -7,7 +7,15 @@ $theme: (
7
7
  ),
8
8
  "background": (
9
9
  "primary": #067c7c,
10
- "secondary": #0c3f89
10
+ "secondary": #0c3f89,
11
+ "default": (
12
+ "primary": #067c7c,
13
+ "secondary": #0c3f89
14
+ ),
15
+ "inverse": (
16
+ "primary": #cdf7ef,
17
+ "secondary": #c7dbf9
18
+ )
11
19
  )
12
20
  )
13
21
  ),
@@ -514,7 +522,15 @@ $theme: (
514
522
  ),
515
523
  "background": (
516
524
  "primary": #067c7c,
517
- "secondary": #0c3f89
525
+ "secondary": #0c3f89,
526
+ "default": (
527
+ "primary": #067c7c,
528
+ "secondary": #0c3f89
529
+ ),
530
+ "inverse": (
531
+ "primary": #cdf7ef,
532
+ "secondary": #c7dbf9
533
+ )
518
534
  )
519
535
  )
520
536
  ),
@@ -478,131 +478,59 @@ declare const darkTheme: {
478
478
  breakpoints: string[];
479
479
  typography: {
480
480
  typography: {
481
- 100: {
482
- fontSize: string;
483
- lineHeight: string;
484
- };
485
- 200: {
486
- fontSize: string;
487
- lineHeight: string;
488
- };
489
- 300: {
490
- fontSize: string;
491
- lineHeight: string;
492
- };
493
- 400: {
494
- fontSize: string;
495
- lineHeight: string;
496
- };
497
- 500: {
498
- fontSize: string;
499
- lineHeight: string;
500
- };
501
- 600: {
502
- fontSize: string;
503
- lineHeight: string;
504
- };
505
- 700: {
506
- fontSize: string;
507
- lineHeight: string;
508
- };
509
- 800: {
510
- fontSize: string;
511
- lineHeight: string;
512
- };
513
- 900: {
514
- fontSize: string;
515
- lineHeight: string;
516
- };
517
- 1000: {
518
- fontSize: string;
519
- lineHeight: string;
520
- };
521
- 1100: {
522
- fontSize: string;
523
- lineHeight: string;
524
- };
525
- 1200: {
526
- fontSize: string;
527
- lineHeight: string;
528
- };
529
- };
530
- 100: {
531
- fontSize: string;
532
- lineHeight: string;
533
- };
534
- 200: {
535
- fontSize: string;
536
- lineHeight: string;
537
- };
538
- 300: {
539
- fontSize: string;
540
- lineHeight: string;
541
- };
542
- 400: {
543
- fontSize: string;
544
- lineHeight: string;
545
- };
546
- 500: {
547
- fontSize: string;
548
- lineHeight: string;
549
- };
550
- 600: {
551
- fontSize: string;
552
- lineHeight: string;
553
- };
554
- 700: {
555
- fontSize: string;
556
- lineHeight: string;
557
- };
558
- 800: {
559
- fontSize: string;
560
- lineHeight: string;
561
- };
562
- 900: {
563
- fontSize: string;
564
- lineHeight: string;
565
- };
566
- 1000: {
567
- fontSize: string;
568
- lineHeight: string;
569
- };
570
- 1100: {
571
- fontSize: string;
572
- lineHeight: string;
573
- };
574
- 1200: {
575
- fontSize: string;
576
- lineHeight: string;
577
- };
481
+ 100: import("@sproutsocial/seeds-typography").TypographySizeType;
482
+ 200: import("@sproutsocial/seeds-typography").TypographySizeType;
483
+ 300: import("@sproutsocial/seeds-typography").TypographySizeType;
484
+ 400: import("@sproutsocial/seeds-typography").TypographySizeType;
485
+ 500: import("@sproutsocial/seeds-typography").TypographySizeType;
486
+ 600: import("@sproutsocial/seeds-typography").TypographySizeType;
487
+ 700: import("@sproutsocial/seeds-typography").TypographySizeType;
488
+ 800: import("@sproutsocial/seeds-typography").TypographySizeType;
489
+ 900: import("@sproutsocial/seeds-typography").TypographySizeType;
490
+ 1000: import("@sproutsocial/seeds-typography").TypographySizeType;
491
+ 1100: import("@sproutsocial/seeds-typography").TypographySizeType;
492
+ 1200: import("@sproutsocial/seeds-typography").TypographySizeType;
493
+ };
494
+ 100: import("@sproutsocial/seeds-typography").TypographySizeType;
495
+ 200: import("@sproutsocial/seeds-typography").TypographySizeType;
496
+ 300: import("@sproutsocial/seeds-typography").TypographySizeType;
497
+ 400: import("@sproutsocial/seeds-typography").TypographySizeType;
498
+ 500: import("@sproutsocial/seeds-typography").TypographySizeType;
499
+ 600: import("@sproutsocial/seeds-typography").TypographySizeType;
500
+ 700: import("@sproutsocial/seeds-typography").TypographySizeType;
501
+ 800: import("@sproutsocial/seeds-typography").TypographySizeType;
502
+ 900: import("@sproutsocial/seeds-typography").TypographySizeType;
503
+ 1000: import("@sproutsocial/seeds-typography").TypographySizeType;
504
+ 1100: import("@sproutsocial/seeds-typography").TypographySizeType;
505
+ 1200: import("@sproutsocial/seeds-typography").TypographySizeType;
578
506
  };
579
507
  fontSizes: {
580
- 100: string;
581
- 200: string;
582
- 300: string;
583
- 400: string;
584
- 500: string;
585
- 600: string;
586
- 700: string;
587
- 800: string;
588
- 900: string;
589
- 1000: string;
590
- 1100: string;
591
- 1200: string;
508
+ 100: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
509
+ 200: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
510
+ 300: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
511
+ 400: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
512
+ 500: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
513
+ 600: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
514
+ 700: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
515
+ 800: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
516
+ 900: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
517
+ 1000: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
518
+ 1100: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
519
+ 1200: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
592
520
  };
593
521
  lineHeights: {
594
- 100: string;
595
- 200: string;
596
- 300: string;
597
- 400: string;
598
- 500: string;
599
- 600: string;
600
- 700: string;
601
- 800: string;
602
- 900: string;
603
- 1000: string;
604
- 1100: string;
605
- 1200: string;
522
+ 100: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
523
+ 200: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
524
+ 300: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
525
+ 400: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
526
+ 500: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
527
+ 600: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
528
+ 700: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
529
+ 800: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
530
+ 900: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
531
+ 1000: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
532
+ 1100: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
533
+ 1200: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
606
534
  };
607
535
  fontFamily: string;
608
536
  fontWeights: {
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/dark/theme.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAgPF,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;0BA7NT,mDAAmD;;;;;;;;;;;;;;;gBAAnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA2IrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BApKjD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkOxD,CAAC;AAEF,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/dark/theme.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAgPF,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;0BA7NT,mDAAmD;;;;;;;;;;;;;;;gBAAnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA2IrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BApKjD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkOxD,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -68,6 +68,14 @@ export declare const ai: {
68
68
  background: {
69
69
  primary: string;
70
70
  secondary: string;
71
+ default: {
72
+ primary: string;
73
+ secondary: string;
74
+ };
75
+ inverse: {
76
+ primary: string;
77
+ secondary: string;
78
+ };
71
79
  };
72
80
  };
73
81
  };
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/dark/theme.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoDtB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;CAStB,CAAC;AAEF,eAAO,MAAM,EAAE;;;;;;;;;;;CAYd,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;CAWrB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyCrB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqFlB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;CASvB,CAAC;AAEF,QAAA,MAAM,SAAS,EAAE,eAYhB,CAAC;AAEF,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/dark/theme.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoDtB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;CAStB,CAAC;AAEF,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;;;;CAoBd,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;CAWrB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyCrB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqFlB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;CASvB,CAAC;AAEF,QAAA,MAAM,SAAS,EAAE,eAYhB,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -68,6 +68,14 @@ export declare const ai: {
68
68
  background: {
69
69
  primary: string;
70
70
  secondary: string;
71
+ default: {
72
+ primary: string;
73
+ secondary: string;
74
+ };
75
+ inverse: {
76
+ primary: string;
77
+ secondary: string;
78
+ };
71
79
  };
72
80
  };
73
81
  };
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/light/theme.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiDtB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;CAStB,CAAC;AAEF,eAAO,MAAM,EAAE;;;;;;;;;;;CAYd,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;CAWrB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyCrB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqFlB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;CASvB,CAAC;AAEF,QAAA,MAAM,UAAU,EAAE,eAYjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/light/theme.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiDtB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;CAStB,CAAC;AAEF,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;;;;CAoBd,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;CAWrB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyCrB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqFlB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;CASvB,CAAC;AAEF,QAAA,MAAM,UAAU,EAAE,eAYjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -1,81 +1,45 @@
1
1
  export declare const breakpoints: string[];
2
2
  export declare const typography: {
3
- 100: {
4
- fontSize: string;
5
- lineHeight: string;
6
- };
7
- 200: {
8
- fontSize: string;
9
- lineHeight: string;
10
- };
11
- 300: {
12
- fontSize: string;
13
- lineHeight: string;
14
- };
15
- 400: {
16
- fontSize: string;
17
- lineHeight: string;
18
- };
19
- 500: {
20
- fontSize: string;
21
- lineHeight: string;
22
- };
23
- 600: {
24
- fontSize: string;
25
- lineHeight: string;
26
- };
27
- 700: {
28
- fontSize: string;
29
- lineHeight: string;
30
- };
31
- 800: {
32
- fontSize: string;
33
- lineHeight: string;
34
- };
35
- 900: {
36
- fontSize: string;
37
- lineHeight: string;
38
- };
39
- 1000: {
40
- fontSize: string;
41
- lineHeight: string;
42
- };
43
- 1100: {
44
- fontSize: string;
45
- lineHeight: string;
46
- };
47
- 1200: {
48
- fontSize: string;
49
- lineHeight: string;
50
- };
3
+ 100: import("@sproutsocial/seeds-typography").TypographySizeType;
4
+ 200: import("@sproutsocial/seeds-typography").TypographySizeType;
5
+ 300: import("@sproutsocial/seeds-typography").TypographySizeType;
6
+ 400: import("@sproutsocial/seeds-typography").TypographySizeType;
7
+ 500: import("@sproutsocial/seeds-typography").TypographySizeType;
8
+ 600: import("@sproutsocial/seeds-typography").TypographySizeType;
9
+ 700: import("@sproutsocial/seeds-typography").TypographySizeType;
10
+ 800: import("@sproutsocial/seeds-typography").TypographySizeType;
11
+ 900: import("@sproutsocial/seeds-typography").TypographySizeType;
12
+ 1000: import("@sproutsocial/seeds-typography").TypographySizeType;
13
+ 1100: import("@sproutsocial/seeds-typography").TypographySizeType;
14
+ 1200: import("@sproutsocial/seeds-typography").TypographySizeType;
51
15
  };
52
16
  export declare const fontSizes: {
53
- 100: string;
54
- 200: string;
55
- 300: string;
56
- 400: string;
57
- 500: string;
58
- 600: string;
59
- 700: string;
60
- 800: string;
61
- 900: string;
62
- 1000: string;
63
- 1100: string;
64
- 1200: string;
17
+ 100: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
18
+ 200: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
19
+ 300: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
20
+ 400: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
21
+ 500: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
22
+ 600: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
23
+ 700: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
24
+ 800: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
25
+ 900: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
26
+ 1000: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
27
+ 1100: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
28
+ 1200: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
65
29
  };
66
30
  export declare const lineHeights: {
67
- 100: string;
68
- 200: string;
69
- 300: string;
70
- 400: string;
71
- 500: string;
72
- 600: string;
73
- 700: string;
74
- 800: string;
75
- 900: string;
76
- 1000: string;
77
- 1100: string;
78
- 1200: string;
31
+ 100: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
32
+ 200: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
33
+ 300: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
34
+ 400: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
35
+ 500: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
36
+ 600: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
37
+ 700: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
38
+ 800: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
39
+ 900: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
40
+ 1000: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
41
+ 1100: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
42
+ 1200: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
79
43
  };
80
44
  export type TypeFontFamilyString = string;
81
45
  export declare const fontFamily: string;
@@ -223,6 +187,7 @@ declare const theme: {
223
187
  "1000": string;
224
188
  "1100": string;
225
189
  };
190
+ /** @deprecated Use "error" instead of "danger" */
226
191
  aqua: {
227
192
  "0": string;
228
193
  "100": string;
@@ -595,131 +560,59 @@ declare const theme: {
595
560
  };
596
561
  typography: {
597
562
  typography: {
598
- 100: {
599
- fontSize: string;
600
- lineHeight: string;
601
- };
602
- 200: {
603
- fontSize: string;
604
- lineHeight: string;
605
- };
606
- 300: {
607
- fontSize: string;
608
- lineHeight: string;
609
- };
610
- 400: {
611
- fontSize: string;
612
- lineHeight: string;
613
- };
614
- 500: {
615
- fontSize: string;
616
- lineHeight: string;
617
- };
618
- 600: {
619
- fontSize: string;
620
- lineHeight: string;
621
- };
622
- 700: {
623
- fontSize: string;
624
- lineHeight: string;
625
- };
626
- 800: {
627
- fontSize: string;
628
- lineHeight: string;
629
- };
630
- 900: {
631
- fontSize: string;
632
- lineHeight: string;
633
- };
634
- 1000: {
635
- fontSize: string;
636
- lineHeight: string;
637
- };
638
- 1100: {
639
- fontSize: string;
640
- lineHeight: string;
641
- };
642
- 1200: {
643
- fontSize: string;
644
- lineHeight: string;
645
- };
646
- };
647
- 100: {
648
- fontSize: string;
649
- lineHeight: string;
650
- };
651
- 200: {
652
- fontSize: string;
653
- lineHeight: string;
654
- };
655
- 300: {
656
- fontSize: string;
657
- lineHeight: string;
658
- };
659
- 400: {
660
- fontSize: string;
661
- lineHeight: string;
662
- };
663
- 500: {
664
- fontSize: string;
665
- lineHeight: string;
666
- };
667
- 600: {
668
- fontSize: string;
669
- lineHeight: string;
670
- };
671
- 700: {
672
- fontSize: string;
673
- lineHeight: string;
674
- };
675
- 800: {
676
- fontSize: string;
677
- lineHeight: string;
678
- };
679
- 900: {
680
- fontSize: string;
681
- lineHeight: string;
682
- };
683
- 1000: {
684
- fontSize: string;
685
- lineHeight: string;
686
- };
687
- 1100: {
688
- fontSize: string;
689
- lineHeight: string;
690
- };
691
- 1200: {
692
- fontSize: string;
693
- lineHeight: string;
694
- };
563
+ 100: import("@sproutsocial/seeds-typography").TypographySizeType;
564
+ 200: import("@sproutsocial/seeds-typography").TypographySizeType;
565
+ 300: import("@sproutsocial/seeds-typography").TypographySizeType;
566
+ 400: import("@sproutsocial/seeds-typography").TypographySizeType;
567
+ 500: import("@sproutsocial/seeds-typography").TypographySizeType;
568
+ 600: import("@sproutsocial/seeds-typography").TypographySizeType;
569
+ 700: import("@sproutsocial/seeds-typography").TypographySizeType;
570
+ 800: import("@sproutsocial/seeds-typography").TypographySizeType;
571
+ 900: import("@sproutsocial/seeds-typography").TypographySizeType;
572
+ 1000: import("@sproutsocial/seeds-typography").TypographySizeType;
573
+ 1100: import("@sproutsocial/seeds-typography").TypographySizeType;
574
+ 1200: import("@sproutsocial/seeds-typography").TypographySizeType;
575
+ };
576
+ 100: import("@sproutsocial/seeds-typography").TypographySizeType;
577
+ 200: import("@sproutsocial/seeds-typography").TypographySizeType;
578
+ 300: import("@sproutsocial/seeds-typography").TypographySizeType;
579
+ 400: import("@sproutsocial/seeds-typography").TypographySizeType;
580
+ 500: import("@sproutsocial/seeds-typography").TypographySizeType;
581
+ 600: import("@sproutsocial/seeds-typography").TypographySizeType;
582
+ 700: import("@sproutsocial/seeds-typography").TypographySizeType;
583
+ 800: import("@sproutsocial/seeds-typography").TypographySizeType;
584
+ 900: import("@sproutsocial/seeds-typography").TypographySizeType;
585
+ 1000: import("@sproutsocial/seeds-typography").TypographySizeType;
586
+ 1100: import("@sproutsocial/seeds-typography").TypographySizeType;
587
+ 1200: import("@sproutsocial/seeds-typography").TypographySizeType;
695
588
  };
696
589
  fontSizes: {
697
- 100: string;
698
- 200: string;
699
- 300: string;
700
- 400: string;
701
- 500: string;
702
- 600: string;
703
- 700: string;
704
- 800: string;
705
- 900: string;
706
- 1000: string;
707
- 1100: string;
708
- 1200: string;
590
+ 100: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
591
+ 200: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
592
+ 300: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
593
+ 400: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
594
+ 500: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
595
+ 600: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
596
+ 700: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
597
+ 800: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
598
+ 900: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
599
+ 1000: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
600
+ 1100: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
601
+ 1200: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
709
602
  };
710
603
  lineHeights: {
711
- 100: string;
712
- 200: string;
713
- 300: string;
714
- 400: string;
715
- 500: string;
716
- 600: string;
717
- 700: string;
718
- 800: string;
719
- 900: string;
720
- 1000: string;
721
- 1100: string;
722
- 1200: string;
604
+ 100: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
605
+ 200: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
606
+ 300: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
607
+ 400: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
608
+ 500: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
609
+ 600: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
610
+ 700: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
611
+ 800: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
612
+ 900: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
613
+ 1000: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
614
+ 1100: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
615
+ 1200: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
723
616
  };
724
617
  fontFamily: string;
725
618
  fontWeights: {
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/light/theme.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,WAAW,UAA0C,CAAC;AAqRnE,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;;;;;;;;CAQjB,CAAC;AAEF,eAAO,MAAM,OAAO;;CAEnB,CAAC;AAEF,eAAO,MAAM,YAAY;;CAExB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;CAIpB,CAAC;AAEF,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAzWL,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA2IrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoOtD,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;AAqRnE,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;;;;;;;;CAQjB,CAAC;AAEF,eAAO,MAAM,OAAO;;CAEnB,CAAC;AAEF,eAAO,MAAM,YAAY;;CAExB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;CAIpB,CAAC;AAEF,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAhVL,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAzBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA2IrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoOtD,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -81,7 +81,15 @@ export var ai = {
81
81
  },
82
82
  background: {
83
83
  primary: baseDarkTheme.colors.teal[100],
84
- secondary: baseDarkTheme.colors.blue[200]
84
+ secondary: baseDarkTheme.colors.blue[200],
85
+ default: {
86
+ primary: baseDarkTheme.colors.teal[100],
87
+ secondary: baseDarkTheme.colors.blue[200]
88
+ },
89
+ inverse: {
90
+ primary: baseDarkTheme.colors.teal[800],
91
+ secondary: baseDarkTheme.colors.blue[900]
92
+ }
85
93
  }
86
94
  }
87
95
  };
@@ -78,7 +78,15 @@ export var ai = {
78
78
  },
79
79
  background: {
80
80
  primary: baseLightTheme.colors.teal[800],
81
- secondary: baseLightTheme.colors.blue[900]
81
+ secondary: baseLightTheme.colors.blue[900],
82
+ default: {
83
+ primary: baseLightTheme.colors.teal[800],
84
+ secondary: baseLightTheme.colors.blue[900]
85
+ },
86
+ inverse: {
87
+ primary: baseLightTheme.colors.teal[100],
88
+ secondary: baseLightTheme.colors.blue[200]
89
+ }
82
90
  }
83
91
  }
84
92
  };
@@ -9,7 +9,7 @@ import { transparentize } from "polished";
9
9
  import COLORS from "@sproutsocial/seeds-color";
10
10
  import NETWORKCOLORS from "@sproutsocial/seeds-networkcolor";
11
11
  // eslint-disable-next-line no-restricted-syntax
12
- import * as TYPOGRAPHY from "@sproutsocial/seeds-typography";
12
+ import TYPOGRAPHY from "@sproutsocial/seeds-typography";
13
13
  import SPACE from "@sproutsocial/seeds-space";
14
14
  import DEPTH from "@sproutsocial/seeds-depth";
15
15
  import MOTION from "@sproutsocial/seeds-motion";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-react-theme",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "Seeds Theme",
5
5
  "main": "commonjs/index.js",
6
6
  "module": "lib/index.mjs",
@@ -19,21 +19,21 @@
19
19
  "build:fast": "tsx buildScript.ts"
20
20
  },
21
21
  "dependencies": {
22
+ "@sproutsocial/seeds-border": "*",
22
23
  "@sproutsocial/seeds-color": "*",
23
- "@sproutsocial/seeds-networkcolor": "*",
24
- "@sproutsocial/seeds-typography": "*",
25
- "@sproutsocial/seeds-space": "*",
26
24
  "@sproutsocial/seeds-depth": "*",
27
25
  "@sproutsocial/seeds-motion": "*",
28
- "@sproutsocial/seeds-border": "*",
26
+ "@sproutsocial/seeds-networkcolor": "*",
27
+ "@sproutsocial/seeds-space": "*",
28
+ "@sproutsocial/seeds-typography": "*",
29
29
  "polished": "^3.4.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@sproutsocial/seeds-build-flow": "*",
33
33
  "glob": "^10.3.10",
34
34
  "json-to-scss": "^1.6.2",
35
- "typescript": "^5.1.6",
36
- "tsx": "3.13.0"
35
+ "tsx": "^4.0.0",
36
+ "typescript": "^5.1.6"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=18"