@splunk/themes 0.10.0 → 0.12.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/CHANGELOG.md +29 -0
- package/enterprise/comfortable.js +1 -1
- package/enterprise/compact.js +1 -1
- package/enterprise/light.js +18 -17
- package/package.json +22 -13
- package/prisma/base.js +9 -6
- package/prisma/comfortable.js +1 -1
- package/prisma/compact.js +1 -1
- package/prisma/dark.js +17 -17
- package/prisma/dataViz.js +507 -0
- package/prisma/light.js +18 -18
- package/storybook-addon-splunk-themes/ThemedDocsContainer.js +21 -9
- package/storybook-addon-splunk-themes/addParameter.js +1 -4
- package/storybook-addon-splunk-themes/themes.js +2 -2
- package/types/enterprise/comfortable.d.ts +1 -1
- package/types/enterprise/compact.d.ts +1 -1
- package/types/enterprise/dark.d.ts +1 -0
- package/types/enterprise/light.d.ts +1 -0
- package/types/prisma/base.d.ts +215 -0
- package/types/prisma/comfortable.d.ts +1 -1
- package/types/prisma/compact.d.ts +1 -1
- package/types/prisma/dark.d.ts +1 -1
- package/types/prisma/dataViz.d.ts +432 -0
- package/types/prisma/light.d.ts +1 -1
- package/types/storybook-addon-splunk-themes/ThemedDocsContainer.d.ts +2 -2
- package/types/storybook-addon-splunk-themes/addDecorator.d.ts +4 -1
- package/types/storybook-addon-splunk-themes/addParameter.d.ts +1 -2
- package/types/storybook-addon-splunk-themes/themes.d.ts +1 -1
- package/types/storybook-addon-splunk-themes/withSplunkTheme.d.ts +4 -2
- package/types/withSplunkTheme.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
============
|
|
3
3
|
|
|
4
|
+
0.12.0 - August 2, 2022
|
|
5
|
+
----------
|
|
6
|
+
New Features:
|
|
7
|
+
* Added `zIndexLayer` variable (SUI-2809).
|
|
8
|
+
|
|
9
|
+
API Changes:
|
|
10
|
+
* Status and accent colors have been updated in Prisma themes.
|
|
11
|
+
|
|
12
|
+
The amount of distinct color values have been consolidated: e.g. `statusColorHigh` and `accentColorNegative` are both `#e00000`.
|
|
13
|
+
|
|
14
|
+
The contrast between these colors have been increased to improve accessibility (SUI-3758).
|
|
15
|
+
|
|
16
|
+
0.11.0 - May 4, 2022
|
|
17
|
+
----------
|
|
18
|
+
New Features:
|
|
19
|
+
* Added Data visualization colors to Prisma themes.
|
|
20
|
+
|
|
21
|
+
0.10.1 - April 5, 2022
|
|
22
|
+
----------
|
|
23
|
+
Bug Fixes:
|
|
24
|
+
* Pinned `styled-components@5.1.1` to avoid breaking changes introduced in `styled-components@5.2.0`.
|
|
25
|
+
|
|
26
|
+
**`@splunk/themes` is incompatible with styled-components version(s) `^5.2.0`**.
|
|
27
|
+
|
|
28
|
+
`styled-components@5.2.0` changed how selectors like `& + &` are compiled; [styled-components PR#3236](https://github.com/styled-components/styled-components/pull/3236).
|
|
29
|
+
This breaks styles that worked in previous versions of styled-components; [styled-components issue #3265](https://github.com/styled-components/styled-components/issues/3265).
|
|
30
|
+
|
|
31
|
+
**Until noted otherwise in a future release of `@splunk/themes` do not use `styled-components@^5.2.0` with` @splunk/themes`**.
|
|
32
|
+
|
|
4
33
|
0.10.0 - February 23, 2022
|
|
5
34
|
----------
|
|
6
35
|
New Features:
|
package/enterprise/compact.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* ## Measures
|
|
10
10
|
* Spacing is used for margin on any element or padding on containers, but can be used for other
|
|
11
11
|
* properties that position elements.
|
|
12
12
|
* * Larger containers, such as `Card` or `Modal`, use `spacing`.
|
package/enterprise/light.js
CHANGED
|
@@ -14,7 +14,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
|
14
14
|
var dragHandle = "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAA2SURBVHgB7dKhEQAgDAPAhDnxDMAcDIBnT1pZV1FRk3e53EWFc+2P4N3DmLN+oKh/QADqB+IMUKEQD/CeueAAAAAASUVORK5CYII="; // see babel-plugin-base64-pngimport {
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* ## Brand colors
|
|
18
18
|
*
|
|
19
19
|
* @colorSet
|
|
20
20
|
*/
|
|
@@ -33,7 +33,7 @@ var brandColors = {
|
|
|
33
33
|
brandColorD50: '#286728'
|
|
34
34
|
};
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* ## Grayscale colors
|
|
37
37
|
*
|
|
38
38
|
* @colorSet
|
|
39
39
|
*/
|
|
@@ -53,7 +53,7 @@ var grays = {
|
|
|
53
53
|
black: '#000000'
|
|
54
54
|
};
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
56
|
+
* ## Accent colors
|
|
57
57
|
*
|
|
58
58
|
* @colorSet
|
|
59
59
|
*/
|
|
@@ -72,7 +72,7 @@ var accentColors = {
|
|
|
72
72
|
accentColorD50: '#003d5e'
|
|
73
73
|
};
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* ## Error Colors
|
|
76
76
|
*
|
|
77
77
|
* @colorSet
|
|
78
78
|
*/
|
|
@@ -91,7 +91,7 @@ var errorColors = {
|
|
|
91
91
|
errorColorD50: '#6f261d'
|
|
92
92
|
};
|
|
93
93
|
/**
|
|
94
|
-
*
|
|
94
|
+
* ## Alert colors
|
|
95
95
|
*
|
|
96
96
|
* @colorSet
|
|
97
97
|
* */
|
|
@@ -110,7 +110,7 @@ var alertColors = {
|
|
|
110
110
|
alertColorD50: '#79401a'
|
|
111
111
|
};
|
|
112
112
|
/**
|
|
113
|
-
*
|
|
113
|
+
* ## Warning colors
|
|
114
114
|
*
|
|
115
115
|
* @colorSet
|
|
116
116
|
*/
|
|
@@ -129,7 +129,7 @@ var warningColors = {
|
|
|
129
129
|
warningColorD50: '#7d600f'
|
|
130
130
|
};
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* ## Success colors
|
|
133
133
|
*
|
|
134
134
|
* @colorSet
|
|
135
135
|
*/
|
|
@@ -148,7 +148,7 @@ var successColors = {
|
|
|
148
148
|
successColorD50: '#275126'
|
|
149
149
|
};
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* ## Info colors
|
|
152
152
|
*
|
|
153
153
|
* @colorSet
|
|
154
154
|
*/
|
|
@@ -167,7 +167,7 @@ var infoColors = {
|
|
|
167
167
|
infoColorD50: '#002b3e'
|
|
168
168
|
};
|
|
169
169
|
/**
|
|
170
|
-
*
|
|
170
|
+
* ## Diverging colors
|
|
171
171
|
*
|
|
172
172
|
* @colorSet alphabetical
|
|
173
173
|
*/
|
|
@@ -185,7 +185,7 @@ var divergingColors = {
|
|
|
185
185
|
diverging5ColorB: '#b6c75a'
|
|
186
186
|
};
|
|
187
187
|
/**
|
|
188
|
-
*
|
|
188
|
+
* ## Categorical Colors
|
|
189
189
|
*
|
|
190
190
|
* @colorSet alphabetical
|
|
191
191
|
*/
|
|
@@ -253,7 +253,7 @@ var categoricalColors = {
|
|
|
253
253
|
cat30ColorL: '#a4bbe0'
|
|
254
254
|
};
|
|
255
255
|
/**
|
|
256
|
-
*
|
|
256
|
+
* ## Usage-based colors
|
|
257
257
|
*
|
|
258
258
|
* @colorSet verbose
|
|
259
259
|
*/
|
|
@@ -272,7 +272,7 @@ var usageColors = {
|
|
|
272
272
|
transparent: 'transparent'
|
|
273
273
|
};
|
|
274
274
|
/**
|
|
275
|
-
*
|
|
275
|
+
* ## Syntax colors
|
|
276
276
|
* The following colors should only be used for syntax coloring of code.
|
|
277
277
|
*
|
|
278
278
|
* @colorSet verbose alphabetical
|
|
@@ -294,7 +294,7 @@ var syntaxColors = {
|
|
|
294
294
|
syntaxTeal: '#00a8ab'
|
|
295
295
|
};
|
|
296
296
|
/**
|
|
297
|
-
*
|
|
297
|
+
* ## Shadows
|
|
298
298
|
*
|
|
299
299
|
* @shadowSet
|
|
300
300
|
*/
|
|
@@ -305,7 +305,7 @@ var shadows = {
|
|
|
305
305
|
overlayShadow: '0 4px 8px rgba(0, 0, 0, 0.2)'
|
|
306
306
|
};
|
|
307
307
|
/**
|
|
308
|
-
*
|
|
308
|
+
* ## Backgrounds
|
|
309
309
|
*
|
|
310
310
|
* @colorSet verbose
|
|
311
311
|
*/
|
|
@@ -314,7 +314,7 @@ var backgrounds = {
|
|
|
314
314
|
draggableBackground: "url('data:image/png;base64,".concat(dragHandle, "') 0 0 / 8px 8px repeat")
|
|
315
315
|
};
|
|
316
316
|
/**
|
|
317
|
-
*
|
|
317
|
+
* ## Border
|
|
318
318
|
*
|
|
319
319
|
* @valueSet
|
|
320
320
|
*/
|
|
@@ -325,7 +325,7 @@ var borders = {
|
|
|
325
325
|
};
|
|
326
326
|
var sansFontFamily = "'Splunk Platform Sans', 'Proxima Nova', Roboto, Droid, 'Helvetica Neue', Helvetica, Arial, sans-serif";
|
|
327
327
|
/**
|
|
328
|
-
*
|
|
328
|
+
* ## Fonts
|
|
329
329
|
*
|
|
330
330
|
* @valueSet
|
|
331
331
|
*/
|
|
@@ -339,13 +339,14 @@ var fonts = {
|
|
|
339
339
|
fontWeightSemiBold: '500'
|
|
340
340
|
};
|
|
341
341
|
/**
|
|
342
|
-
*
|
|
342
|
+
* ## Layers
|
|
343
343
|
* If a variable does not suit your purpose, set a value relatively, such as zindexModal +1.
|
|
344
344
|
*
|
|
345
345
|
* @valueSet
|
|
346
346
|
*/
|
|
347
347
|
|
|
348
348
|
var zindexes = {
|
|
349
|
+
zindexLayer: 1000,
|
|
349
350
|
zindexFixedNavbar: 1030,
|
|
350
351
|
zindexModalBackdrop: 1040,
|
|
351
352
|
zindexModal: 1050,
|
package/package.json
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splunk/themes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Theme variables and mixins for the Splunk design language",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"
|
|
6
|
+
"babel": "babel src -d . --ignore src/babel-plugin-base64-png,src/tests --ignore \"**/docs\" --extensions .js,.ts,.tsx",
|
|
7
|
+
"build": "cross-env NODE_ENV=production yarn babel && yarn types:build",
|
|
8
|
+
"docs": "NODE_ENV=production webpack --config docs.gen.webpack.config.js",
|
|
9
|
+
"docs:publish": "cicd-publish-docs docs --force",
|
|
10
|
+
"docs:start": "webpack serve --config docs.gen.webpack.config.js",
|
|
7
11
|
"lint": "eslint src --ext \".ts,.tsx,.js,.jsx\"",
|
|
8
12
|
"lint:ci": "yarn run lint -- -f junit -o test-reports/lint-results.xml",
|
|
9
|
-
"start": "babel
|
|
13
|
+
"start": "yarn babel --watch",
|
|
10
14
|
"test": "jest",
|
|
11
|
-
"test:ci": "JEST_JUNIT_OUTPUT_DIR=./test-reports JEST_JUNIT_OUTPUT_NAME=unit-results.xml JEST_JUNIT_CLASSNAME=unit yarn run test --ci --reporters=default jest-junit --coverage --coverageDirectory=coverage_report/coverage_maps_unit --coverageReporters=
|
|
15
|
+
"test:ci": "JEST_JUNIT_OUTPUT_DIR=./test-reports JEST_JUNIT_OUTPUT_NAME=unit-results.xml JEST_JUNIT_CLASSNAME=unit yarn run test --ci --reporters=default jest-junit --coverage --coverageDirectory=coverage_report/coverage_maps_unit --coverageReporters=cobertura",
|
|
12
16
|
"test:watch": "jest --watch",
|
|
13
|
-
"types:build": "tsc",
|
|
17
|
+
"types:build": "tsc --emitDeclarationOnly --declaration",
|
|
14
18
|
"types:start": "yarn types:build --watch"
|
|
15
19
|
},
|
|
16
20
|
"peerDependencies": {
|
|
@@ -20,7 +24,7 @@
|
|
|
20
24
|
"@storybook/components": ">= 6.x",
|
|
21
25
|
"@storybook/theming": ">= 6.x",
|
|
22
26
|
"react": "^16.8",
|
|
23
|
-
"styled-components": "
|
|
27
|
+
"styled-components": "5.1.1"
|
|
24
28
|
},
|
|
25
29
|
"peerDependenciesMeta": {
|
|
26
30
|
"react": {
|
|
@@ -60,12 +64,13 @@
|
|
|
60
64
|
"@babel/cli": "^7.2.0",
|
|
61
65
|
"@babel/core": "^7.2.0",
|
|
62
66
|
"@splunk/babel-preset": "^3.0.0",
|
|
67
|
+
"@splunk/cicd-tools": "^0.4.0",
|
|
63
68
|
"@splunk/eslint-config": "^4.0.0",
|
|
64
|
-
"@storybook/addon-docs": "^6.
|
|
65
|
-
"@storybook/addons": "^6.
|
|
66
|
-
"@storybook/api": "^6.
|
|
67
|
-
"@storybook/components": "^6.
|
|
68
|
-
"@storybook/theming": "^6.
|
|
69
|
+
"@storybook/addon-docs": "^6.5.9",
|
|
70
|
+
"@storybook/addons": "^6.5.9",
|
|
71
|
+
"@storybook/api": "^6.5.9",
|
|
72
|
+
"@storybook/components": "^6.5.9",
|
|
73
|
+
"@storybook/theming": "^6.5.9",
|
|
69
74
|
"@typescript-eslint/eslint-plugin": "^3.4.0",
|
|
70
75
|
"@typescript-eslint/parser": "^3.4.0",
|
|
71
76
|
"babel-eslint": "^10.1.0",
|
|
@@ -83,8 +88,12 @@
|
|
|
83
88
|
"eslint-plugin-react-hooks": "^4.0.5",
|
|
84
89
|
"jest": "^25.1.0",
|
|
85
90
|
"react": "^16.12.0",
|
|
86
|
-
"styled-components": "
|
|
87
|
-
"typescript": "^4.0.5"
|
|
91
|
+
"styled-components": "5.1.1",
|
|
92
|
+
"typescript": "^4.0.5",
|
|
93
|
+
"webpack": "^4.16.2",
|
|
94
|
+
"webpack-cli": "^4.9.2",
|
|
95
|
+
"webpack-dev-server": "^4.7.4",
|
|
96
|
+
"webpack-merge": "^4.1.3"
|
|
88
97
|
},
|
|
89
98
|
"engines": {
|
|
90
99
|
"node": ">=6"
|
package/prisma/base.js
CHANGED
|
@@ -7,6 +7,8 @@ exports["default"] = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _tinycolor = _interopRequireDefault(require("tinycolor2"));
|
|
9
9
|
|
|
10
|
+
var _dataViz = _interopRequireDefault(require("./dataViz"));
|
|
11
|
+
|
|
10
12
|
var _light = _interopRequireDefault(require("./light"));
|
|
11
13
|
|
|
12
14
|
var _dark = _interopRequireDefault(require("./dark"));
|
|
@@ -27,7 +29,7 @@ function createPrismaBase(_ref) {
|
|
|
27
29
|
dark: _dark["default"]
|
|
28
30
|
}[colorScheme];
|
|
29
31
|
/**
|
|
30
|
-
*
|
|
32
|
+
* ## Misc. colors
|
|
31
33
|
*
|
|
32
34
|
* @colorSet verbose
|
|
33
35
|
*/
|
|
@@ -38,7 +40,7 @@ function createPrismaBase(_ref) {
|
|
|
38
40
|
linkColor: colorSchemeVars.interactiveColorPrimary
|
|
39
41
|
};
|
|
40
42
|
/**
|
|
41
|
-
*
|
|
43
|
+
* ## Interactive state shadows
|
|
42
44
|
*
|
|
43
45
|
* @shadowSet
|
|
44
46
|
*
|
|
@@ -50,7 +52,7 @@ function createPrismaBase(_ref) {
|
|
|
50
52
|
focusShadowInset: "inset 0 0 0 3px ".concat(usageColors.focusColor)
|
|
51
53
|
};
|
|
52
54
|
/**
|
|
53
|
-
*
|
|
55
|
+
* ## Backgrounds
|
|
54
56
|
*
|
|
55
57
|
* @colorSet verbose
|
|
56
58
|
*/
|
|
@@ -60,7 +62,7 @@ function createPrismaBase(_ref) {
|
|
|
60
62
|
};
|
|
61
63
|
var sansFontFamily = "'Splunk Platform Sans', 'Splunk Data Sans', Roboto, Droid, 'Helvetica Neue', Helvetica, Arial, sans-serif";
|
|
62
64
|
/**
|
|
63
|
-
*
|
|
65
|
+
* ## Fonts
|
|
64
66
|
*
|
|
65
67
|
* @valueSet
|
|
66
68
|
*/
|
|
@@ -74,20 +76,21 @@ function createPrismaBase(_ref) {
|
|
|
74
76
|
fontWeightSemiBold: '500'
|
|
75
77
|
};
|
|
76
78
|
/**
|
|
77
|
-
*
|
|
79
|
+
* ## Layers
|
|
78
80
|
* If a variable does not suit your purpose, set a value relatively, such as zindexModal +1.
|
|
79
81
|
*
|
|
80
82
|
* @valueSet
|
|
81
83
|
*/
|
|
82
84
|
|
|
83
85
|
var zindexes = {
|
|
86
|
+
zindexLayer: 1000,
|
|
84
87
|
zindexFixedNavbar: 1030,
|
|
85
88
|
zindexModalBackdrop: 1040,
|
|
86
89
|
zindexModal: 1050,
|
|
87
90
|
zindexPopover: 1060,
|
|
88
91
|
zindexToastMessages: 2000
|
|
89
92
|
};
|
|
90
|
-
return _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, fonts), usageColors), shadows), backgrounds), zindexes);
|
|
93
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, fonts), usageColors), _dataViz["default"]), shadows), backgrounds), zindexes);
|
|
91
94
|
}
|
|
92
95
|
|
|
93
96
|
var _default = createPrismaBase;
|
package/prisma/comfortable.js
CHANGED
package/prisma/compact.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* ## Measures
|
|
10
10
|
* Spacing is used for margin on any element or padding on containers, but can be used for other
|
|
11
11
|
* properties that position elements.
|
|
12
12
|
* * Larger containers, such as `Card` or `Modal`, use `spacing`.
|
package/prisma/dark.js
CHANGED
|
@@ -12,7 +12,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
12
12
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* ## Background colors
|
|
16
16
|
* Background colors should be used only for backgrounds of higher level sections & containers of a UI.
|
|
17
17
|
*
|
|
18
18
|
* @colorSet verbose
|
|
@@ -28,7 +28,7 @@ var backgroundColors = {
|
|
|
28
28
|
backgroundColorScrim: 'rgba(0, 0, 0, 0.8)'
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* ## Content colors
|
|
32
32
|
* Content colors should be used for text, icons and dividers.
|
|
33
33
|
*
|
|
34
34
|
* @colorSet verbose
|
|
@@ -42,7 +42,7 @@ var contentColors = {
|
|
|
42
42
|
contentColorMuted: '#909090'
|
|
43
43
|
};
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
45
|
+
* ## Interactive colors
|
|
46
46
|
* Interactive colors are specifically chosen for borders and backgrounds of controls and other interactive content.
|
|
47
47
|
* "Overlay" colors are intended to be placed over the default background color, such as interactiveColorPrimary.
|
|
48
48
|
* If the default background color is not transparent, the `blend` mixin can be used to create a new color that combines the two.
|
|
@@ -63,7 +63,7 @@ var interactiveColors = {
|
|
|
63
63
|
interactiveColorBackgroundDisabled: 'rgba(255, 255, 255, 0.15)'
|
|
64
64
|
};
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* ## Neutral colors
|
|
67
67
|
* Neutrals are used for dividers and as backup colors that can sparingly be used for cases, when the other defined colors are not enough.
|
|
68
68
|
*
|
|
69
69
|
* @colorSet verbose
|
|
@@ -79,20 +79,20 @@ var neutralColors = {
|
|
|
79
79
|
white: '#ffffff'
|
|
80
80
|
};
|
|
81
81
|
/**
|
|
82
|
-
*
|
|
82
|
+
* ## Accent colors
|
|
83
83
|
* Accent colors aid and categorize the visual communication of the system response.
|
|
84
84
|
*
|
|
85
85
|
* @colorSet verbose
|
|
86
86
|
*/
|
|
87
87
|
|
|
88
88
|
var accentColors = {
|
|
89
|
-
accentColorPositive: '#
|
|
90
|
-
accentColorWarning: '#
|
|
91
|
-
accentColorAlert: '#
|
|
92
|
-
accentColorNegative: '#
|
|
89
|
+
accentColorPositive: '#85f415',
|
|
90
|
+
accentColorWarning: '#f49106',
|
|
91
|
+
accentColorAlert: '#f0581f',
|
|
92
|
+
accentColorNegative: '#ff4242'
|
|
93
93
|
};
|
|
94
94
|
/**
|
|
95
|
-
*
|
|
95
|
+
* ## Status colors
|
|
96
96
|
* Status colors are reserved for communicating urgency and severity associated with data objects.
|
|
97
97
|
*
|
|
98
98
|
* @colorSet verbose
|
|
@@ -100,14 +100,14 @@ var accentColors = {
|
|
|
100
100
|
|
|
101
101
|
var statusColors = {
|
|
102
102
|
statusColorInfo: '#61cafa',
|
|
103
|
-
statusColorNormal: '#
|
|
104
|
-
statusColorLow: '#
|
|
105
|
-
statusColorMedium: '#
|
|
106
|
-
statusColorHigh: '#
|
|
107
|
-
statusColorCritical: '#
|
|
103
|
+
statusColorNormal: '#85f415',
|
|
104
|
+
statusColorLow: '#2cbda3',
|
|
105
|
+
statusColorMedium: '#f49106',
|
|
106
|
+
statusColorHigh: '#ff4242',
|
|
107
|
+
statusColorCritical: '#ff3361'
|
|
108
108
|
};
|
|
109
109
|
/**
|
|
110
|
-
*
|
|
110
|
+
* ## Elevation shadows
|
|
111
111
|
*
|
|
112
112
|
* @shadowSet
|
|
113
113
|
*
|
|
@@ -120,7 +120,7 @@ var elevationShadows = {
|
|
|
120
120
|
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)'
|
|
121
121
|
};
|
|
122
122
|
/**
|
|
123
|
-
*
|
|
123
|
+
* ## Syntax colors
|
|
124
124
|
* Syntax colors are used only for code blocks.
|
|
125
125
|
*
|
|
126
126
|
* @colorSet verbose alphabetical
|