@splunk/themes 1.0.0-beta.2 → 1.0.0-beta.4
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/CHANGELOG.v1.md +34 -1
- package/design-tokens/colors.js +48 -81
- package/design-tokens/deprecated.js +75 -0
- package/design-tokens/elevation.js +2 -1
- package/design-tokens/spacing-sizing.js +6 -0
- package/enterprise/comfortable.js +1 -7
- package/enterprise/compact.js +1 -7
- package/enterprise/dark.js +51 -90
- package/enterprise/dataViz.js +0 -77
- package/enterprise/light.js +51 -116
- package/mixins/tests/utilityMixins.unit.js +1 -1
- package/mixins/utilityMixins.js +4 -4
- package/package.json +5 -5
- package/prisma/base.js +1 -40
- package/prisma/comfortable.js +1 -7
- package/prisma/compact.js +1 -11
- package/prisma/dark.js +53 -95
- package/prisma/dataViz.js +0 -197
- package/prisma/light.js +53 -95
- package/splunk-magnetic/index.js +3 -1
- package/types/design-tokens/colors.d.ts +74 -158
- package/types/design-tokens/deprecated.d.ts +150 -0
- package/types/design-tokens/elevation.d.ts +2 -2
- package/types/design-tokens/index.d.ts +43 -20
- package/types/design-tokens/spacing-sizing.d.ts +7 -0
- package/types/enterprise/comfortable.d.ts +1 -0
- package/types/enterprise/compact.d.ts +1 -0
- package/types/enterprise/dark.d.ts +45 -33
- package/types/enterprise/dataViz.d.ts +0 -5
- package/types/enterprise/light.d.ts +44 -33
- package/types/getTheme.d.ts +0 -1
- package/types/mixins/index.d.ts +1 -1
- package/types/mixins/utilityMixins.d.ts +6 -6
- package/types/prisma/base.d.ts +1 -1
- package/types/prisma/comfortable.d.ts +0 -7
- package/types/prisma/compact.d.ts +0 -11
- package/types/prisma/dark.d.ts +42 -25
- package/types/prisma/dataViz.d.ts +0 -5
- package/types/prisma/light.d.ts +42 -25
- package/types/splunk-magnetic/index.d.ts +196 -58
- package/types/storybook-addon-splunk-themes/constants.d.ts +4 -4
- package/types/storybook-addon-splunk-themes/preview.d.ts +4 -4
- package/types/storybook-addon-splunk-themes/themes.d.ts +3 -4
- package/types/storybook-addon-splunk-themes/withSplunkTheme.d.ts +1 -1
- package/types/utils.d.ts +0 -1
package/prisma/dark.js
CHANGED
|
@@ -12,13 +12,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
12
12
|
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
13
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
14
|
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); }
|
|
15
|
-
/**
|
|
16
|
-
* ## Background colors
|
|
17
|
-
* Background colors should be used only for backgrounds of higher level sections & containers of a UI.
|
|
18
|
-
*
|
|
19
|
-
* @colorSet verbose
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
15
|
var backgroundColors = {
|
|
23
16
|
backgroundColorPopup: '#27292e',
|
|
24
17
|
backgroundColorSection: '#1a1c20',
|
|
@@ -29,26 +22,11 @@ var backgroundColors = {
|
|
|
29
22
|
backgroundColorDialog: '#1e2024',
|
|
30
23
|
backgroundColorScrim: 'rgba(0, 0, 0, 0.8)'
|
|
31
24
|
};
|
|
32
|
-
|
|
33
|
-
/**
|
|
34
|
-
* ## Border colors
|
|
35
|
-
*
|
|
36
|
-
* @colorSet verbose
|
|
37
|
-
*/
|
|
38
|
-
|
|
39
25
|
var borderColors = {
|
|
40
26
|
borderColor: '#717275',
|
|
41
27
|
borderColorWeak: '#3d3e43',
|
|
42
28
|
borderColorStrong: '#97989b'
|
|
43
29
|
};
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* ## Content colors
|
|
47
|
-
* Content colors should be used for text, icons and dividers.
|
|
48
|
-
*
|
|
49
|
-
* @colorSet verbose
|
|
50
|
-
*/
|
|
51
|
-
|
|
52
30
|
var contentColors = {
|
|
53
31
|
contentBackgroundColorNegativeWeak: 'rgba(160, 29, 38, 0.28)',
|
|
54
32
|
contentColorAccent: '#3d95ff',
|
|
@@ -67,14 +45,6 @@ var contentColors = {
|
|
|
67
45
|
contentColorWarning: '#f49106',
|
|
68
46
|
contentColorLink: '#3993ff'
|
|
69
47
|
};
|
|
70
|
-
|
|
71
|
-
/**
|
|
72
|
-
* ## Action colors
|
|
73
|
-
* Action colors should be used for buttons.
|
|
74
|
-
*
|
|
75
|
-
* @colorSet verbose
|
|
76
|
-
*/
|
|
77
|
-
|
|
78
48
|
var actionColors = {
|
|
79
49
|
actionColorBackgroundPrimary: '#3993ff',
|
|
80
50
|
actionColorBackgroundPrimaryActive: '#6baeff',
|
|
@@ -105,18 +75,7 @@ var actionColors = {
|
|
|
105
75
|
actionColorBorderDestructiveSecondaryDisabled: '#561a1a',
|
|
106
76
|
actionColorBorderDestructiveSecondaryHover: '#ff6b6b'
|
|
107
77
|
};
|
|
108
|
-
|
|
109
|
-
/**
|
|
110
|
-
* ## Interactive colors
|
|
111
|
-
* Interactive colors are specifically chosen for borders and backgrounds of controls.
|
|
112
|
-
* "Overlay" colors are intended to be placed over the default background color, such as interactiveColorPrimary.
|
|
113
|
-
* If the default background color is not transparent, the `blend` mixin can be used to create a new color that combines the two.
|
|
114
|
-
*
|
|
115
|
-
* @colorSet verbose
|
|
116
|
-
*/
|
|
117
|
-
|
|
118
78
|
var interactiveColors = {
|
|
119
|
-
interactiveColorPrimary: '#3993FF',
|
|
120
79
|
interactiveColorBorder: 'rgba(255, 255, 255, 0.5)',
|
|
121
80
|
interactiveColorBorderActive: 'rgba(225, 225, 225, 0.5)',
|
|
122
81
|
interactiveColorBorderHover: 'rgba(255, 255, 255, 0.7)',
|
|
@@ -125,22 +84,15 @@ var interactiveColors = {
|
|
|
125
84
|
interactiveColorOverlayHover: 'rgba(255, 255, 255, 0.05)',
|
|
126
85
|
interactiveColorOverlayActive: 'rgba(0, 0, 0, 0.2)',
|
|
127
86
|
interactiveColorOverlayDrag: 'rgba(57, 147, 255, 0.16)',
|
|
128
|
-
interactiveColorBackground: '
|
|
129
|
-
interactiveColorBackgroundDisabled: '
|
|
87
|
+
interactiveColorBackground: 'transparent',
|
|
88
|
+
interactiveColorBackgroundDisabled: 'transparent',
|
|
130
89
|
interactiveColorAccent: '#3993ff',
|
|
131
90
|
interactiveColorAccentError: '#ff4242',
|
|
132
91
|
interactiveColorAccentErrorStrong: '#ff878b'
|
|
133
92
|
};
|
|
134
|
-
|
|
135
|
-
/**
|
|
136
|
-
* ## Neutral colors
|
|
137
|
-
* Neutrals are used for dividers and as backup colors that can sparingly be used for cases, when the other defined colors are not enough.
|
|
138
|
-
*
|
|
139
|
-
* @colorSet verbose
|
|
140
|
-
*/
|
|
141
|
-
|
|
142
93
|
var neutralColors = {
|
|
143
94
|
black: '#000000',
|
|
95
|
+
neutral50: '#232429',
|
|
144
96
|
neutral100: '#33343b',
|
|
145
97
|
neutral200: '#43454b',
|
|
146
98
|
neutral300: '#505158',
|
|
@@ -149,53 +101,37 @@ var neutralColors = {
|
|
|
149
101
|
white: '#ffffff',
|
|
150
102
|
transparent: 'transparent'
|
|
151
103
|
};
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
statusColorCriticalWeak: (0, _tinycolor["default"])('#ff3361').darken(10).toHexString(),
|
|
177
|
-
statusColorCriticalStrong: (0, _tinycolor["default"])('#ff3361').lighten(10).toHexString()
|
|
104
|
+
var notificationColors = {
|
|
105
|
+
notificationColorInfoWeak: '#2E1B4B',
|
|
106
|
+
notificationColorInfo: '#AC75FF',
|
|
107
|
+
notificationColorInfoStrong: '#D1B2FF',
|
|
108
|
+
notificationColorPositiveWeak: '#092635',
|
|
109
|
+
notificationColorPositive: '#1AB2FF',
|
|
110
|
+
notificationColorPositiveStrong: '#99DDFF',
|
|
111
|
+
notificationColorCautionWeak: '#331E00',
|
|
112
|
+
notificationColorCaution: '#FFAF0F',
|
|
113
|
+
notificationColorCautionStrong: '#FDDC9B',
|
|
114
|
+
notificationColorNegativeWeak: '#391313',
|
|
115
|
+
notificationColorNegative: '#FF5252',
|
|
116
|
+
notificationColorNegativeStrong: '#FF9999'
|
|
117
|
+
};
|
|
118
|
+
var severityColors = {
|
|
119
|
+
severityColorCustom: '#868EC2',
|
|
120
|
+
severityColorUnknown: '#889099',
|
|
121
|
+
severityColorInfo: '#A974F7',
|
|
122
|
+
severityColorNormal: '#04A4B0',
|
|
123
|
+
severityColorNotice: '#D6900D',
|
|
124
|
+
severityColorWarning: '#F26722',
|
|
125
|
+
severityColorAlert: '#FA5762',
|
|
126
|
+
severityColorCritical: '#F2638C',
|
|
127
|
+
severityColorEmergency: '#E85FC6'
|
|
178
128
|
};
|
|
179
|
-
|
|
180
|
-
/**
|
|
181
|
-
* ## Elevation shadows
|
|
182
|
-
*
|
|
183
|
-
* @shadowSet
|
|
184
|
-
*
|
|
185
|
-
*/
|
|
186
129
|
var elevationShadows = {
|
|
187
130
|
embossShadow: '0px 1px 5px rgba(0, 0, 0, 0.35), 0px 0px 1px rgba(0, 0, 0, 0.35)',
|
|
188
131
|
overlayShadow: '0px 26px 103px rgba(0, 0, 0, 0.64), 0px 11px 18px rgba(0, 0, 0, 0.32), 0px 3px 6px rgba(0, 0, 0, 0.3)',
|
|
189
132
|
dragShadow: '0px 26px 103px rgba(0, 0, 0, 0.64), 0px 11px 18px rgba(0, 0, 0, 0.32), 0px 3px 6px rgba(0, 0, 0, 0.3)',
|
|
190
133
|
modalShadow: '0px 50px 200px #000000, 0px 29px 66px rgba(0, 0, 0, 0.41), 0px 14px 47px rgba(0, 0, 0, 0.17), 0px 5px 10px rgba(0, 0, 0, 0.15)'
|
|
191
134
|
};
|
|
192
|
-
|
|
193
|
-
/**
|
|
194
|
-
* ## Syntax colors
|
|
195
|
-
* Syntax colors are used only for code blocks.
|
|
196
|
-
*
|
|
197
|
-
* @colorSet verbose alphabetical
|
|
198
|
-
*/
|
|
199
135
|
var syntaxColors = {
|
|
200
136
|
syntaxBlue: '#6cd0f0',
|
|
201
137
|
syntaxBrown: '#fccf87',
|
|
@@ -208,11 +144,33 @@ var syntaxColors = {
|
|
|
208
144
|
syntaxTeal: '#45d4ba'
|
|
209
145
|
};
|
|
210
146
|
var deprecated = {
|
|
211
|
-
accentColorPositive:
|
|
212
|
-
|
|
147
|
+
accentColorPositive: '#85f415',
|
|
148
|
+
// statusColorNormal
|
|
149
|
+
accentColorWarning: '#f49106',
|
|
150
|
+
// statusColorMedium
|
|
213
151
|
accentColorAlert: '#c6400d',
|
|
214
|
-
accentColorNegative:
|
|
152
|
+
accentColorNegative: '#ff4242',
|
|
153
|
+
// statusColorHigh
|
|
154
|
+
interactiveColorPrimary: '#3993FF',
|
|
155
|
+
statusColorInfo: '#61cafa',
|
|
156
|
+
statusColorInfoWeak: (0, _tinycolor["default"])('#61cafa').darken(10).toHexString(),
|
|
157
|
+
statusColorInfoStrong: (0, _tinycolor["default"])('#61cafa').lighten(10).toHexString(),
|
|
158
|
+
statusColorNormal: '#85f415',
|
|
159
|
+
statusColorNormalWeak: (0, _tinycolor["default"])('#85f415').darken(10).toHexString(),
|
|
160
|
+
statusColorNormalStrong: (0, _tinycolor["default"])('#85f415').lighten(10).toHexString(),
|
|
161
|
+
statusColorLow: '#2cbda3',
|
|
162
|
+
statusColorLowWeak: (0, _tinycolor["default"])('#2cbda3').darken(10).toHexString(),
|
|
163
|
+
statusColorLowStrong: (0, _tinycolor["default"])('#2cbda3').lighten(10).toHexString(),
|
|
164
|
+
statusColorMedium: '#f49106',
|
|
165
|
+
statusColorMediumWeak: (0, _tinycolor["default"])('#f49106').darken(10).toHexString(),
|
|
166
|
+
statusColorMediumStrong: (0, _tinycolor["default"])('#f49106').lighten(10).toHexString(),
|
|
167
|
+
statusColorHigh: '#ff4242',
|
|
168
|
+
statusColorHighWeak: (0, _tinycolor["default"])('#ff4242').darken(10).toHexString(),
|
|
169
|
+
statusColorHighStrong: (0, _tinycolor["default"])('#ff4242').lighten(10).toHexString(),
|
|
170
|
+
statusColorCritical: '#ff3361',
|
|
171
|
+
statusColorCriticalWeak: (0, _tinycolor["default"])('#ff3361').darken(10).toHexString(),
|
|
172
|
+
statusColorCriticalStrong: (0, _tinycolor["default"])('#ff3361').lighten(10).toHexString()
|
|
215
173
|
};
|
|
216
|
-
var theme = _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, actionColors),
|
|
174
|
+
var theme = _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, actionColors), notificationColors), severityColors), elevationShadows), backgroundColors), borderColors), contentColors), neutralColors), interactiveColors), syntaxColors), deprecated);
|
|
217
175
|
var _default = theme;
|
|
218
176
|
exports["default"] = _default;
|
package/prisma/dataViz.js
CHANGED
|
@@ -10,11 +10,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
10
10
|
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
11
11
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
12
12
|
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); }
|
|
13
|
-
/**
|
|
14
|
-
* #### Static colors
|
|
15
|
-
*
|
|
16
|
-
* @colorSet verbose
|
|
17
|
-
*/
|
|
18
13
|
var staticColors = {
|
|
19
14
|
static1: '#7B56DB',
|
|
20
15
|
static2: '#009CEB',
|
|
@@ -37,12 +32,6 @@ var staticColors = {
|
|
|
37
32
|
static19: '#FF969E',
|
|
38
33
|
static20: '#E47BFE'
|
|
39
34
|
};
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* #### Categorical 1D
|
|
43
|
-
*
|
|
44
|
-
* @colorSet verbose
|
|
45
|
-
*/
|
|
46
35
|
exports.staticColors = staticColors;
|
|
47
36
|
var categorical1D = {
|
|
48
37
|
categorical1D1: '#5C33FF',
|
|
@@ -53,12 +42,6 @@ var categorical1D = {
|
|
|
53
42
|
categorical1D6: '#2F8811',
|
|
54
43
|
categorical1D7: '#555555'
|
|
55
44
|
};
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* #### Categorical 1L
|
|
59
|
-
*
|
|
60
|
-
* @colorSet verbose
|
|
61
|
-
*/
|
|
62
45
|
var categorical1L = {
|
|
63
46
|
categorical1L1: '#9980FF',
|
|
64
47
|
categorical1L2: '#45D4BA',
|
|
@@ -68,12 +51,6 @@ var categorical1L = {
|
|
|
68
51
|
categorical1L6: '#88EE66',
|
|
69
52
|
categorical1L7: '#F0B000'
|
|
70
53
|
};
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* #### Categorical 2D
|
|
74
|
-
*
|
|
75
|
-
* @colorSet verbose
|
|
76
|
-
*/
|
|
77
54
|
var categorical2D = {
|
|
78
55
|
categorical2D1: '#1F4D5B',
|
|
79
56
|
categorical2D2: '#CC0AD6',
|
|
@@ -83,12 +60,6 @@ var categorical2D = {
|
|
|
83
60
|
categorical2D6: '#348350',
|
|
84
61
|
categorical2D7: '#555555'
|
|
85
62
|
};
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* #### Categorical 2L
|
|
89
|
-
*
|
|
90
|
-
* @colorSet verbose
|
|
91
|
-
*/
|
|
92
63
|
var categorical2L = {
|
|
93
64
|
categorical2L1: '#5599BE',
|
|
94
65
|
categorical2L2: '#FB9DFB',
|
|
@@ -99,12 +70,6 @@ var categorical2L = {
|
|
|
99
70
|
categorical2L7: '#F58B00'
|
|
100
71
|
};
|
|
101
72
|
var categorical = _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, categorical1D), categorical1L), categorical2D), categorical2L);
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* #### Divergent 1D
|
|
105
|
-
*
|
|
106
|
-
* @colorSet verbose
|
|
107
|
-
*/
|
|
108
73
|
exports.categorical = categorical;
|
|
109
74
|
var divergent1D = {
|
|
110
75
|
divergent1D1: '#118832',
|
|
@@ -115,12 +80,6 @@ var divergent1D = {
|
|
|
115
80
|
divergent1D6: '#9E2520',
|
|
116
81
|
divergent1D7: '#D41F1F'
|
|
117
82
|
};
|
|
118
|
-
|
|
119
|
-
/**
|
|
120
|
-
* #### Divergent 1L
|
|
121
|
-
*
|
|
122
|
-
* @colorSet verbose
|
|
123
|
-
*/
|
|
124
83
|
var divergent1L = {
|
|
125
84
|
divergent1L1: '#08AE37',
|
|
126
85
|
divergent1L2: '#55C169',
|
|
@@ -130,12 +89,6 @@ var divergent1L = {
|
|
|
130
89
|
divergent1L6: '#F98C83',
|
|
131
90
|
divergent1L7: '#FF5E5E'
|
|
132
91
|
};
|
|
133
|
-
|
|
134
|
-
/**
|
|
135
|
-
* #### Divergent 2D
|
|
136
|
-
*
|
|
137
|
-
* @colorSet verbose
|
|
138
|
-
*/
|
|
139
92
|
var divergent2D = {
|
|
140
93
|
divergent2D1: '#0070F3',
|
|
141
94
|
divergent2D2: '#115BAD',
|
|
@@ -145,12 +98,6 @@ var divergent2D = {
|
|
|
145
98
|
divergent2D6: '#9E2520',
|
|
146
99
|
divergent2D7: '#D41F1F'
|
|
147
100
|
};
|
|
148
|
-
|
|
149
|
-
/**
|
|
150
|
-
* #### Divergent 2L
|
|
151
|
-
*
|
|
152
|
-
* @colorSet verbose
|
|
153
|
-
*/
|
|
154
101
|
var divergent2L = {
|
|
155
102
|
divergent2L1: '#2A99FF',
|
|
156
103
|
divergent2L2: '#6BB3EE',
|
|
@@ -160,12 +107,6 @@ var divergent2L = {
|
|
|
160
107
|
divergent2L6: '#F98C83',
|
|
161
108
|
divergent2L7: '#FF5E5E'
|
|
162
109
|
};
|
|
163
|
-
|
|
164
|
-
/**
|
|
165
|
-
* #### Divergent 3D
|
|
166
|
-
*
|
|
167
|
-
* @colorSet verbose
|
|
168
|
-
*/
|
|
169
110
|
var divergent3D = {
|
|
170
111
|
divergent3D1: '#299986',
|
|
171
112
|
divergent3D2: '#277C52',
|
|
@@ -175,12 +116,6 @@ var divergent3D = {
|
|
|
175
116
|
divergent3D6: '#602CA1',
|
|
176
117
|
divergent3D7: '#8747DA'
|
|
177
118
|
};
|
|
178
|
-
|
|
179
|
-
/**
|
|
180
|
-
* #### Divergent 3L
|
|
181
|
-
*
|
|
182
|
-
* @colorSet verbose
|
|
183
|
-
*/
|
|
184
119
|
var divergent3L = {
|
|
185
120
|
divergent3L1: '#14846C',
|
|
186
121
|
divergent3L2: '#45D4BA',
|
|
@@ -190,12 +125,6 @@ var divergent3L = {
|
|
|
190
125
|
divergent3L6: '#C093F9',
|
|
191
126
|
divergent3L7: '#9156DD'
|
|
192
127
|
};
|
|
193
|
-
|
|
194
|
-
/**
|
|
195
|
-
* #### Divergent 4D
|
|
196
|
-
*
|
|
197
|
-
* @colorSet verbose
|
|
198
|
-
*/
|
|
199
128
|
var divergent4D = {
|
|
200
129
|
divergent4D1: '#0D8387',
|
|
201
130
|
divergent4D2: '#1A6765',
|
|
@@ -205,12 +134,6 @@ var divergent4D = {
|
|
|
205
134
|
divergent4D6: '#9F3B23',
|
|
206
135
|
divergent4D7: '#D54124'
|
|
207
136
|
};
|
|
208
|
-
|
|
209
|
-
/**
|
|
210
|
-
* #### Divergent 4L
|
|
211
|
-
*
|
|
212
|
-
* @colorSet verbose
|
|
213
|
-
*/
|
|
214
137
|
var divergent4L = {
|
|
215
138
|
divergent4L1: '#008287',
|
|
216
139
|
divergent4L2: '#2EA39B',
|
|
@@ -221,12 +144,6 @@ var divergent4L = {
|
|
|
221
144
|
divergent4L7: '#DA4325'
|
|
222
145
|
};
|
|
223
146
|
var divergent = _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, divergent1D), divergent1L), divergent2D), divergent2L), divergent3D), divergent3L), divergent4D), divergent4L);
|
|
224
|
-
|
|
225
|
-
/**
|
|
226
|
-
* #### Sequential 1D
|
|
227
|
-
*
|
|
228
|
-
* @colorSet verbose
|
|
229
|
-
*/
|
|
230
147
|
exports.divergent = divergent;
|
|
231
148
|
var sequential1D = {
|
|
232
149
|
sequential1D1: '#118832',
|
|
@@ -237,12 +154,6 @@ var sequential1D = {
|
|
|
237
154
|
sequential1D6: '#D94E17',
|
|
238
155
|
sequential1D7: '#D41F1F'
|
|
239
156
|
};
|
|
240
|
-
|
|
241
|
-
/**
|
|
242
|
-
* #### Sequential 1L
|
|
243
|
-
*
|
|
244
|
-
* @colorSet verbose
|
|
245
|
-
*/
|
|
246
157
|
var sequential1L = {
|
|
247
158
|
sequential1L1: '#088F44',
|
|
248
159
|
sequential1L2: '#2EB82E',
|
|
@@ -252,12 +163,6 @@ var sequential1L = {
|
|
|
252
163
|
sequential1L6: '#FF7149',
|
|
253
164
|
sequential1L7: '#FE3A3A'
|
|
254
165
|
};
|
|
255
|
-
|
|
256
|
-
/**
|
|
257
|
-
* #### Sequential 2D
|
|
258
|
-
*
|
|
259
|
-
* @colorSet verbose
|
|
260
|
-
*/
|
|
261
166
|
var sequential2D = {
|
|
262
167
|
sequential2D1: '#333022',
|
|
263
168
|
sequential2D2: '#3D2830',
|
|
@@ -267,12 +172,6 @@ var sequential2D = {
|
|
|
267
172
|
sequential2D6: '#A0409F',
|
|
268
173
|
sequential2D7: '#B846BB'
|
|
269
174
|
};
|
|
270
|
-
|
|
271
|
-
/**
|
|
272
|
-
* #### Sequential 2L
|
|
273
|
-
*
|
|
274
|
-
* @colorSet verbose
|
|
275
|
-
*/
|
|
276
175
|
var sequential2L = {
|
|
277
176
|
sequential2L1: '#EEE8CE',
|
|
278
177
|
sequential2L2: '#E8C7CE',
|
|
@@ -282,12 +181,6 @@ var sequential2L = {
|
|
|
282
181
|
sequential2L6: '#CE44CC',
|
|
283
182
|
sequential2L7: '#C723CC'
|
|
284
183
|
};
|
|
285
|
-
|
|
286
|
-
/**
|
|
287
|
-
* #### Sequential 3D
|
|
288
|
-
*
|
|
289
|
-
* @colorSet verbose
|
|
290
|
-
*/
|
|
291
184
|
var sequential3D = {
|
|
292
185
|
sequential3D1: '#333022',
|
|
293
186
|
sequential3D2: '#253223',
|
|
@@ -297,12 +190,6 @@ var sequential3D = {
|
|
|
297
190
|
sequential3D6: '#237561',
|
|
298
191
|
sequential3D7: '#238570'
|
|
299
192
|
};
|
|
300
|
-
|
|
301
|
-
/**
|
|
302
|
-
* #### Sequential 3L
|
|
303
|
-
*
|
|
304
|
-
* @colorSet verbose
|
|
305
|
-
*/
|
|
306
193
|
var sequential3L = {
|
|
307
194
|
sequential3L1: '#EEE8CE',
|
|
308
195
|
sequential3L2: '#B6ECD4',
|
|
@@ -312,12 +199,6 @@ var sequential3L = {
|
|
|
312
199
|
sequential3L6: '#249F86',
|
|
313
200
|
sequential3L7: '#14846C'
|
|
314
201
|
};
|
|
315
|
-
|
|
316
|
-
/**
|
|
317
|
-
* #### Sequential 4D
|
|
318
|
-
*
|
|
319
|
-
* @colorSet verbose
|
|
320
|
-
*/
|
|
321
202
|
var sequential4D = {
|
|
322
203
|
sequential4D1: '#333022',
|
|
323
204
|
sequential4D2: '#442519',
|
|
@@ -327,12 +208,6 @@ var sequential4D = {
|
|
|
327
208
|
sequential4D6: '#BD3737',
|
|
328
209
|
sequential4D7: '#DA3B30'
|
|
329
210
|
};
|
|
330
|
-
|
|
331
|
-
/**
|
|
332
|
-
* #### Sequential 4L
|
|
333
|
-
*
|
|
334
|
-
* @colorSet verbose
|
|
335
|
-
*/
|
|
336
211
|
var sequential4L = {
|
|
337
212
|
sequential4L1: '#EEE8CE',
|
|
338
213
|
sequential4L2: '#F5CEBF',
|
|
@@ -342,12 +217,6 @@ var sequential4L = {
|
|
|
342
217
|
sequential4L6: '#DF564D',
|
|
343
218
|
sequential4L7: '#DD2E2E'
|
|
344
219
|
};
|
|
345
|
-
|
|
346
|
-
/**
|
|
347
|
-
* #### Sequential 5D
|
|
348
|
-
*
|
|
349
|
-
* @colorSet verbose
|
|
350
|
-
*/
|
|
351
220
|
var sequential5D = {
|
|
352
221
|
sequential5D1: '#2E2E55',
|
|
353
222
|
sequential5D2: '#4B1773',
|
|
@@ -357,12 +226,6 @@ var sequential5D = {
|
|
|
357
226
|
sequential5D6: '#D97A0D',
|
|
358
227
|
sequential5D7: '#CBA700'
|
|
359
228
|
};
|
|
360
|
-
|
|
361
|
-
/**
|
|
362
|
-
* #### Sequential 5L
|
|
363
|
-
*
|
|
364
|
-
* @colorSet verbose
|
|
365
|
-
*/
|
|
366
229
|
var sequential5L = {
|
|
367
230
|
sequential5L1: '#EEE8CE',
|
|
368
231
|
sequential5L2: '#F2DD88',
|
|
@@ -372,12 +235,6 @@ var sequential5L = {
|
|
|
372
235
|
sequential5L6: '#EE4477',
|
|
373
236
|
sequential5L7: '#DD22BB'
|
|
374
237
|
};
|
|
375
|
-
|
|
376
|
-
/**
|
|
377
|
-
* #### Sequential 6D
|
|
378
|
-
*
|
|
379
|
-
* @colorSet verbose
|
|
380
|
-
*/
|
|
381
238
|
var sequential6D = {
|
|
382
239
|
sequential6D1: '#1C3355',
|
|
383
240
|
sequential6D2: '#005580',
|
|
@@ -387,12 +244,6 @@ var sequential6D = {
|
|
|
387
244
|
sequential6D6: '#9D9F0D',
|
|
388
245
|
sequential6D7: '#CBA700'
|
|
389
246
|
};
|
|
390
|
-
|
|
391
|
-
/**
|
|
392
|
-
* #### Sequential 6L
|
|
393
|
-
*
|
|
394
|
-
* @colorSet verbose
|
|
395
|
-
*/
|
|
396
247
|
var sequential6L = {
|
|
397
248
|
sequential6L1: '#EEE8CE',
|
|
398
249
|
sequential6L2: '#E7E755',
|
|
@@ -403,83 +254,35 @@ var sequential6L = {
|
|
|
403
254
|
sequential6L7: '#6666DD'
|
|
404
255
|
};
|
|
405
256
|
var sequential = _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, sequential1D), sequential1L), sequential2D), sequential2L), sequential3D), sequential3L), sequential4D), sequential4L), sequential5D), sequential5L), sequential6D), sequential6L);
|
|
406
|
-
|
|
407
|
-
/**
|
|
408
|
-
* #### High low 1D
|
|
409
|
-
*
|
|
410
|
-
* @colorSet verbose
|
|
411
|
-
*/
|
|
412
257
|
exports.sequential = sequential;
|
|
413
258
|
var highLow1D = {
|
|
414
259
|
highLow1DHigh: '#1C6B2D',
|
|
415
260
|
highLow1DLow: '#9E2520'
|
|
416
261
|
};
|
|
417
|
-
|
|
418
|
-
/**
|
|
419
|
-
* #### High low 1L
|
|
420
|
-
*
|
|
421
|
-
* @colorSet verbose
|
|
422
|
-
*/
|
|
423
262
|
var highLow1L = {
|
|
424
263
|
highLow1LHigh: '#55C169',
|
|
425
264
|
highLow1LLow: '#F98C83'
|
|
426
265
|
};
|
|
427
|
-
|
|
428
|
-
/**
|
|
429
|
-
* #### High low 2D
|
|
430
|
-
*
|
|
431
|
-
* @colorSet verbose
|
|
432
|
-
*/
|
|
433
266
|
var highLow2D = {
|
|
434
267
|
highLow2DHigh: '#115BAD',
|
|
435
268
|
highLow2DLow: '#9E2520'
|
|
436
269
|
};
|
|
437
|
-
|
|
438
|
-
/**
|
|
439
|
-
* #### High low 2L
|
|
440
|
-
*
|
|
441
|
-
* @colorSet verbose
|
|
442
|
-
*/
|
|
443
270
|
var highLow2L = {
|
|
444
271
|
highLow2LHigh: '#6BB3EE',
|
|
445
272
|
highLow2LLow: '#F98C83'
|
|
446
273
|
};
|
|
447
|
-
|
|
448
|
-
/**
|
|
449
|
-
* #### High low 3D
|
|
450
|
-
*
|
|
451
|
-
* @colorSet verbose
|
|
452
|
-
*/
|
|
453
274
|
var highLow3D = {
|
|
454
275
|
highLow3DHigh: '#277C52',
|
|
455
276
|
highLow3DLow: '#602CA1'
|
|
456
277
|
};
|
|
457
|
-
|
|
458
|
-
/**
|
|
459
|
-
* #### High low 3L
|
|
460
|
-
*
|
|
461
|
-
* @colorSet verbose
|
|
462
|
-
*/
|
|
463
278
|
var highLow3L = {
|
|
464
279
|
highLow3LHigh: '#45D4BA',
|
|
465
280
|
highLow3LLow: '#C093F9'
|
|
466
281
|
};
|
|
467
|
-
|
|
468
|
-
/**
|
|
469
|
-
* #### High low 4D
|
|
470
|
-
*
|
|
471
|
-
* @colorSet verbose
|
|
472
|
-
*/
|
|
473
282
|
var highLow4D = {
|
|
474
283
|
highLow4DHigh: '#1A6765',
|
|
475
284
|
highLow4DLow: '#9F3B23'
|
|
476
285
|
};
|
|
477
|
-
|
|
478
|
-
/**
|
|
479
|
-
* #### High low 4L
|
|
480
|
-
*
|
|
481
|
-
* @colorSet verbose
|
|
482
|
-
*/
|
|
483
286
|
var highLow4L = {
|
|
484
287
|
highLow4LHigh: '#2EA39B',
|
|
485
288
|
highLow4LLow: '#E3723A'
|