@sproutsocial/seeds-react-theme 3.1.0 → 3.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.
- package/commonjs/dark/theme.js +5 -2
- package/commonjs/light/theme.js +5 -1
- package/dist/themes/dark/theme.scss +14 -6
- package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +7 -3
- package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +5 -1
- package/dist/themes/light/theme.scss +10 -2
- package/dist/types/dark/theme.d.ts +8 -0
- package/dist/types/dark/theme.d.ts.map +1 -1
- package/dist/types/light/theme.d.ts +8 -0
- package/dist/types/light/theme.d.ts.map +1 -1
- package/dist/types/types/theme.d.ts +3 -1
- package/dist/types/types/theme.d.ts.map +1 -1
- package/lib/dark/theme.js +5 -2
- package/lib/light/theme.js +5 -1
- package/package.json +2 -2
package/commonjs/dark/theme.js
CHANGED
|
@@ -161,8 +161,11 @@ var colors = exports.colors = _objectSpread(_objectSpread({}, _theme.default.col
|
|
|
161
161
|
},
|
|
162
162
|
overlay: {
|
|
163
163
|
background: {
|
|
164
|
-
base: (0, _polished.transparentize)(0.56, _seedsColor.default.
|
|
165
|
-
hover: (0, _polished.transparentize)(0.64, _seedsColor.default.
|
|
164
|
+
base: (0, _polished.transparentize)(0.56, _seedsColor.default.COLOR_NEUTRAL_100),
|
|
165
|
+
hover: (0, _polished.transparentize)(0.64, _seedsColor.default.COLOR_NEUTRAL_100)
|
|
166
|
+
},
|
|
167
|
+
text: {
|
|
168
|
+
base: _seedsColor.default.COLOR_NEUTRAL_1000
|
|
166
169
|
}
|
|
167
170
|
},
|
|
168
171
|
unstyled: {
|
package/commonjs/light/theme.js
CHANGED
|
@@ -164,6 +164,9 @@ var colors = exports.colors = _objectSpread(_objectSpread({
|
|
|
164
164
|
background: {
|
|
165
165
|
base: (0, _polished.transparentize)(0.56, _seedsColor.default.COLOR_NEUTRAL_1000),
|
|
166
166
|
hover: (0, _polished.transparentize)(0.64, _seedsColor.default.COLOR_NEUTRAL_1000)
|
|
167
|
+
},
|
|
168
|
+
text: {
|
|
169
|
+
base: _seedsColor.default.COLOR_NEUTRAL_0
|
|
167
170
|
}
|
|
168
171
|
},
|
|
169
172
|
unstyled: {
|
|
@@ -334,7 +337,8 @@ var colors = exports.colors = _objectSpread(_objectSpread({
|
|
|
334
337
|
trustpilot: _seedsNetworkcolor.default.NETWORK_COLOR_TRUSTPILOT,
|
|
335
338
|
x: _seedsNetworkcolor.default.NETWORK_COLOR_X,
|
|
336
339
|
x_like: _seedsNetworkcolor.default.NETWORK_COLOR_X_LIKE,
|
|
337
|
-
bluesky: _seedsNetworkcolor.default.NETWORK_COLOR_BLUESKY
|
|
340
|
+
bluesky: _seedsNetworkcolor.default.NETWORK_COLOR_BLUESKY,
|
|
341
|
+
bazaarvoice: _seedsNetworkcolor.default.NETWORK_COLOR_BAZAARVOICE
|
|
338
342
|
},
|
|
339
343
|
dataviz: {
|
|
340
344
|
map: _datavizPalette.datavizPalette.DATAVIZ_COLORS_MAP,
|
|
@@ -130,8 +130,11 @@ $theme: (
|
|
|
130
130
|
),
|
|
131
131
|
"overlay": (
|
|
132
132
|
"background": (
|
|
133
|
-
"base": rgba(
|
|
134
|
-
"hover": rgba(
|
|
133
|
+
"base": rgba(243,244,244,0.44),
|
|
134
|
+
"hover": rgba(243,244,244,0.36)
|
|
135
|
+
),
|
|
136
|
+
"text": (
|
|
137
|
+
"base": #162020
|
|
135
138
|
)
|
|
136
139
|
),
|
|
137
140
|
"unstyled": (
|
|
@@ -301,7 +304,8 @@ $theme: (
|
|
|
301
304
|
"trustpilot": #04DA8D,
|
|
302
305
|
"x": #000000,
|
|
303
306
|
"x_like": #e0245e,
|
|
304
|
-
"bluesky": #1185FE
|
|
307
|
+
"bluesky": #1185FE,
|
|
308
|
+
"bazaarvoice": #002E6E
|
|
305
309
|
),
|
|
306
310
|
"dataviz": (
|
|
307
311
|
"map": (
|
|
@@ -648,8 +652,11 @@ $theme: (
|
|
|
648
652
|
),
|
|
649
653
|
"overlay": (
|
|
650
654
|
"background": (
|
|
651
|
-
"base": rgba(
|
|
652
|
-
"hover": rgba(
|
|
655
|
+
"base": rgba(243,244,244,0.44),
|
|
656
|
+
"hover": rgba(243,244,244,0.36)
|
|
657
|
+
),
|
|
658
|
+
"text": (
|
|
659
|
+
"base": #162020
|
|
653
660
|
)
|
|
654
661
|
),
|
|
655
662
|
"unstyled": (
|
|
@@ -819,7 +826,8 @@ $theme: (
|
|
|
819
826
|
"trustpilot": #04DA8D,
|
|
820
827
|
"x": #000000,
|
|
821
828
|
"x_like": #e0245e,
|
|
822
|
-
"bluesky": #1185FE
|
|
829
|
+
"bluesky": #1185FE,
|
|
830
|
+
"bazaarvoice": #002E6E
|
|
823
831
|
),
|
|
824
832
|
"dataviz": (
|
|
825
833
|
"map": (
|
|
@@ -184,8 +184,11 @@ $theme: (
|
|
|
184
184
|
),
|
|
185
185
|
"overlay": (
|
|
186
186
|
"background": (
|
|
187
|
-
"base": rgba(
|
|
188
|
-
"hover": rgba(
|
|
187
|
+
"base": rgba(243,244,244,0.44),
|
|
188
|
+
"hover": rgba(243,244,244,0.36)
|
|
189
|
+
),
|
|
190
|
+
"text": (
|
|
191
|
+
"base": #162020
|
|
189
192
|
)
|
|
190
193
|
),
|
|
191
194
|
"unstyled": (
|
|
@@ -355,7 +358,8 @@ $theme: (
|
|
|
355
358
|
"trustpilot": #04DA8D,
|
|
356
359
|
"x": #000000,
|
|
357
360
|
"x_like": #e0245e,
|
|
358
|
-
"bluesky": #1185FE
|
|
361
|
+
"bluesky": #1185FE,
|
|
362
|
+
"bazaarvoice": #002E6E
|
|
359
363
|
),
|
|
360
364
|
"dataviz": (
|
|
361
365
|
"map": (
|
|
@@ -186,6 +186,9 @@ $theme: (
|
|
|
186
186
|
"background": (
|
|
187
187
|
"base": rgba(22,32,32,0.44),
|
|
188
188
|
"hover": rgba(22,32,32,0.36)
|
|
189
|
+
),
|
|
190
|
+
"text": (
|
|
191
|
+
"base": #FFFFFF
|
|
189
192
|
)
|
|
190
193
|
),
|
|
191
194
|
"unstyled": (
|
|
@@ -355,7 +358,8 @@ $theme: (
|
|
|
355
358
|
"trustpilot": #04DA8D,
|
|
356
359
|
"x": #000000,
|
|
357
360
|
"x_like": #e0245e,
|
|
358
|
-
"bluesky": #1185FE
|
|
361
|
+
"bluesky": #1185FE,
|
|
362
|
+
"bazaarvoice": #002E6E
|
|
359
363
|
),
|
|
360
364
|
"dataviz": (
|
|
361
365
|
"map": (
|
|
@@ -143,6 +143,9 @@ $theme: (
|
|
|
143
143
|
"background": (
|
|
144
144
|
"base": rgba(22,32,32,0.44),
|
|
145
145
|
"hover": rgba(22,32,32,0.36)
|
|
146
|
+
),
|
|
147
|
+
"text": (
|
|
148
|
+
"base": #FFFFFF
|
|
146
149
|
)
|
|
147
150
|
),
|
|
148
151
|
"unstyled": (
|
|
@@ -312,7 +315,8 @@ $theme: (
|
|
|
312
315
|
"trustpilot": #04DA8D,
|
|
313
316
|
"x": #000000,
|
|
314
317
|
"x_like": #e0245e,
|
|
315
|
-
"bluesky": #1185FE
|
|
318
|
+
"bluesky": #1185FE,
|
|
319
|
+
"bazaarvoice": #002E6E
|
|
316
320
|
),
|
|
317
321
|
"dataviz": (
|
|
318
322
|
"map": (
|
|
@@ -661,6 +665,9 @@ $theme: (
|
|
|
661
665
|
"background": (
|
|
662
666
|
"base": rgba(22,32,32,0.44),
|
|
663
667
|
"hover": rgba(22,32,32,0.36)
|
|
668
|
+
),
|
|
669
|
+
"text": (
|
|
670
|
+
"base": #FFFFFF
|
|
664
671
|
)
|
|
665
672
|
),
|
|
666
673
|
"unstyled": (
|
|
@@ -830,7 +837,8 @@ $theme: (
|
|
|
830
837
|
"trustpilot": #04DA8D,
|
|
831
838
|
"x": #000000,
|
|
832
839
|
"x_like": #e0245e,
|
|
833
|
-
"bluesky": #1185FE
|
|
840
|
+
"bluesky": #1185FE,
|
|
841
|
+
"bazaarvoice": #002E6E
|
|
834
842
|
),
|
|
835
843
|
"dataviz": (
|
|
836
844
|
"map": (
|
|
@@ -163,6 +163,9 @@ export declare const colors: {
|
|
|
163
163
|
base: string;
|
|
164
164
|
hover: string;
|
|
165
165
|
};
|
|
166
|
+
text: {
|
|
167
|
+
base: string;
|
|
168
|
+
};
|
|
166
169
|
};
|
|
167
170
|
unstyled: {
|
|
168
171
|
background: {
|
|
@@ -520,6 +523,7 @@ export declare const colors: {
|
|
|
520
523
|
x: string;
|
|
521
524
|
x_like: string;
|
|
522
525
|
bluesky: string;
|
|
526
|
+
bazaarvoice: string;
|
|
523
527
|
};
|
|
524
528
|
};
|
|
525
529
|
declare const darkTheme: {
|
|
@@ -683,6 +687,9 @@ declare const darkTheme: {
|
|
|
683
687
|
base: string;
|
|
684
688
|
hover: string;
|
|
685
689
|
};
|
|
690
|
+
text: {
|
|
691
|
+
base: string;
|
|
692
|
+
};
|
|
686
693
|
};
|
|
687
694
|
unstyled: {
|
|
688
695
|
background: {
|
|
@@ -1040,6 +1047,7 @@ declare const darkTheme: {
|
|
|
1040
1047
|
x: string;
|
|
1041
1048
|
x_like: string;
|
|
1042
1049
|
bluesky: string;
|
|
1050
|
+
bazaarvoice: string;
|
|
1043
1051
|
};
|
|
1044
1052
|
};
|
|
1045
1053
|
shadows: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/dark/theme.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAIF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAeb,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;YAyBnD,mDAAmD
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/dark/theme.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAIF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAeb,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;YAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoJrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqGtD,CAAC;AAEF,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBApRT,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAoJrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4GtD,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -315,6 +315,9 @@ export declare const colors: {
|
|
|
315
315
|
base: string;
|
|
316
316
|
hover: string;
|
|
317
317
|
};
|
|
318
|
+
text: {
|
|
319
|
+
base: string;
|
|
320
|
+
};
|
|
318
321
|
};
|
|
319
322
|
unstyled: {
|
|
320
323
|
background: {
|
|
@@ -485,6 +488,7 @@ export declare const colors: {
|
|
|
485
488
|
x: string;
|
|
486
489
|
x_like: string;
|
|
487
490
|
bluesky: string;
|
|
491
|
+
bazaarvoice: string;
|
|
488
492
|
};
|
|
489
493
|
dataviz: {
|
|
490
494
|
map: {
|
|
@@ -933,6 +937,9 @@ declare const theme: {
|
|
|
933
937
|
base: string;
|
|
934
938
|
hover: string;
|
|
935
939
|
};
|
|
940
|
+
text: {
|
|
941
|
+
base: string;
|
|
942
|
+
};
|
|
936
943
|
};
|
|
937
944
|
unstyled: {
|
|
938
945
|
background: {
|
|
@@ -1103,6 +1110,7 @@ declare const theme: {
|
|
|
1103
1110
|
x: string;
|
|
1104
1111
|
x_like: string;
|
|
1105
1112
|
bluesky: string;
|
|
1113
|
+
bazaarvoice: string;
|
|
1106
1114
|
};
|
|
1107
1115
|
dataviz: {
|
|
1108
1116
|
map: {
|
|
@@ -1 +1 @@
|
|
|
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
|
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoJrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2ItD,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAxaL,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBnD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAoJrD,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0RtD,CAAC;AAEF,eAAe,KAAK,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { breakpoints, colors, typography, fontWeights, radii, borders, borderWidths, shadows, space, easing, duration } from "../light/theme";
|
|
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
3
|
import { datePicker, navigation, ai, analytics, listening, growth, cardControl } from "../extendedThemes/sproutTheme/light/theme";
|
|
4
4
|
export type TypeThemeMode = "light" | "dark";
|
|
@@ -6,6 +6,7 @@ export type TypeBreakpoint = typeof breakpoints;
|
|
|
6
6
|
export type TypeTypography = typeof typography;
|
|
7
7
|
export type TypeFontWeight = typeof fontWeights;
|
|
8
8
|
export type TypeFontFamily = TypeFontFamilyString;
|
|
9
|
+
export type TypeFontSizes = typeof fontSizes;
|
|
9
10
|
export type TypeSpace = typeof space;
|
|
10
11
|
export type TypeColor = typeof colors;
|
|
11
12
|
export type TypeRadii = typeof radii;
|
|
@@ -21,6 +22,7 @@ export interface TypeTheme {
|
|
|
21
22
|
typography: TypeTypography;
|
|
22
23
|
fontWeights: TypeFontWeight;
|
|
23
24
|
fontFamily: TypeFontFamily;
|
|
25
|
+
fontSizes: TypeFontSizes;
|
|
24
26
|
space: TypeSpace;
|
|
25
27
|
radii: TypeRadii;
|
|
26
28
|
borders: TypeBorder;
|
|
@@ -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,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"}
|
|
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"}
|
package/lib/dark/theme.js
CHANGED
|
@@ -156,8 +156,11 @@ export var colors = _objectSpread(_objectSpread({}, lightTheme.colors), {}, {
|
|
|
156
156
|
},
|
|
157
157
|
overlay: {
|
|
158
158
|
background: {
|
|
159
|
-
base: transparentize(0.56, COLORS.
|
|
160
|
-
hover: transparentize(0.64, COLORS.
|
|
159
|
+
base: transparentize(0.56, COLORS.COLOR_NEUTRAL_100),
|
|
160
|
+
hover: transparentize(0.64, COLORS.COLOR_NEUTRAL_100)
|
|
161
|
+
},
|
|
162
|
+
text: {
|
|
163
|
+
base: COLORS.COLOR_NEUTRAL_1000
|
|
161
164
|
}
|
|
162
165
|
},
|
|
163
166
|
unstyled: {
|
package/lib/light/theme.js
CHANGED
|
@@ -160,6 +160,9 @@ export var colors = _objectSpread(_objectSpread({
|
|
|
160
160
|
background: {
|
|
161
161
|
base: transparentize(0.56, COLORS.COLOR_NEUTRAL_1000),
|
|
162
162
|
hover: transparentize(0.64, COLORS.COLOR_NEUTRAL_1000)
|
|
163
|
+
},
|
|
164
|
+
text: {
|
|
165
|
+
base: COLORS.COLOR_NEUTRAL_0
|
|
163
166
|
}
|
|
164
167
|
},
|
|
165
168
|
unstyled: {
|
|
@@ -330,7 +333,8 @@ export var colors = _objectSpread(_objectSpread({
|
|
|
330
333
|
trustpilot: NETWORKCOLORS.NETWORK_COLOR_TRUSTPILOT,
|
|
331
334
|
x: NETWORKCOLORS.NETWORK_COLOR_X,
|
|
332
335
|
x_like: NETWORKCOLORS.NETWORK_COLOR_X_LIKE,
|
|
333
|
-
bluesky: NETWORKCOLORS.NETWORK_COLOR_BLUESKY
|
|
336
|
+
bluesky: NETWORKCOLORS.NETWORK_COLOR_BLUESKY,
|
|
337
|
+
bazaarvoice: NETWORKCOLORS.NETWORK_COLOR_BAZAARVOICE
|
|
334
338
|
},
|
|
335
339
|
dataviz: {
|
|
336
340
|
map: datavizPalette.DATAVIZ_COLORS_MAP,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/seeds-react-theme",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Seeds Theme",
|
|
5
5
|
"main": "commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@sproutsocial/seeds-color": "^2.2.0",
|
|
25
25
|
"@sproutsocial/seeds-depth": "^3.4.0",
|
|
26
26
|
"@sproutsocial/seeds-motion": "^1.8.1",
|
|
27
|
-
"@sproutsocial/seeds-networkcolor": "^2.
|
|
27
|
+
"@sproutsocial/seeds-networkcolor": "^2.21.0",
|
|
28
28
|
"@sproutsocial/seeds-space": "^0.8.0",
|
|
29
29
|
"@sproutsocial/seeds-typography": "^3.7.0",
|
|
30
30
|
"polished": "^3.4.1"
|