@sproutsocial/seeds-react-theme 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/__flow__/dark/dataviz-palette.flow.js +3 -0
  2. package/__flow__/dark/decorative-palettes.flow.js +13 -0
  3. package/__flow__/dark/theme.flow.js +5 -0
  4. package/__flow__/extendedThemes/sproutTheme/dark/theme.flow.js +10 -0
  5. package/__flow__/extendedThemes/sproutTheme/index.flow.js +3 -0
  6. package/__flow__/extendedThemes/sproutTheme/light/theme.flow.js +10 -0
  7. package/__flow__/index.js +3 -0
  8. package/__flow__/light/dataviz-palette.flow.js +29 -0
  9. package/__flow__/light/decorative-palettes.flow.js +17 -0
  10. package/__flow__/light/literal-colors.flow.js +31 -0
  11. package/__flow__/light/theme.flow.js +16 -0
  12. package/__flow__/types/theme.colors.flow.js +358 -0
  13. package/__flow__/types/theme.flow.js +372 -0
  14. package/commonjs/dark/dataviz-palette.flow.js +1 -0
  15. package/commonjs/dark/dataviz-palette.js +33 -0
  16. package/commonjs/dark/decorative-palettes.flow.js +1 -0
  17. package/commonjs/dark/decorative-palettes.js +63 -0
  18. package/commonjs/dark/theme.flow.js +1 -0
  19. package/commonjs/dark/theme.js +268 -0
  20. package/commonjs/extendedThemes/sproutTheme/dark/theme.flow.js +7 -0
  21. package/commonjs/extendedThemes/sproutTheme/dark/theme.js +240 -0
  22. package/commonjs/extendedThemes/sproutTheme/index.flow.js +20 -0
  23. package/commonjs/extendedThemes/sproutTheme/index.js +20 -0
  24. package/commonjs/extendedThemes/sproutTheme/light/theme.flow.js +1 -0
  25. package/commonjs/extendedThemes/sproutTheme/light/theme.js +237 -0
  26. package/commonjs/index.js +51 -0
  27. package/commonjs/index.js.flow +3 -0
  28. package/commonjs/light/dataviz-palette.flow.js +1 -0
  29. package/commonjs/light/dataviz-palette.js +33 -0
  30. package/commonjs/light/decorative-palettes.flow.js +1 -0
  31. package/commonjs/light/decorative-palettes.js +63 -0
  32. package/commonjs/light/literal-colors.flow.js +1 -0
  33. package/commonjs/light/literal-colors.js +167 -0
  34. package/commonjs/light/theme.flow.js +1 -0
  35. package/commonjs/light/theme.js +416 -0
  36. package/commonjs/types/theme.colors.flow.js +1 -0
  37. package/commonjs/types/theme.colors.js +5 -0
  38. package/commonjs/types/theme.flow.js +1 -0
  39. package/commonjs/types/theme.js +5 -0
  40. package/dist/themes/dark/_themed.scss +119 -0
  41. package/dist/themes/dark/theme.scss +678 -0
  42. package/dist/themes/extendedThemes/sproutTheme/dark/_themed.scss +119 -0
  43. package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +1091 -0
  44. package/dist/themes/extendedThemes/sproutTheme/light/_themed.scss +119 -0
  45. package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +1091 -0
  46. package/dist/themes/light/_themed.scss +119 -0
  47. package/dist/themes/light/theme.scss +800 -0
  48. package/dist/themes/types/_themed.scss +119 -0
  49. package/dist/types/dark/dataviz-palette.d.ts +26 -0
  50. package/dist/types/dark/dataviz-palette.d.ts.map +1 -0
  51. package/dist/types/dark/decorative-palettes.d.ts +56 -0
  52. package/dist/types/dark/decorative-palettes.d.ts.map +1 -0
  53. package/dist/types/dark/theme.d.ts +671 -0
  54. package/dist/types/dark/theme.d.ts.map +1 -0
  55. package/dist/types/extendedThemes/sproutTheme/dark/theme.d.ts +213 -0
  56. package/dist/types/extendedThemes/sproutTheme/dark/theme.d.ts.map +1 -0
  57. package/dist/types/extendedThemes/sproutTheme/index.d.ts +3 -0
  58. package/dist/types/extendedThemes/sproutTheme/index.d.ts.map +1 -0
  59. package/dist/types/extendedThemes/sproutTheme/light/theme.d.ts +213 -0
  60. package/dist/types/extendedThemes/sproutTheme/light/theme.d.ts.map +1 -0
  61. package/dist/types/index.d.ts +5 -0
  62. package/dist/types/index.d.ts.map +1 -0
  63. package/dist/types/light/dataviz-palette.d.ts +26 -0
  64. package/dist/types/light/dataviz-palette.d.ts.map +1 -0
  65. package/dist/types/light/decorative-palettes.d.ts +56 -0
  66. package/dist/types/light/decorative-palettes.d.ts.map +1 -0
  67. package/dist/types/light/literal-colors.d.ts +160 -0
  68. package/dist/types/light/literal-colors.d.ts.map +1 -0
  69. package/dist/types/light/theme.d.ts +794 -0
  70. package/dist/types/light/theme.d.ts.map +1 -0
  71. package/dist/types/types/theme.colors.d.ts +292 -0
  72. package/dist/types/types/theme.colors.d.ts.map +1 -0
  73. package/dist/types/types/theme.d.ts +43 -0
  74. package/dist/types/types/theme.d.ts.map +1 -0
  75. package/lib/dark/dataviz-palette.flow.js +0 -0
  76. package/lib/dark/dataviz-palette.js +26 -0
  77. package/lib/dark/decorative-palettes.flow.js +0 -0
  78. package/lib/dark/decorative-palettes.js +56 -0
  79. package/lib/dark/theme.flow.js +0 -0
  80. package/lib/dark/theme.js +263 -0
  81. package/lib/extendedThemes/sproutTheme/dark/theme.flow.js +1 -0
  82. package/lib/extendedThemes/sproutTheme/dark/theme.js +235 -0
  83. package/lib/extendedThemes/sproutTheme/index.flow.js +2 -0
  84. package/lib/extendedThemes/sproutTheme/index.js +2 -0
  85. package/lib/extendedThemes/sproutTheme/light/theme.flow.js +0 -0
  86. package/lib/extendedThemes/sproutTheme/light/theme.js +232 -0
  87. package/lib/index.js +4 -0
  88. package/lib/index.js.flow +3 -0
  89. package/lib/light/dataviz-palette.flow.js +0 -0
  90. package/lib/light/dataviz-palette.js +26 -0
  91. package/lib/light/decorative-palettes.flow.js +0 -0
  92. package/lib/light/decorative-palettes.js +56 -0
  93. package/lib/light/literal-colors.flow.js +0 -0
  94. package/lib/light/literal-colors.js +160 -0
  95. package/lib/light/theme.flow.js +0 -0
  96. package/lib/light/theme.js +410 -0
  97. package/lib/types/theme.colors.flow.js +0 -0
  98. package/lib/types/theme.colors.js +1 -0
  99. package/lib/types/theme.flow.js +0 -0
  100. package/lib/types/theme.js +1 -0
  101. package/package.json +40 -0
@@ -0,0 +1,263 @@
1
+ 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); }
2
+ 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; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ /* eslint-disable no-restricted-imports */
8
+ import { transparentize } from "polished";
9
+ import COLORS from "@sproutsocial/seeds-color";
10
+ import DEPTH from "@sproutsocial/seeds-depth";
11
+ // json-to-scss is not working with the alias right now
12
+ //import {theme as lightTheme} from '@src';
13
+ //import {TypeThemeMode} from '@src/types/theme';
14
+ import lightTheme from "../light/theme";
15
+ import { datavizPalette } from "./dataviz-palette";
16
+ import { green, blue, purple, yellow, orange, red, neutral, magenta, pink, aqua, teal } from "./decorative-palettes";
17
+ var MODE = "dark";
18
+ export var shadows = {
19
+ low: "".concat(DEPTH.ELEVATION_LEVEL_100, " ").concat(COLORS.COLOR_NEUTRAL_1100, "FF"),
20
+ medium: "".concat(DEPTH.ELEVATION_LEVEL_300, " ").concat(COLORS.COLOR_NEUTRAL_1100, "FF"),
21
+ high: "".concat(DEPTH.ELEVATION_LEVEL_400, " ").concat(COLORS.COLOR_NEUTRAL_1100, "FF")
22
+ };
23
+
24
+ // If you are making changes to the colors in the theme file tag the Design Systems team on your PR! Thank you!!
25
+
26
+ var colors = _objectSpread(_objectSpread({}, lightTheme.colors), {}, {
27
+ app: {
28
+ background: {
29
+ base: COLORS.COLOR_NEUTRAL_1000
30
+ }
31
+ },
32
+ container: {
33
+ background: {
34
+ base: COLORS.COLOR_NEUTRAL_900,
35
+ success: green.background,
36
+ warning: yellow.background,
37
+ error: red.background,
38
+ info: blue.background,
39
+ opportunity: purple.background,
40
+ /** @deprecated Use "error" instead of "danger" */
41
+ danger: red.background,
42
+ decorative: {
43
+ green: green.background,
44
+ blue: blue.background,
45
+ purple: purple.background,
46
+ yellow: yellow.background,
47
+ orange: orange.background,
48
+ red: red.background,
49
+ neutral: neutral.background,
50
+ magenta: magenta.background,
51
+ pink: pink.background,
52
+ aqua: aqua.background,
53
+ teal: teal.background
54
+ },
55
+ selected: COLORS.COLOR_NEUTRAL_0,
56
+ positive_sentiment: COLORS.COLOR_BLUE_500,
57
+ negative_sentiment: COLORS.COLOR_RED_500,
58
+ neutral_sentiment: COLORS.COLOR_NEUTRAL_300
59
+ },
60
+ border: {
61
+ base: COLORS.COLOR_NEUTRAL_1100,
62
+ success: green.highlight,
63
+ warning: yellow.highlight,
64
+ error: red.highlight,
65
+ /** @deprecated Use "error" instead of "danger" */
66
+ danger: red.highlight,
67
+ info: blue.highlight,
68
+ opportunity: purple.highlight,
69
+ decorative: {
70
+ green: green.highlight,
71
+ blue: blue.highlight,
72
+ purple: purple.highlight,
73
+ yellow: yellow.highlight,
74
+ orange: orange.highlight,
75
+ red: red.highlight,
76
+ neutral: neutral.highlight,
77
+ magenta: magenta.highlight,
78
+ pink: pink.highlight,
79
+ aqua: aqua.highlight,
80
+ teal: teal.highlight
81
+ },
82
+ selected: COLORS.COLOR_NEUTRAL_0
83
+ }
84
+ },
85
+ button: {
86
+ primary: {
87
+ background: {
88
+ base: COLORS.COLOR_BLUE_400,
89
+ hover: COLORS.COLOR_BLUE_300,
90
+ active: COLORS.COLOR_BLUE_200
91
+ },
92
+ border: {
93
+ base: "transparent"
94
+ },
95
+ text: {
96
+ base: COLORS.COLOR_NEUTRAL_900,
97
+ hover: COLORS.COLOR_NEUTRAL_1000
98
+ }
99
+ },
100
+ secondary: {
101
+ background: {
102
+ base: "transparent",
103
+ hover: COLORS.COLOR_NEUTRAL_100,
104
+ active: COLORS.COLOR_NEUTRAL_0
105
+ },
106
+ border: {
107
+ base: COLORS.COLOR_NEUTRAL_0
108
+ },
109
+ text: {
110
+ base: COLORS.COLOR_NEUTRAL_0,
111
+ hover: COLORS.COLOR_NEUTRAL_800
112
+ }
113
+ },
114
+ pill: {
115
+ background: {
116
+ base: "transparent",
117
+ hover: COLORS.COLOR_NEUTRAL_1000,
118
+ active: COLORS.COLOR_NEUTRAL_900
119
+ },
120
+ border: {
121
+ base: "transparent",
122
+ hover: COLORS.COLOR_NEUTRAL_0
123
+ },
124
+ text: {
125
+ base: COLORS.COLOR_NEUTRAL_100,
126
+ hover: COLORS.COLOR_NEUTRAL_0
127
+ }
128
+ },
129
+ destructive: {
130
+ background: {
131
+ base: COLORS.COLOR_RED_400,
132
+ hover: COLORS.COLOR_RED_300,
133
+ active: COLORS.COLOR_RED_200
134
+ },
135
+ border: {
136
+ base: "transparent"
137
+ },
138
+ text: {
139
+ base: COLORS.COLOR_NEUTRAL_900,
140
+ hover: COLORS.COLOR_NEUTRAL_1000
141
+ }
142
+ },
143
+ placeholder: {
144
+ background: {
145
+ base: "transparent",
146
+ hover: COLORS.COLOR_NEUTRAL_1100,
147
+ active: COLORS.COLOR_NEUTRAL_1100
148
+ },
149
+ border: {
150
+ base: COLORS.COLOR_NEUTRAL_500
151
+ },
152
+ text: {
153
+ base: COLORS.COLOR_BLUE_400,
154
+ hover: COLORS.COLOR_BLUE_300
155
+ }
156
+ },
157
+ unstyled: {
158
+ background: {
159
+ base: "transparent"
160
+ },
161
+ border: {
162
+ base: "transparent"
163
+ },
164
+ text: {
165
+ base: COLORS.COLOR_NEUTRAL_300,
166
+ hover: COLORS.COLOR_NEUTRAL_200
167
+ }
168
+ }
169
+ },
170
+ link: {
171
+ base: COLORS.COLOR_BLUE_400,
172
+ hover: COLORS.COLOR_BLUE_300
173
+ },
174
+ text: {
175
+ headline: COLORS.COLOR_NEUTRAL_0,
176
+ subtext: COLORS.COLOR_NEUTRAL_200,
177
+ body: COLORS.COLOR_NEUTRAL_100,
178
+ inverse: COLORS.COLOR_NEUTRAL_900,
179
+ error: red.foreground,
180
+ background: {
181
+ highlight: COLORS.COLOR_YELLOW_900,
182
+ selection: COLORS.COLOR_BLUE_800
183
+ },
184
+ decorative: {
185
+ green: green.foreground,
186
+ blue: blue.foreground,
187
+ purple: purple.foreground,
188
+ yellow: yellow.foreground,
189
+ orange: orange.foreground,
190
+ red: red.foreground,
191
+ neutral: neutral.foreground,
192
+ magenta: magenta.foreground,
193
+ pink: pink.foreground,
194
+ aqua: aqua.foreground,
195
+ teal: teal.foreground
196
+ }
197
+ },
198
+ icon: {
199
+ base: COLORS.COLOR_NEUTRAL_100,
200
+ inverse: COLORS.COLOR_NEUTRAL_900,
201
+ success: green.foreground,
202
+ warning: yellow.foreground,
203
+ error: red.foreground,
204
+ /** @deprecated Use "error" instead of "danger" */
205
+ danger: red.foreground,
206
+ info: blue.foreground,
207
+ opportunity: purple.foreground,
208
+ applied: COLORS.COLOR_BLUE_400,
209
+ positive_sentiment: COLORS.COLOR_BLUE_600,
210
+ negative_sentiment: COLORS.COLOR_RED_600,
211
+ neutral_sentiment: COLORS.COLOR_NEUTRAL_500
212
+ },
213
+ form: {
214
+ background: {
215
+ base: COLORS.COLOR_NEUTRAL_900,
216
+ selected: COLORS.COLOR_NEUTRAL_0
217
+ },
218
+ border: {
219
+ base: COLORS.COLOR_NEUTRAL_500,
220
+ error: red.highlight,
221
+ warning: yellow.highlight,
222
+ selected: COLORS.COLOR_NEUTRAL_0
223
+ },
224
+ placeholder: {
225
+ base: COLORS.COLOR_NEUTRAL_500
226
+ }
227
+ },
228
+ listItem: {
229
+ background: {
230
+ base: "transparent",
231
+ hover: COLORS.COLOR_NEUTRAL_800,
232
+ selected: COLORS.COLOR_NEUTRAL_0
233
+ }
234
+ },
235
+ overlay: {
236
+ background: {
237
+ base: transparentize(0.28, COLORS.COLOR_NEUTRAL_1000)
238
+ },
239
+ text: {
240
+ base: COLORS.COLOR_NEUTRAL_0
241
+ },
242
+ icon: {
243
+ base: COLORS.COLOR_NEUTRAL_0
244
+ }
245
+ },
246
+ elevation: {
247
+ base: COLORS.COLOR_NEUTRAL_1100
248
+ },
249
+ illustration: {
250
+ fill: COLORS.COLOR_BLUE_400,
251
+ stroke: neutral.foreground
252
+ },
253
+ dataviz: {
254
+ map: datavizPalette.DATAVIZ_COLORS_MAP,
255
+ list: datavizPalette.DATAVIZ_COLORS_LIST
256
+ }
257
+ }, datavizPalette);
258
+ var darkTheme = _objectSpread(_objectSpread({}, lightTheme), {}, {
259
+ colors: colors,
260
+ shadows: shadows,
261
+ mode: MODE
262
+ });
263
+ export default darkTheme;
@@ -0,0 +1 @@
1
+ export default darkTheme;
@@ -0,0 +1,235 @@
1
+ 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); }
2
+ 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; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ /* eslint-disable no-restricted-imports */
8
+ import { transparentize } from "polished";
9
+ // json-to-scss is not working with the alias right now
10
+ //import {darkTheme as baseDarkTheme, type TypeSproutTheme} from '@src';
11
+ import baseDarkTheme from "../../../dark/theme";
12
+ export var navigation = {
13
+ main: {
14
+ background: {
15
+ base: baseDarkTheme.colors.neutral[1000],
16
+ overflowGradient: baseDarkTheme.colors.neutral[1100]
17
+ },
18
+ border: {
19
+ base: baseDarkTheme.colors.neutral[1100]
20
+ }
21
+ },
22
+ secondary: {
23
+ background: {
24
+ base: baseDarkTheme.colors.neutral[900]
25
+ },
26
+ widget: {
27
+ background: {
28
+ base: baseDarkTheme.colors.neutral[800]
29
+ }
30
+ },
31
+ accordion: {
32
+ background: {
33
+ // Uses hexicimal to change the opacity of the color
34
+ // Adding 'A3' at end to make this color have a 64% opacity
35
+ // Reference https://gist.github.com/lopspower/03fb1cc0ac9f32ef38f4
36
+ base: "".concat(baseDarkTheme.colors.neutral[1000], "A3")
37
+ }
38
+ }
39
+ },
40
+ settings: {
41
+ listItem: {
42
+ background: {
43
+ base: "transparent",
44
+ hover: baseDarkTheme.colors.neutral[1100],
45
+ selected: baseDarkTheme.colors.neutral[800]
46
+ }
47
+ }
48
+ },
49
+ text: {
50
+ base: baseDarkTheme.colors.neutral[0],
51
+ hover: baseDarkTheme.colors.neutral[0]
52
+ },
53
+ icon: {
54
+ base: baseDarkTheme.colors.neutral[0],
55
+ hover: baseDarkTheme.colors.neutral[0]
56
+ },
57
+ listItem: {
58
+ background: {
59
+ base: baseDarkTheme.colors.neutral[1000],
60
+ hover: baseDarkTheme.colors.neutral[1100],
61
+ selected: baseDarkTheme.colors.neutral[700]
62
+ }
63
+ }
64
+ };
65
+ export var datePicker = {
66
+ comparison: {
67
+ background: {
68
+ base: baseDarkTheme.colors.neutral[400]
69
+ },
70
+ text: {
71
+ base: baseDarkTheme.colors.neutral[800]
72
+ }
73
+ }
74
+ };
75
+ export var analytics = {
76
+ trend: {
77
+ positive: baseDarkTheme.colors.teal[500],
78
+ neutral: baseDarkTheme.colors.neutral[100],
79
+ negative: baseDarkTheme.colors.neutral[100]
80
+ },
81
+ overlay: {
82
+ background: {
83
+ base: transparentize(0.2, baseDarkTheme.colors.neutral[900])
84
+ }
85
+ }
86
+ };
87
+ export var listening = {
88
+ chart: {
89
+ indicator: {
90
+ default: {
91
+ primary: baseDarkTheme.colors.neutral[100],
92
+ secondary: baseDarkTheme.colors.neutral[900]
93
+ },
94
+ hover: {
95
+ primary: baseDarkTheme.colors.neutral[300],
96
+ secondary: baseDarkTheme.colors.neutral[0]
97
+ }
98
+ },
99
+ spike: {
100
+ background: {
101
+ base: baseDarkTheme.colors.teal[500]
102
+ },
103
+ icon: {
104
+ base: baseDarkTheme.colors.neutral[0]
105
+ }
106
+ }
107
+ },
108
+ topicTypes: {
109
+ customTopic: baseDarkTheme.colors.teal[400],
110
+ brandHealth: baseDarkTheme.colors.red[400],
111
+ industryInsights: baseDarkTheme.colors.green[400],
112
+ competitiveAnalysis: baseDarkTheme.colors.yellow[400],
113
+ campaignAnalysis: baseDarkTheme.colors.magenta[400],
114
+ eventMonitoring: baseDarkTheme.colors.aqua[400],
115
+ featuredTopic: baseDarkTheme.colors.green[400]
116
+ },
117
+ worldMap: {
118
+ empty: baseDarkTheme.colors.neutral[200],
119
+ q0: baseDarkTheme.colors.purple[200],
120
+ q1: baseDarkTheme.colors.purple[300],
121
+ q2: baseDarkTheme.colors.purple[400],
122
+ q3: baseDarkTheme.colors.purple[500],
123
+ q4: baseDarkTheme.colors.purple[600],
124
+ q5: baseDarkTheme.colors.purple[700],
125
+ q6: baseDarkTheme.colors.purple[800],
126
+ q7: baseDarkTheme.colors.purple[900]
127
+ }
128
+ };
129
+ export var growth = {
130
+ carousel: {
131
+ indicator: {
132
+ active: baseDarkTheme.colors.blue[600],
133
+ inactive: baseDarkTheme.colors.neutral[300]
134
+ }
135
+ },
136
+ education: {
137
+ decorative: {
138
+ aqua: baseDarkTheme.colors.aqua[600],
139
+ teal: baseDarkTheme.colors.teal[500]
140
+ }
141
+ },
142
+ opportunity: {
143
+ background: {
144
+ base: baseDarkTheme.colors.purple[700],
145
+ secondary: baseDarkTheme.colors.neutral[700],
146
+ hover: baseDarkTheme.colors.purple[500]
147
+ },
148
+ button: {
149
+ primary: {
150
+ base: baseDarkTheme.colors.purple[400],
151
+ hover: baseDarkTheme.colors.purple[300]
152
+ }
153
+ },
154
+ badge: {
155
+ background: {
156
+ base: baseDarkTheme.colors.purple[700],
157
+ active: baseDarkTheme.colors.purple[100]
158
+ },
159
+ icon: {
160
+ base: baseDarkTheme.colors.purple[200],
161
+ active: baseDarkTheme.colors.purple[800]
162
+ },
163
+ text: {
164
+ base: baseDarkTheme.colors.purple[200]
165
+ }
166
+ },
167
+ decorative: {
168
+ // confetti
169
+ green: baseDarkTheme.colors.green[700],
170
+ lightAqua: baseDarkTheme.colors.aqua[600],
171
+ darkAqua: baseDarkTheme.colors.aqua[1100],
172
+ purple: baseDarkTheme.colors.purple[700]
173
+ }
174
+ },
175
+ featuredDemo: {
176
+ background: {
177
+ primary: {
178
+ base: baseDarkTheme.colors.blue[400],
179
+ hover: baseDarkTheme.colors.blue[100]
180
+ },
181
+ secondary: {
182
+ base: baseDarkTheme.colors.purple[500],
183
+ hover: baseDarkTheme.colors.purple[100]
184
+ }
185
+ }
186
+ },
187
+ darkModal: {
188
+ background: {
189
+ base: baseDarkTheme.colors.aqua[1100]
190
+ },
191
+ text: {
192
+ base: baseDarkTheme.colors.neutral[0]
193
+ },
194
+ cards: {
195
+ background: {
196
+ base: baseDarkTheme.colors.neutral[0],
197
+ hover: baseDarkTheme.colors.purple[100]
198
+ },
199
+ text: {
200
+ base: baseDarkTheme.colors.neutral[800],
201
+ hover: baseDarkTheme.colors.neutral[900]
202
+ },
203
+ border: {
204
+ base: baseDarkTheme.colors.neutral[0],
205
+ hover: baseDarkTheme.colors.purple[700]
206
+ }
207
+ }
208
+ },
209
+ user: {
210
+ status: {
211
+ online: baseDarkTheme.colors.green[700]
212
+ }
213
+ }
214
+ };
215
+ export var cardControl = {
216
+ background: {
217
+ base: baseDarkTheme.colors.neutral[900],
218
+ selected: baseDarkTheme.colors.neutral[700],
219
+ hover: baseDarkTheme.colors.neutral[800]
220
+ },
221
+ text: {
222
+ selected: baseDarkTheme.colors.text.body
223
+ }
224
+ };
225
+ var darkTheme = _objectSpread(_objectSpread({}, baseDarkTheme), {}, {
226
+ colors: _objectSpread(_objectSpread({}, baseDarkTheme.colors), {}, {
227
+ navigation: navigation,
228
+ datePicker: datePicker,
229
+ analytics: analytics,
230
+ listening: listening,
231
+ growth: growth,
232
+ cardControl: cardControl
233
+ })
234
+ });
235
+ export default darkTheme;
@@ -0,0 +1,2 @@
1
+ export { default as sproutLightTheme } from "./light/theme.flow";
2
+ export { default as sproutDarkTheme } from "./dark/theme.flow";
@@ -0,0 +1,2 @@
1
+ export { default as sproutLightTheme } from "./light/theme";
2
+ export { default as sproutDarkTheme } from "./dark/theme";