@elastic/eui-theme-borealis 5.0.0 → 5.1.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/lib/cjs/variables/_components.js +3 -1
- package/lib/esm/variables/_components.js +2 -0
- package/package.json +9 -7
- package/src/mixins/_shadow.scss +27 -26
- package/src/theme_dark.scss +1 -3
- package/src/theme_light.scss +1 -2
- package/src/variables/_index.scss +2 -2
- package/src/variables/_shadows_dark.scss +14 -14
- package/src/variables/_shadows_light.scss +14 -14
- package/src/variables/colors/_colors_light.scss +0 -1
- package/src/variables/colors/_semantic_colors.scss +1 -4
|
@@ -373,6 +373,7 @@ var component_colors = {
|
|
|
373
373
|
backgroundFilledText = _ref120[0];
|
|
374
374
|
return backgroundFilledText;
|
|
375
375
|
}, ['colors.backgroundFilledText']),
|
|
376
|
+
tableFooterBackground: _semantic_colors.SEMANTIC_COLORS.shade15,
|
|
376
377
|
tooltipBackground: _colors_dark.dark_background_colors.backgroundBaseSubdued,
|
|
377
378
|
tooltipBorder: _colors_dark.dark_border_colors.borderBaseSubdued,
|
|
378
379
|
tooltipBorderFloating: (0, _euiThemeCommon.computed)(function (_ref121) {
|
|
@@ -437,6 +438,7 @@ var components = exports.components = {
|
|
|
437
438
|
return backgroundBaseInteractiveHover;
|
|
438
439
|
}, ['colors.backgroundBaseInteractiveHover']),
|
|
439
440
|
tableRowBackgroundMarked: _semantic_colors.SEMANTIC_COLORS.warning140,
|
|
440
|
-
tableRowBackgroundMarkedHover: _semantic_colors.SEMANTIC_COLORS.warning130
|
|
441
|
+
tableRowBackgroundMarkedHover: _semantic_colors.SEMANTIC_COLORS.warning130,
|
|
442
|
+
tableFooterBackground: _semantic_colors.SEMANTIC_COLORS.shade135
|
|
441
443
|
})
|
|
442
444
|
};
|
|
@@ -116,6 +116,7 @@ const component_colors = {
|
|
|
116
116
|
tableRowBackgroundMarked: SEMANTIC_COLORS.warning10,
|
|
117
117
|
tableRowBackgroundMarkedHover: SEMANTIC_COLORS.warning20,
|
|
118
118
|
tableCellSortableIconColor: computed(([backgroundFilledText]) => backgroundFilledText, ['colors.backgroundFilledText']),
|
|
119
|
+
tableFooterBackground: SEMANTIC_COLORS.shade15,
|
|
119
120
|
tooltipBackground: dark_background_colors.backgroundBaseSubdued,
|
|
120
121
|
tooltipBorder: dark_border_colors.borderBaseSubdued,
|
|
121
122
|
tooltipBorderFloating: computed(([borderBaseFloating]) => borderBaseFloating, ['colors.borderBaseFloating']),
|
|
@@ -162,5 +163,6 @@ export const components = {
|
|
|
162
163
|
tableRowInteractiveBackgroundFocus: computed(([backgroundBaseInteractiveHover]) => backgroundBaseInteractiveHover, ['colors.backgroundBaseInteractiveHover']),
|
|
163
164
|
tableRowBackgroundMarked: SEMANTIC_COLORS.warning140,
|
|
164
165
|
tableRowBackgroundMarkedHover: SEMANTIC_COLORS.warning130,
|
|
166
|
+
tableFooterBackground: SEMANTIC_COLORS.shade135,
|
|
165
167
|
},
|
|
166
168
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elastic/eui-theme-borealis",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "A visual theme for EUI",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"scripts": {
|
|
@@ -12,10 +12,12 @@
|
|
|
12
12
|
"build:types": "NODE_ENV=production tsc --project tsconfig.types.json",
|
|
13
13
|
"build-pack": "yarn build && npm pack",
|
|
14
14
|
"copy-files": "node ./scripts/copy-json-files.js",
|
|
15
|
-
"lint": "yarn
|
|
16
|
-
"lint-
|
|
15
|
+
"lint": "yarn run lint-ts && yarn run lint-es && yarn run lint-sass",
|
|
16
|
+
"lint-ts": "tsc --noEmit",
|
|
17
|
+
"lint-es": "eslint --cache \"src/**/*.ts\" --max-warnings 0",
|
|
17
18
|
"lint-sass": "yarn stylelint \"**/*.scss\" --quiet-deprecation-warnings",
|
|
18
|
-
"test": "
|
|
19
|
+
"test": "yarn test-unit",
|
|
20
|
+
"test-unit": "jest ./src --passWithNoTests",
|
|
19
21
|
"pre-push": "yarn build:workspaces && yarn lint && yarn test"
|
|
20
22
|
},
|
|
21
23
|
"repository": {
|
|
@@ -23,8 +25,8 @@
|
|
|
23
25
|
"url": "https://github.com/elastic/eui.git",
|
|
24
26
|
"directory": "packages/eui-theme-borealis"
|
|
25
27
|
},
|
|
26
|
-
"
|
|
27
|
-
"@elastic/eui-theme-common": "
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@elastic/eui-theme-common": "7.1.0",
|
|
28
30
|
"chroma-js": "^2.4.2"
|
|
29
31
|
},
|
|
30
32
|
"devDependencies": {
|
|
@@ -33,7 +35,7 @@
|
|
|
33
35
|
"@babel/preset-env": "^7.21.5",
|
|
34
36
|
"@babel/preset-react": "^7.18.6",
|
|
35
37
|
"@babel/preset-typescript": "^7.21.5",
|
|
36
|
-
"@elastic/eui-theme-common": "7.
|
|
38
|
+
"@elastic/eui-theme-common": "7.1.0",
|
|
37
39
|
"@types/chroma-js": "^2.4.0",
|
|
38
40
|
"@types/jest": "^29.5.12",
|
|
39
41
|
"@types/prettier": "2.7.3",
|
package/src/mixins/_shadow.scss
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
/* stylelint-disable-next-line scss/at-function-pattern */
|
|
9
10
|
@function _colorMode() {
|
|
10
11
|
@if (lightness($euiColorTextParagraph) < 50) {
|
|
11
12
|
@return 'light';
|
|
@@ -18,39 +19,39 @@
|
|
|
18
19
|
@mixin euiSlightShadow($color: $euiShadowColor) {
|
|
19
20
|
@if _colorMode() == 'light' {
|
|
20
21
|
box-shadow:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16),
|
|
23
|
+
0 1px 4px 0 hsl(from $euiShadowColor h s l / 0.06),
|
|
24
|
+
0 2px 8px 0 hsl(from $euiShadowColor h s l / 0.04);
|
|
24
25
|
} @else {
|
|
25
26
|
box-shadow:
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
0 1px 4px 0 hsl(from $euiShadowColor h s l / 0.4),
|
|
28
|
+
0 2px 8px 0 hsl(from $euiShadowColor h s l/ 0.24);
|
|
28
29
|
}
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
@mixin euiBottomShadowSmall($color: $euiShadowColor) {
|
|
32
33
|
@if _colorMode == 'light' {
|
|
33
34
|
box-shadow:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16),
|
|
36
|
+
0 2px 7px 0 hsl(from $euiShadowColor h s l / 0.08),
|
|
37
|
+
0 4px 11px 0 hsl(from $euiShadowColor h s l / 0.05);
|
|
37
38
|
} @else {
|
|
38
39
|
box-shadow:
|
|
39
|
-
|
|
40
|
-
|
|
40
|
+
0 2px 7px 0 hsl(from $euiShadowColor h s l / 0.46),
|
|
41
|
+
0 4px 11px 0 hsl(from $euiShadowColor h s l / 0.26);
|
|
41
42
|
}
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
@mixin euiBottomShadowMedium($color: $euiShadowColor) {
|
|
45
46
|
@if _colorMode == 'light' {
|
|
46
47
|
box-shadow:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16),
|
|
49
|
+
0 3px 10px 0 hsl(from $euiShadowColor h s l / 0.1),
|
|
50
|
+
0 6px 14px 0 hsl(from $euiShadowColor h s l / 0.06);
|
|
50
51
|
} @else {
|
|
51
52
|
box-shadow:
|
|
52
|
-
|
|
53
|
-
|
|
53
|
+
0 3px 10px 0 hsl(from $euiShadowColor h s l / 0.52),
|
|
54
|
+
0 6px 14px 0 hsl(from $euiShadowColor h s l / 0.28);
|
|
54
55
|
}
|
|
55
56
|
}
|
|
56
57
|
|
|
@@ -70,24 +71,24 @@
|
|
|
70
71
|
@if ($reverse) {
|
|
71
72
|
@if _colorMode == 'light' {
|
|
72
73
|
box-shadow:
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16),
|
|
75
|
+
0 -4px 13px 0 hsl(from $euiShadowColor h s l / 0.12),
|
|
76
|
+
0 -8px 17px 0 hsl(from $euiShadowColor h s l / 0.07);
|
|
76
77
|
} @else {
|
|
77
78
|
box-shadow:
|
|
78
|
-
|
|
79
|
-
|
|
79
|
+
0 -4px 13px 0 hsl(from $euiShadowColor h s l / 0.58),
|
|
80
|
+
0 -8px 17px 0 hsl(from $euiShadowColor h s l / 0.3);
|
|
80
81
|
}
|
|
81
82
|
} @else {
|
|
82
83
|
@if _colorMode == 'light' {
|
|
83
84
|
box-shadow:
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16),
|
|
86
|
+
0 4px 13px 0 hsl(from $euiShadowColor h s l / 0.12),
|
|
87
|
+
0 8px 17px 0 hsl(from $euiShadowColor h s l / 0.07);
|
|
87
88
|
} @else {
|
|
88
89
|
box-shadow:
|
|
89
|
-
|
|
90
|
-
|
|
90
|
+
0 4px 13px 0 hsl(from $euiShadowColor h s l / 0.58),
|
|
91
|
+
0 8px 17px 0 hsl(from $euiShadowColor h s l / 0.3);
|
|
91
92
|
}
|
|
92
93
|
}
|
|
93
94
|
}
|
|
@@ -128,4 +129,4 @@
|
|
|
128
129
|
// This workaround forces a stacking context on the scrolling container, which
|
|
129
130
|
// hopefully addresses the bug. @see https://github.com/elastic/eui/pull/7855
|
|
130
131
|
transform: translateZ(0);
|
|
131
|
-
}
|
|
132
|
+
}
|
package/src/theme_dark.scss
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
|
|
2
1
|
// color mode specific variables
|
|
3
2
|
@import './variables/colors/colors_vis_dark';
|
|
4
3
|
@import './variables/colors/colors_dark';
|
|
5
4
|
@import './variables/shadows_dark';
|
|
6
5
|
|
|
7
|
-
|
|
8
6
|
// Global styling
|
|
9
7
|
@import './variables/index';
|
|
10
8
|
@import 'mixins/index';
|
|
11
|
-
@import 'node_modules/@elastic/eui-theme-common/src/global_styling/index';
|
|
9
|
+
@import 'node_modules/@elastic/eui-theme-common/src/global_styling/index';
|
package/src/theme_light.scss
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
@import './variables/colors/colors_light';
|
|
4
4
|
@import './variables/shadows_light';
|
|
5
5
|
|
|
6
|
-
|
|
7
6
|
// Global styling
|
|
8
7
|
@import './variables/index';
|
|
9
8
|
@import 'mixins/index';
|
|
10
|
-
@import 'node_modules/@elastic/eui-theme-common/src/global_styling/index';
|
|
9
|
+
@import 'node_modules/@elastic/eui-theme-common/src/global_styling/index';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Import base theme first, then override
|
|
2
2
|
|
|
3
|
-
// TODO: untangle border scss definitions by moving them and related usage to the theme
|
|
4
|
-
// package instead of the common one
|
|
3
|
+
// TODO: untangle border scss definitions by moving them and related usage to the theme
|
|
4
|
+
// package instead of the common one
|
|
5
5
|
|
|
6
6
|
@import 'node_modules/@elastic/eui-theme-common/src/global_styling/variables/size';
|
|
7
7
|
@import 'node_modules/@elastic/eui-theme-common/src/global_styling/variables/responsive';
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
// Shadows
|
|
2
2
|
$euiShadowColor: $euiColorInk !default;
|
|
3
3
|
|
|
4
|
-
$euiShadowDownXS:
|
|
5
|
-
$euiShadowDownS:
|
|
6
|
-
$euiShadowDownM:
|
|
7
|
-
$euiShadowDownL:
|
|
8
|
-
$euiShadowDownXL:
|
|
4
|
+
$euiShadowDownXS: 0 1px 4px 0 hsla(from $euiShadowColor h s l / 0.4), 0 2px 8px 0 hsla(from $euiShadowColor h s l / 0.24);
|
|
5
|
+
$euiShadowDownS: 0 2px 7px 0 hsla(from $euiShadowColor h s l / 0.46), 0 4px 11px 0 hsla(from $euiShadowColor h s l / 0.26);
|
|
6
|
+
$euiShadowDownM: 0 3px 10px 0 hsla(from $euiShadowColor h s l / 0.52), 0 6px 14px 0 hsla(from $euiShadowColor h s l / 0.28);
|
|
7
|
+
$euiShadowDownL: 0 4px 13px 0 hsla(from $euiShadowColor h s l / 0.58), 0 8px 17px 0 hsla(from $euiShadowColor h s l / 0.3);
|
|
8
|
+
$euiShadowDownXL: 0 5px 16px 0 hsla(from $euiShadowColor h s l / 0.64), 0 10px 20px 0 hsla(from $euiShadowColor h s l / 0.32);
|
|
9
9
|
|
|
10
|
-
$euiShadowUpXS:
|
|
11
|
-
$euiShadowUpS:
|
|
12
|
-
$euiShadowUpM:
|
|
13
|
-
$euiShadowUpL:
|
|
14
|
-
$euiShadowUpXL:
|
|
10
|
+
$euiShadowUpXS: 0 1px 4px 0 hsla(from $euiShadowColor h s l / 0.4), 0 -2px 8px 0 hsla(from $euiShadowColor h s l / 0.24);
|
|
11
|
+
$euiShadowUpS: 0 2px 7px 0 hsla(from $euiShadowColor h s l / 0.46), 0 -4px 11px 0 hsla(from $euiShadowColor h s l / 0.26);
|
|
12
|
+
$euiShadowUpM: 0 3px 10px 0 hsla(from $euiShadowColor h s l / 0.52), 0 -6px 14px 0 hsla(from $euiShadowColor h s l / 0.28);
|
|
13
|
+
$euiShadowUpL: 0 4px 13px 0 hsla(from $euiShadowColor h s l / 0.58), 0 -8px 17px 0 hsla(from $euiShadowColor h s l / 0.3);
|
|
14
|
+
$euiShadowUpXL: 0 5px 16px 0 hsla(from $euiShadowColor h s l / 0.64), 0 -10px 20px 0 hsla(from $euiShadowColor h s l / 0.32);
|
|
15
15
|
|
|
16
|
-
$euiShadowHoverDown:
|
|
17
|
-
$euiShadowHoverXLDown:
|
|
16
|
+
$euiShadowHoverDown: 0 2px 7px 0 hsla(from $euiShadowColor h s l / 0.46), 0 4px 11px 0 hsla(from $euiShadowColor h s l / 0.26);
|
|
17
|
+
$euiShadowHoverXLDown: 0 6px 19px 0 hsla(from $euiShadowColor h s l / 0.7), 0 12px 23px 0 hsla(from $euiShadowColor h s l / 0.34);
|
|
18
18
|
|
|
19
|
-
$euiShadowHoverUp:
|
|
20
|
-
$euiShadowHoverXLUp:
|
|
19
|
+
$euiShadowHoverUp: 0 -2px 7px 0 hsla(from $euiShadowColor h s l / 0.46), 0 -4px 11px 0 hsla(from $euiShadowColor h s l / 0.26);
|
|
20
|
+
$euiShadowHoverXLUp: 0 -6px 19px 0 hsla(from $euiShadowColor h s l / 0.7), 0 -12px 23px 0 hsla(from $euiShadowColor h s l / 0.34);
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
// Shadows
|
|
2
2
|
$euiShadowColor: $euiColorShade120 !default;
|
|
3
3
|
|
|
4
|
-
$euiShadowDownXS:
|
|
5
|
-
$euiShadowDownS:
|
|
6
|
-
$euiShadowDownM:
|
|
7
|
-
$euiShadowDownL:
|
|
8
|
-
$euiShadowDownXL:
|
|
4
|
+
$euiShadowDownXS: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 1px 4px 0 hsl(from $euiShadowColor h s l / 0.06), 0 2px 8px 0 hsl(from $euiShadowColor h s l / 0.04);
|
|
5
|
+
$euiShadowDownS: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 2px 7px 0 hsl(from $euiShadowColor h s l / 0.08), 0 4px 11px 0 hsl(from $euiShadowColor h s l / 0.05);
|
|
6
|
+
$euiShadowDownM: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 3px 10px 0 hsl(from $euiShadowColor h s l / 0.1), 0 6px 14px 0 hsl(from $euiShadowColor h s l / 0.06);
|
|
7
|
+
$euiShadowDownL: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 4px 13px 0 hsl(from $euiShadowColor h s l / 0.12), 0 8px 17px 0 hsl(from $euiShadowColor h s l / 0.07);
|
|
8
|
+
$euiShadowDownXL: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 5px 16px 0 hsl(from $euiShadowColor h s l / 0.14), 0 10px 20px 0 hsl(from $euiShadowColor h s l / 0.08);
|
|
9
9
|
|
|
10
|
-
$euiShadowUpXS:
|
|
11
|
-
$euiShadowUpS:
|
|
12
|
-
$euiShadowUpM:
|
|
13
|
-
$euiShadowUpL:
|
|
14
|
-
$euiShadowUpXL:
|
|
10
|
+
$euiShadowUpXS: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 -1px 4px 0 hsl(from $euiShadowColor h s l / 0.06), 0 -2px 8px 0 hsl(from $euiShadowColor h s l / 0.04);
|
|
11
|
+
$euiShadowUpS: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 -2px 7px 0 hsl(from $euiShadowColor h s l / 0.08), 0 -4px 11px 0 hsl(from $euiShadowColor h s l / 0.05);
|
|
12
|
+
$euiShadowUpM: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 -3px 10px 0 hsl(from $euiShadowColor h s l / 0.1), 0 -6px 14px 0 hsl(from $euiShadowColor h s l / 0.06);
|
|
13
|
+
$euiShadowUpL: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 -4px 13px 0 hsl(from $euiShadowColor h s l / 0.12), 0 -8px 17px 0 hsl(from $euiShadowColor h s l / 0.07);
|
|
14
|
+
$euiShadowUpXL: 0 0 2px 0 hsl(from $euiShadowColor h s l / 0.16), 0 -5px 16px 0 hsl(from $euiShadowColor h s l / 0.14), 0 -10px 20px 0 hsl(from $euiShadowColor h s l / 0.08);
|
|
15
15
|
|
|
16
|
-
$euiShadowHoverDown:
|
|
17
|
-
$euiShadowHoverXLDown:
|
|
16
|
+
$euiShadowHoverDown: 0 0 2px 0 hsla(from $euiShadowColor h s l / 0.16), 0 2px 7px 0 hsla(from $euiShadowColor h s l / 0.08), 0 4px 11px 0 hsla(from $euiShadowColor h s l / 0.05);
|
|
17
|
+
$euiShadowHoverXLDown: 0 0 2px 0 hsl(from $euiShadowColor h s l/ 0.16), 0 6px 19px 0 hsl(from $euiShadowColor h s l / 0.16), 0 12px 23px 0 hsl(from $euiShadowColor h s l / 0.09);
|
|
18
18
|
|
|
19
|
-
$euiShadowHoverUp:
|
|
20
|
-
$euiShadowHoverXLUp:
|
|
19
|
+
$euiShadowHoverUp: 0 0 2px 0 hsla(from $euiShadowColor h s l / 0.16), 0 -2px 7px 0 hsla(from $euiShadowColor h s l / 0.08), 0 -4px 11px 0 hsla(from $euiShadowColor h s l / 0.05);
|
|
20
|
+
$euiShadowHoverXLUp: 0 0 2px 0 hsl(from $euiShadowColor h s l/ 0.16), 0 -6px 19px 0 hsl(from $euiShadowColor h s l / 0.16), 0 -12px 23px 0 hsl(from $euiShadowColor h s l / 0.09);
|
|
@@ -137,7 +137,6 @@ $euiColorBorderStrongRisk: $euiColorRisk90 !default;
|
|
|
137
137
|
$euiColorBorderStrongDanger: $euiColorDanger90 !default;
|
|
138
138
|
$euiColorBorderStrongText: $euiColorShade90 !default;
|
|
139
139
|
|
|
140
|
-
|
|
141
140
|
// Charts
|
|
142
141
|
$euiColorChartLines: $euiColorShade30 !default;
|
|
143
142
|
$euiColorChartBand: $euiColorShade10 !default;
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* TODO: automatically generate scss variable files
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
|
|
8
7
|
$euiColorWhite: #FFFFFF !default;
|
|
9
8
|
$euiColorBlack: #000000 !default;
|
|
10
9
|
$euiColorMutedBlack: #0E0F12 !default;
|
|
@@ -86,7 +85,7 @@ $euiColorNeutral30: #B5E5F2 !default;
|
|
|
86
85
|
$euiColorNeutral40: #94D8EB !default;
|
|
87
86
|
$euiColorNeutral50: #63C8E3 !default;
|
|
88
87
|
$euiColorNeutral60: #37B8DC !default;
|
|
89
|
-
$euiColorNeutral70: #
|
|
88
|
+
$euiColorNeutral70: #0DA1C9 !default;
|
|
90
89
|
$euiColorNeutral80: #1C8CB5 !default;
|
|
91
90
|
$euiColorNeutral90: #19799F !default;
|
|
92
91
|
$euiColorNeutral100: #0F658A !default;
|
|
@@ -217,5 +216,3 @@ $euiColorShade100Alpha24: rgba($euiColorShade100, 0.24) !default;
|
|
|
217
216
|
$euiColorShade100Alpha70: rgba($euiColorShade100, 0.7) !default;
|
|
218
217
|
|
|
219
218
|
$euiColorShade120Alpha70: rgba($euiColorShade120, 0.7) !default;
|
|
220
|
-
|
|
221
|
-
|