@sproutsocial/seeds-react-theme 4.1.0 → 4.2.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.
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.navigation = exports.listening = exports.growth = exports.default = exports.datePicker = exports.cardControl = exports.analytics = exports.ai = void 0;
6
+ exports.tags = exports.navigation = exports.listening = exports.growth = exports.default = exports.datePicker = exports.cardControl = exports.analytics = exports.ai = void 0;
7
7
  var _theme = _interopRequireDefault(require("../../../dark/theme"));
8
8
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
9
9
  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); }
@@ -247,6 +247,13 @@ var cardControl = exports.cardControl = {
247
247
  selected: _theme.default.colors.text.body
248
248
  }
249
249
  };
250
+ var tags = exports.tags = {
251
+ collections: {
252
+ background: {
253
+ base: _theme.default.colors.neutral[800]
254
+ }
255
+ }
256
+ };
250
257
  var darkTheme = _objectSpread(_objectSpread({}, _theme.default), {}, {
251
258
  colors: _objectSpread(_objectSpread({}, _theme.default.colors), {}, {
252
259
  navigation: navigation,
@@ -255,7 +262,8 @@ var darkTheme = _objectSpread(_objectSpread({}, _theme.default), {}, {
255
262
  analytics: analytics,
256
263
  listening: listening,
257
264
  growth: growth,
258
- cardControl: cardControl
265
+ cardControl: cardControl,
266
+ tags: tags
259
267
  })
260
268
  });
261
269
  var _default = exports.default = darkTheme;
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.navigation = exports.listening = exports.growth = exports.default = exports.datePicker = exports.cardControl = exports.analytics = exports.ai = void 0;
6
+ exports.tags = exports.navigation = exports.listening = exports.growth = exports.default = exports.datePicker = exports.cardControl = exports.analytics = exports.ai = void 0;
7
7
  var _theme = _interopRequireDefault(require("../../../light/theme"));
8
8
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
9
9
  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); }
@@ -244,6 +244,14 @@ var cardControl = exports.cardControl = {
244
244
  selected: _theme.default.colors.text.inverse
245
245
  }
246
246
  };
247
+ var tags = exports.tags = {
248
+ collections: {
249
+ background: {
250
+ // Matches app.background.base so the miller columns blend with the page
251
+ base: _theme.default.colors.app.background.base
252
+ }
253
+ }
254
+ };
247
255
  var lightTheme = _objectSpread(_objectSpread({}, _theme.default), {}, {
248
256
  colors: _objectSpread(_objectSpread({}, _theme.default.colors), {}, {
249
257
  ai: ai,
@@ -252,7 +260,8 @@ var lightTheme = _objectSpread(_objectSpread({}, _theme.default), {}, {
252
260
  analytics: analytics,
253
261
  listening: listening,
254
262
  growth: growth,
255
- cardControl: cardControl
263
+ cardControl: cardControl,
264
+ tags: tags
256
265
  })
257
266
  });
258
267
  var _default = exports.default = lightTheme;
@@ -199,6 +199,7 @@ var colors = exports.colors = _objectSpread(_objectSpread({
199
199
  },
200
200
  // AI brand appearances — consume the shared `gradient.ai*` tokens.
201
201
  // Rendered only via the Tailwind/button.css path (see seeds-react-button).
202
+ // Bill forgot to cut a new version of theme.
202
203
  "ai-primary": {
203
204
  background: {
204
205
  base: "var(--color-gradient-ai)"
@@ -280,7 +281,7 @@ var colors = exports.colors = _objectSpread(_objectSpread({
280
281
  applied: _seedsColor.default.COLOR_BLUE_700,
281
282
  positive_sentiment: _seedsColor.default.COLOR_BLUE_600,
282
283
  negative_sentiment: _seedsColor.default.COLOR_RED_600,
283
- neutral_sentiment: _seedsColor.default.COLOR_NEUTRAL_500
284
+ neutral_sentiment: _seedsColor.default.COLOR_NEUTRAL_600
284
285
  },
285
286
  form: {
286
287
  background: {
@@ -132,7 +132,7 @@
132
132
  --color-icon-applied: #205bc3;
133
133
  --color-icon-positive_sentiment: #2b68d3;
134
134
  --color-icon-negative_sentiment: #ed4c42;
135
- --color-icon-neutral_sentiment: #929a9b;
135
+ --color-icon-neutral_sentiment: #6e797a;
136
136
  --color-form-bg-base: #FFFFFF;
137
137
  --color-form-bg-selected: #364141;
138
138
  --color-form-border-base: #6e797a;
package/dist/theme.css CHANGED
@@ -132,7 +132,7 @@
132
132
  --color-icon-applied: #205bc3;
133
133
  --color-icon-positive_sentiment: #2b68d3;
134
134
  --color-icon-negative_sentiment: #ed4c42;
135
- --color-icon-neutral_sentiment: #929a9b;
135
+ --color-icon-neutral_sentiment: #6e797a;
136
136
  --color-form-bg-base: #FFFFFF;
137
137
  --color-form-bg-selected: #364141;
138
138
  --color-form-border-base: #6e797a;
@@ -847,6 +847,13 @@ $theme: (
847
847
  "text": (
848
848
  "selected": #f3f4f4
849
849
  )
850
+ ),
851
+ "tags": (
852
+ "collections": (
853
+ "background": (
854
+ "base": #364141
855
+ )
856
+ )
850
857
  )
851
858
  ),
852
859
  "typography": (
@@ -1242,5 +1249,12 @@ $theme: (
1242
1249
  "selected": #515e5f
1243
1250
  )
1244
1251
  )
1252
+ ),
1253
+ "tags": (
1254
+ "collections": (
1255
+ "background": (
1256
+ "base": #364141
1257
+ )
1258
+ )
1245
1259
  )
1246
1260
  );
@@ -287,7 +287,7 @@ $theme: (
287
287
  "applied": #205bc3,
288
288
  "positive_sentiment": #2b68d3,
289
289
  "negative_sentiment": #ed4c42,
290
- "neutral_sentiment": #929a9b
290
+ "neutral_sentiment": #6e797a
291
291
  ),
292
292
  "form": (
293
293
  "background": (
@@ -847,6 +847,13 @@ $theme: (
847
847
  "text": (
848
848
  "selected": #FFFFFF
849
849
  )
850
+ ),
851
+ "tags": (
852
+ "collections": (
853
+ "background": (
854
+ "base": #f3f4f4
855
+ )
856
+ )
850
857
  )
851
858
  ),
852
859
  "typography": (
@@ -1242,5 +1249,12 @@ $theme: (
1242
1249
  "selected": #515e5f
1243
1250
  )
1244
1251
  )
1252
+ ),
1253
+ "tags": (
1254
+ "collections": (
1255
+ "background": (
1256
+ "base": #f3f4f4
1257
+ )
1258
+ )
1245
1259
  )
1246
1260
  );
@@ -244,7 +244,7 @@ $theme: (
244
244
  "applied": #205bc3,
245
245
  "positive_sentiment": #2b68d3,
246
246
  "negative_sentiment": #ed4c42,
247
- "neutral_sentiment": #929a9b
247
+ "neutral_sentiment": #6e797a
248
248
  ),
249
249
  "form": (
250
250
  "background": (
@@ -813,7 +813,7 @@ $theme: (
813
813
  "applied": #205bc3,
814
814
  "positive_sentiment": #2b68d3,
815
815
  "negative_sentiment": #ed4c42,
816
- "neutral_sentiment": #929a9b
816
+ "neutral_sentiment": #6e797a
817
817
  ),
818
818
  "form": (
819
819
  "background": (
@@ -228,6 +228,13 @@ export declare const cardControl: {
228
228
  selected: string;
229
229
  };
230
230
  };
231
+ export declare const tags: {
232
+ collections: {
233
+ background: {
234
+ base: string;
235
+ };
236
+ };
237
+ };
231
238
  declare const darkTheme: TypeSproutTheme;
232
239
  export default darkTheme;
233
240
  //# sourceMappingURL=theme.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/dark/theme.ts"],"names":[],"mappings":"AAIA,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"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/dark/theme.ts"],"names":[],"mappings":"AAIA,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,eAAO,MAAM,IAAI;;;;;;CAMhB,CAAC;AAEF,QAAA,MAAM,SAAS,EAAE,eAahB,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -228,6 +228,13 @@ export declare const cardControl: {
228
228
  selected: string;
229
229
  };
230
230
  };
231
+ export declare const tags: {
232
+ collections: {
233
+ background: {
234
+ base: string;
235
+ };
236
+ };
237
+ };
231
238
  declare const lightTheme: TypeSproutTheme;
232
239
  export default lightTheme;
233
240
  //# sourceMappingURL=theme.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/light/theme.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAE5D,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
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/light/theme.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAE5D,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,eAAO,MAAM,IAAI;;;;;;CAOhB,CAAC;AAEF,QAAA,MAAM,UAAU,EAAE,eAajB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/light/theme.ts"],"names":[],"mappings":"AAkCA,eAAO,MAAM,WAAW;;;;;CAGvB,CAAC;AAMF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAcb,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;YA0BnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAwMrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8ItD,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAheL,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;gBA0BnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAwMrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6RtD,CAAC;AAEF,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/light/theme.ts"],"names":[],"mappings":"AAkCA,eAAO,MAAM,WAAW;;;;;CAGvB,CAAC;AAMF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAcb,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;YA0BnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAyMrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8ItD,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAjeL,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;gBA0BnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAyMrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6RtD,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { breakpoints, colors, typography, fontWeights, fontSizes, radii, borders, borderWidths, shadows, space, easing, duration } from "../light/theme";
2
2
  import type { TypeFontFamilyString } from "../light/theme";
3
- import { datePicker, navigation, ai, analytics, listening, growth, cardControl } from "../extendedThemes/sproutTheme/light/theme";
3
+ import { datePicker, navigation, ai, analytics, listening, growth, cardControl, tags } from "../extendedThemes/sproutTheme/light/theme";
4
4
  export type TypeThemeMode = "light" | "dark";
5
5
  export type TypeBreakpoint = typeof breakpoints;
6
6
  export type TypeTypography = typeof typography;
@@ -40,6 +40,7 @@ export interface TypeSproutTheme extends TypeTheme {
40
40
  listening: typeof listening;
41
41
  growth: typeof growth;
42
42
  cardControl: typeof cardControl;
43
+ tags: typeof tags;
43
44
  };
44
45
  }
45
46
  //# sourceMappingURL=theme.d.ts.map
@@ -1 +1 @@
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,SAAS,EACT,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,aAAa,GAAG,OAAO,SAAS,CAAC;AAC7C,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,SAAS,EAAE,aAAa,CAAC;IACzB,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,SAAS,EACT,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,EACX,IAAI,EACL,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,aAAa,GAAG,OAAO,SAAS,CAAC;AAC7C,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,SAAS,EAAE,aAAa,CAAC;IACzB,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;QAChC,IAAI,EAAE,OAAO,IAAI,CAAC;KACnB,CAAC;CACH"}
@@ -242,6 +242,13 @@ export var cardControl = {
242
242
  selected: baseDarkTheme.colors.text.body
243
243
  }
244
244
  };
245
+ export var tags = {
246
+ collections: {
247
+ background: {
248
+ base: baseDarkTheme.colors.neutral[800]
249
+ }
250
+ }
251
+ };
245
252
  var darkTheme = _objectSpread(_objectSpread({}, baseDarkTheme), {}, {
246
253
  colors: _objectSpread(_objectSpread({}, baseDarkTheme.colors), {}, {
247
254
  navigation: navigation,
@@ -250,7 +257,8 @@ var darkTheme = _objectSpread(_objectSpread({}, baseDarkTheme), {}, {
250
257
  analytics: analytics,
251
258
  listening: listening,
252
259
  growth: growth,
253
- cardControl: cardControl
260
+ cardControl: cardControl,
261
+ tags: tags
254
262
  })
255
263
  });
256
264
  export default darkTheme;
@@ -238,6 +238,14 @@ export var cardControl = {
238
238
  selected: baseLightTheme.colors.text.inverse
239
239
  }
240
240
  };
241
+ export var tags = {
242
+ collections: {
243
+ background: {
244
+ // Matches app.background.base so the miller columns blend with the page
245
+ base: baseLightTheme.colors.app.background.base
246
+ }
247
+ }
248
+ };
241
249
  var lightTheme = _objectSpread(_objectSpread({}, baseLightTheme), {}, {
242
250
  colors: _objectSpread(_objectSpread({}, baseLightTheme.colors), {}, {
243
251
  ai: ai,
@@ -246,7 +254,8 @@ var lightTheme = _objectSpread(_objectSpread({}, baseLightTheme), {}, {
246
254
  analytics: analytics,
247
255
  listening: listening,
248
256
  growth: growth,
249
- cardControl: cardControl
257
+ cardControl: cardControl,
258
+ tags: tags
250
259
  })
251
260
  });
252
261
  export default lightTheme;
@@ -194,6 +194,7 @@ export var colors = _objectSpread(_objectSpread({
194
194
  },
195
195
  // AI brand appearances — consume the shared `gradient.ai*` tokens.
196
196
  // Rendered only via the Tailwind/button.css path (see seeds-react-button).
197
+ // Bill forgot to cut a new version of theme.
197
198
  "ai-primary": {
198
199
  background: {
199
200
  base: "var(--color-gradient-ai)"
@@ -275,7 +276,7 @@ export var colors = _objectSpread(_objectSpread({
275
276
  applied: COLORS.COLOR_BLUE_700,
276
277
  positive_sentiment: COLORS.COLOR_BLUE_600,
277
278
  negative_sentiment: COLORS.COLOR_RED_600,
278
- neutral_sentiment: COLORS.COLOR_NEUTRAL_500
279
+ neutral_sentiment: COLORS.COLOR_NEUTRAL_600
279
280
  },
280
281
  form: {
281
282
  background: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-react-theme",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Seeds Theme",
5
5
  "main": "commonjs/index.js",
6
6
  "module": "lib/index.js",