@megafon/ui-core 3.0.0-beta.3 → 3.0.0-beta.7
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 +63 -0
- package/dist/es/colors/Colors.js +13 -0
- package/dist/es/components/Accordion/Accordion.d.ts +11 -3
- package/dist/es/components/Accordion/Accordion.js +14 -7
- package/dist/es/components/Banner/Banner.d.ts +10 -0
- package/dist/es/components/Banner/Banner.js +25 -11
- package/dist/es/components/Banner/BannerDot.d.ts +3 -0
- package/dist/es/components/Banner/BannerDot.js +8 -3
- package/dist/es/components/Button/Button.d.ts +8 -2
- package/dist/es/components/Button/Button.js +14 -6
- package/dist/es/components/Carousel/Carousel.d.ts +9 -2
- package/dist/es/components/Carousel/Carousel.js +14 -8
- package/dist/es/components/Checkbox/Checkbox.d.ts +8 -2
- package/dist/es/components/Checkbox/Checkbox.js +12 -7
- package/dist/es/components/Collapse/Collapse.d.ts +15 -3
- package/dist/es/components/Collapse/Collapse.js +11 -4
- package/dist/es/components/ContentArea/ContentArea.css +8 -59
- package/dist/es/components/ContentArea/ContentArea.d.ts +2 -6
- package/dist/es/components/ContentArea/ContentArea.js +5 -38
- package/dist/es/components/Counter/Counter.css +0 -47
- package/dist/es/components/Grid/Grid.css +0 -47
- package/dist/es/components/Header/Header.d.ts +6 -20
- package/dist/es/components/Header/Header.js +30 -66
- package/dist/es/components/InputLabel/InputLabel.d.ts +3 -0
- package/dist/es/components/InputLabel/InputLabel.js +9 -4
- package/dist/es/components/Link/Link.d.ts +6 -2
- package/dist/es/components/Link/Link.js +28 -4
- package/dist/es/components/Notification/Notification.css +0 -47
- package/dist/es/components/Notification/Notification.d.ts +8 -0
- package/dist/es/components/Notification/Notification.js +21 -4
- package/dist/es/components/Pagination/Pagination.d.ts +9 -2
- package/dist/es/components/Pagination/Pagination.js +20 -3
- package/dist/es/components/Pagination/components/PaginationButton/PaginationButton.css +0 -47
- package/dist/es/components/Pagination/components/PaginationButton/PaginationButton.d.ts +6 -3
- package/dist/es/components/Pagination/components/PaginationButton/PaginationButton.js +11 -6
- package/dist/es/components/Pagination/components/PaginationButtons/PaginationButtons.d.ts +5 -2
- package/dist/es/components/Pagination/components/PaginationButtons/PaginationButtons.js +10 -2
- package/dist/es/components/Pagination/components/PaginationNavigation/PaginationNavigation.css +0 -47
- package/dist/es/components/Pagination/components/PaginationNavigation/PaginationNavigation.d.ts +5 -2
- package/dist/es/components/Pagination/components/PaginationNavigation/PaginationNavigation.js +6 -1
- package/dist/es/components/Paragraph/Paragraph.css +9 -11
- package/dist/es/components/Paragraph/Paragraph.d.ts +12 -12
- package/dist/es/components/Paragraph/Paragraph.js +14 -36
- package/dist/es/components/Preloader/Preloader.d.ts +4 -0
- package/dist/es/components/Preloader/Preloader.js +10 -5
- package/dist/es/components/RadioButton/RadioButton.d.ts +8 -28
- package/dist/es/components/RadioButton/RadioButton.js +50 -85
- package/dist/es/components/Select/Select.d.ts +38 -5
- package/dist/es/components/Select/Select.js +50 -34
- package/dist/es/components/Tabs/Tab.d.ts +5 -2
- package/dist/es/components/Tabs/Tab.js +4 -2
- package/dist/es/components/Tabs/Tabs.d.ts +8 -0
- package/dist/es/components/Tabs/Tabs.js +29 -21
- package/dist/es/components/TextField/TextField.d.ts +8 -0
- package/dist/es/components/TextField/TextField.js +22 -10
- package/dist/es/components/TextLink/TextLink.js +7 -2
- package/dist/es/components/Tile/Tile.d.ts +5 -2
- package/dist/es/components/Tile/Tile.js +1 -1
- package/dist/es/components/Tooltip/Tooltip.d.ts +5 -0
- package/dist/es/components/Tooltip/Tooltip.js +10 -2
- package/dist/lib/colors/Colors.js +10 -0
- package/dist/lib/components/Accordion/Accordion.d.ts +11 -3
- package/dist/lib/components/Accordion/Accordion.js +14 -7
- package/dist/lib/components/Banner/Banner.d.ts +10 -0
- package/dist/lib/components/Banner/Banner.js +25 -10
- package/dist/lib/components/Banner/BannerDot.d.ts +3 -0
- package/dist/lib/components/Banner/BannerDot.js +10 -2
- package/dist/lib/components/Button/Button.d.ts +8 -2
- package/dist/lib/components/Button/Button.js +14 -6
- package/dist/lib/components/Carousel/Carousel.d.ts +9 -2
- package/dist/lib/components/Carousel/Carousel.js +14 -8
- package/dist/lib/components/Checkbox/Checkbox.d.ts +8 -2
- package/dist/lib/components/Checkbox/Checkbox.js +12 -7
- package/dist/lib/components/Collapse/Collapse.d.ts +15 -3
- package/dist/lib/components/Collapse/Collapse.js +13 -4
- package/dist/lib/components/ContentArea/ContentArea.css +8 -59
- package/dist/lib/components/ContentArea/ContentArea.d.ts +2 -6
- package/dist/lib/components/ContentArea/ContentArea.js +5 -41
- package/dist/lib/components/Counter/Counter.css +0 -47
- package/dist/lib/components/Grid/Grid.css +0 -47
- package/dist/lib/components/Header/Header.d.ts +6 -20
- package/dist/lib/components/Header/Header.js +30 -97
- package/dist/lib/components/InputLabel/InputLabel.d.ts +3 -0
- package/dist/lib/components/InputLabel/InputLabel.js +11 -3
- package/dist/lib/components/Link/Link.d.ts +6 -2
- package/dist/lib/components/Link/Link.js +33 -4
- package/dist/lib/components/Notification/Notification.css +0 -47
- package/dist/lib/components/Notification/Notification.d.ts +8 -0
- package/dist/lib/components/Notification/Notification.js +20 -3
- package/dist/lib/components/Pagination/Pagination.d.ts +9 -2
- package/dist/lib/components/Pagination/Pagination.js +20 -2
- package/dist/lib/components/Pagination/components/PaginationButton/PaginationButton.css +0 -47
- package/dist/lib/components/Pagination/components/PaginationButton/PaginationButton.d.ts +6 -3
- package/dist/lib/components/Pagination/components/PaginationButton/PaginationButton.js +11 -5
- package/dist/lib/components/Pagination/components/PaginationButtons/PaginationButtons.d.ts +5 -2
- package/dist/lib/components/Pagination/components/PaginationButtons/PaginationButtons.js +9 -1
- package/dist/lib/components/Pagination/components/PaginationNavigation/PaginationNavigation.css +0 -47
- package/dist/lib/components/Pagination/components/PaginationNavigation/PaginationNavigation.d.ts +5 -2
- package/dist/lib/components/Pagination/components/PaginationNavigation/PaginationNavigation.js +6 -1
- package/dist/lib/components/Paragraph/Paragraph.css +9 -11
- package/dist/lib/components/Paragraph/Paragraph.d.ts +12 -12
- package/dist/lib/components/Paragraph/Paragraph.js +15 -37
- package/dist/lib/components/Preloader/Preloader.d.ts +4 -0
- package/dist/lib/components/Preloader/Preloader.js +10 -4
- package/dist/lib/components/RadioButton/RadioButton.d.ts +8 -28
- package/dist/lib/components/RadioButton/RadioButton.js +51 -117
- package/dist/lib/components/Select/Select.d.ts +38 -5
- package/dist/lib/components/Select/Select.js +50 -34
- package/dist/lib/components/Tabs/Tab.d.ts +5 -2
- package/dist/lib/components/Tabs/Tab.js +4 -2
- package/dist/lib/components/Tabs/Tabs.d.ts +8 -0
- package/dist/lib/components/Tabs/Tabs.js +29 -21
- package/dist/lib/components/TextField/TextField.d.ts +8 -0
- package/dist/lib/components/TextField/TextField.js +20 -9
- package/dist/lib/components/TextLink/TextLink.js +7 -2
- package/dist/lib/components/Tile/Tile.d.ts +5 -2
- package/dist/lib/components/Tile/Tile.js +1 -1
- package/dist/lib/components/Tooltip/Tooltip.d.ts +5 -0
- package/dist/lib/components/Tooltip/Tooltip.js +9 -1
- package/package.json +5 -4
- package/styles/base.less +1 -60
- package/styles/colors.css +60 -0
- package/styles/colorsDark.css +62 -0
- package/styles/base.css +0 -54
|
@@ -79,6 +79,7 @@ var Tooltip = function Tooltip(_ref) {
|
|
|
79
79
|
arrowClassName = _ref$classes.arrow,
|
|
80
80
|
contentClassName = _ref$classes.content,
|
|
81
81
|
contentShadowClassName = _ref$classes.contentShadow,
|
|
82
|
+
dataAttrs = _ref.dataAttrs,
|
|
82
83
|
onOpen = _ref.onOpen,
|
|
83
84
|
onClose = _ref.onClose;
|
|
84
85
|
var currentTrigger = triggerElement.current;
|
|
@@ -241,7 +242,7 @@ var Tooltip = function Tooltip(_ref) {
|
|
|
241
242
|
|
|
242
243
|
return undefined;
|
|
243
244
|
}, [triggerEventName, isOpen, currentTrigger, handleOutsideEvent, handleClick]);
|
|
244
|
-
return /*#__PURE__*/_react["default"].createElement("div", (0, _extends2["default"])({
|
|
245
|
+
return /*#__PURE__*/_react["default"].createElement("div", (0, _extends2["default"])({}, (0, _uiHelpers.filterDataAttrs)(dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.root), {
|
|
245
246
|
className: cn({
|
|
246
247
|
paddings: paddings,
|
|
247
248
|
open: isOpen
|
|
@@ -256,6 +257,9 @@ var Tooltip = function Tooltip(_ref) {
|
|
|
256
257
|
className: cn('arrow-shadow'),
|
|
257
258
|
style: styles.arrow
|
|
258
259
|
}), /*#__PURE__*/_react["default"].createElement(_Tile["default"], {
|
|
260
|
+
dataAttrs: {
|
|
261
|
+
root: dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.content
|
|
262
|
+
},
|
|
259
263
|
className: cn('content', [contentClassName])
|
|
260
264
|
}, children), /*#__PURE__*/_react["default"].createElement(_Tile["default"], {
|
|
261
265
|
shadowLevel: "high",
|
|
@@ -298,6 +302,10 @@ Tooltip.propTypes = {
|
|
|
298
302
|
content: _propTypes["default"].string,
|
|
299
303
|
contentShadow: _propTypes["default"].string
|
|
300
304
|
}),
|
|
305
|
+
dataAttrs: _propTypes["default"].shape({
|
|
306
|
+
root: _propTypes["default"].objectOf(_propTypes["default"].string.isRequired),
|
|
307
|
+
content: _propTypes["default"].objectOf(_propTypes["default"].string.isRequired)
|
|
308
|
+
}),
|
|
301
309
|
onOpen: _propTypes["default"].func,
|
|
302
310
|
onClose: _propTypes["default"].func
|
|
303
311
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@megafon/ui-core",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.7",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"styles"
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "gulp build",
|
|
23
|
+
"cleanDist": "rm -rf dist styles",
|
|
23
24
|
"coverage": "yarn coverage:unit",
|
|
24
25
|
"coverage:unit": "jest --ci --collectCoverage --coverageDirectory=coverage",
|
|
25
26
|
"typecheck": "tsc --noEmit -p .",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"@babel/preset-env": "^7.8.6",
|
|
54
55
|
"@babel/preset-react": "^7.8.3",
|
|
55
56
|
"@babel/preset-typescript": "^7.8.3",
|
|
56
|
-
"@megafon/ui-icons": "^1.0.0-beta.
|
|
57
|
+
"@megafon/ui-icons": "^1.0.0-beta.4",
|
|
57
58
|
"@svgr/core": "^2.4.1",
|
|
58
59
|
"@testing-library/react-hooks": "^7.0.1",
|
|
59
60
|
"@types/enzyme": "^3.10.5",
|
|
@@ -85,7 +86,7 @@
|
|
|
85
86
|
"dependencies": {
|
|
86
87
|
"@babel/runtime": "^7.8.4",
|
|
87
88
|
"@datepicker-react/hooks": "^2.7.0",
|
|
88
|
-
"@megafon/ui-helpers": "^2.0.0-beta.
|
|
89
|
+
"@megafon/ui-helpers": "^2.0.0-beta.4",
|
|
89
90
|
"@popperjs/core": "^2.5.3",
|
|
90
91
|
"core-js": "^3.6.4",
|
|
91
92
|
"date-fns": "^2.16.1",
|
|
@@ -96,5 +97,5 @@
|
|
|
96
97
|
"react-popper": "^2.2.3",
|
|
97
98
|
"swiper": "^6.5.6"
|
|
98
99
|
},
|
|
99
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "29a52b2d41115e8a40731d91a89d88c3e3fd4e9e"
|
|
100
101
|
}
|
package/styles/base.less
CHANGED
|
@@ -1,63 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
// Basic Colors
|
|
3
|
-
--green: #00B956;
|
|
4
|
-
--purple: #731982;
|
|
5
|
-
--base: #FFFFFF;
|
|
6
|
-
--content: #333333;
|
|
7
|
-
--spbSky0: #F6F6F6;
|
|
8
|
-
--spbSky1: #EDEDED;
|
|
9
|
-
--spbSky2: #D8D8D8;
|
|
10
|
-
--spbSky3: #999999;
|
|
11
|
-
|
|
12
|
-
// Secondary Colors
|
|
13
|
-
--warmRedC: #EB5A40;
|
|
14
|
-
--137C: #FFA717;
|
|
15
|
-
--311C: #5BD9E5;
|
|
16
|
-
--reflexBlue: #444189;
|
|
17
|
-
|
|
18
|
-
// System Colors
|
|
19
|
-
--fury: #F62434;
|
|
20
|
-
--systemBlue: #34AAF2;
|
|
21
|
-
--background: #FFFFFF;
|
|
22
|
-
--buttonHoverGreen: #10E272;
|
|
23
|
-
--buttonhoverPurple: #534455;
|
|
24
|
-
--buttonDown: #404D46;
|
|
25
|
-
|
|
26
|
-
// Gradients
|
|
27
|
-
--gradientBasic: linear-gradient(90deg, #01873F 0%, #00B956 74%, #14CD6A 100%);
|
|
28
|
-
--gradientVIP: linear-gradient(90deg, #5B1168 0%, #731982 74%, #821E93 100%);
|
|
29
|
-
--gradientExclusive: linear-gradient(90deg, #2A2674 0%, #444189 74%, #504D93 100%);
|
|
30
|
-
|
|
31
|
-
// Static
|
|
32
|
-
--STCWhite: #FFFFFF;
|
|
33
|
-
--STCBlack: #333333;
|
|
34
|
-
|
|
35
|
-
// Static Opacity
|
|
36
|
-
--STCWhite5: #FFFFFF0D;
|
|
37
|
-
--STCWhite10: #FFFFFF1A;
|
|
38
|
-
--STCWhite20: #FFFFFF33;
|
|
39
|
-
--STCWhite50: #FFFFFF80;
|
|
40
|
-
--STCBlack5: #3333330D;
|
|
41
|
-
--STCBlack10: #3333331A;
|
|
42
|
-
--STCBlack20: #33333333;
|
|
43
|
-
--STCBlack50: #33333380;
|
|
44
|
-
|
|
45
|
-
// Soft (new)
|
|
46
|
-
--green80: #0CDC78;
|
|
47
|
-
--green20: #DDFFEC;
|
|
48
|
-
--purple80: #AA67C1;
|
|
49
|
-
--purple20: #FFEEFF;
|
|
50
|
-
--warmRedC80: #FF765D;
|
|
51
|
-
--warmRedC20: #FFCFC7;
|
|
52
|
-
--137C80: #FFB945;
|
|
53
|
-
--137C20: #FFEDD1;
|
|
54
|
-
--311C80: #62E3FF;
|
|
55
|
-
--311C20: #E1FAFF;
|
|
56
|
-
--reflexBlue80: #554FC9;
|
|
57
|
-
--reflexBlue20: #EBEAFF;
|
|
58
|
-
--fury80: #F8505D;
|
|
59
|
-
--fury20: #FFC5C9;
|
|
60
|
-
}
|
|
1
|
+
@import (reference) 'colors.css';
|
|
61
2
|
|
|
62
3
|
// BREAKPOINTS
|
|
63
4
|
@mobileSmallEnd: 479px;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/* Basic Colors */
|
|
3
|
+
--brandGreen: #00B956;
|
|
4
|
+
--beandPurple: #731982;
|
|
5
|
+
--base: #FFFFFF;
|
|
6
|
+
--content: #333333;
|
|
7
|
+
--spbSky0: #F6F6F6;
|
|
8
|
+
--spbSky1: #EDEDED;
|
|
9
|
+
--spbSky2: #D8D8D8;
|
|
10
|
+
--spbSky3: #999999;
|
|
11
|
+
|
|
12
|
+
/* Secondary Colors */
|
|
13
|
+
--warmRedC: #EB5A40;
|
|
14
|
+
--137C: #FFA717;
|
|
15
|
+
--311C: #5BD9E5;
|
|
16
|
+
--reflexBlue: #444189;
|
|
17
|
+
|
|
18
|
+
/* System Colors */
|
|
19
|
+
--fury: #F62434;
|
|
20
|
+
--systemBlue: #34AAF2;
|
|
21
|
+
--background: #FFFFFF;
|
|
22
|
+
--buttonHoverGreen: #10E272;
|
|
23
|
+
--buttonhoverPurple: #534455;
|
|
24
|
+
--buttonDown: #404D46;
|
|
25
|
+
|
|
26
|
+
/* Gradients */
|
|
27
|
+
--gradientBasic: linear-gradient(90deg, #01873F 0%, #00B956 74%, #14CD6A 100%);
|
|
28
|
+
--gradientVIP: linear-gradient(90deg, #5B1168 0%, #731982 74%, #821E93 100%);
|
|
29
|
+
--gradientExclusive: linear-gradient(90deg, #2A2674 0%, #444189 74%, #504D93 100%);
|
|
30
|
+
|
|
31
|
+
/* Static */
|
|
32
|
+
--stcWhite: #FFFFFF;
|
|
33
|
+
--stcBlack: #333333;
|
|
34
|
+
|
|
35
|
+
/* Static Opacity */
|
|
36
|
+
--stcWhite5: #FFFFFF0D;
|
|
37
|
+
--stcWhite10: #FFFFFF1A;
|
|
38
|
+
--stcWhite20: #FFFFFF33;
|
|
39
|
+
--stcWhite50: #FFFFFF80;
|
|
40
|
+
--stcBlack5: #3333330D;
|
|
41
|
+
--stcBlack10: #3333331A;
|
|
42
|
+
--stcBlack20: #33333333;
|
|
43
|
+
--stcBlack50: #33333380;
|
|
44
|
+
|
|
45
|
+
/* Soft (new) */
|
|
46
|
+
--brandGreen80: #0CDC78;
|
|
47
|
+
--brandGreen20: #DDFFEC;
|
|
48
|
+
--brandPurple80: #AA67C1;
|
|
49
|
+
--brandPurple20: #FFEEFF;
|
|
50
|
+
--warmRedC80: #FF765D;
|
|
51
|
+
--warmRedC20: #FFCFC7;
|
|
52
|
+
--137C80: #FFB945;
|
|
53
|
+
--137C20: #FFEDD1;
|
|
54
|
+
--311C80: #62E3FF;
|
|
55
|
+
--311C20: #E1FAFF;
|
|
56
|
+
--reflexBlue80: #554FC9;
|
|
57
|
+
--reflexBlue20: #EBEAFF;
|
|
58
|
+
--fury80: #F8505D;
|
|
59
|
+
--fury20: #FFC5C9;
|
|
60
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
@media (prefers-color-scheme: dark) {
|
|
2
|
+
:root {
|
|
3
|
+
/* Basic Colors */
|
|
4
|
+
--brandGreen: #00B956;
|
|
5
|
+
--brandPurple: #731982;
|
|
6
|
+
--base: #333333;
|
|
7
|
+
--content: #FFFFFF;
|
|
8
|
+
--spbSky0: #3D3D3D;
|
|
9
|
+
--spbSky1: #454545;
|
|
10
|
+
--spbSky2: #595959;
|
|
11
|
+
--spbSky3: #999999;
|
|
12
|
+
|
|
13
|
+
/* Secondary Colors */
|
|
14
|
+
--warmRedC: #EB5A40;
|
|
15
|
+
--137C: #FFA717;
|
|
16
|
+
--311C: #5BD9E5;
|
|
17
|
+
--reflexBlue: #444189;
|
|
18
|
+
|
|
19
|
+
/* System Colors */
|
|
20
|
+
--fury: #F62434;
|
|
21
|
+
--systemBlue: #34AAF2;
|
|
22
|
+
--background: #1F1F1F;
|
|
23
|
+
--buttonHoverGreen: #10E272;
|
|
24
|
+
--buttonhoverPurple: #534455;
|
|
25
|
+
--buttonDown: #404D46;
|
|
26
|
+
|
|
27
|
+
/* Gradients */
|
|
28
|
+
--gradientBasic: linear-gradient(90deg, #01873F 0%, #00B956 74%, #14CD6A 100%);
|
|
29
|
+
--gradientVIP: linear-gradient(90deg, #5B1168 0%, #731982 74%, #821E93 100%);
|
|
30
|
+
--gradientExclusive: linear-gradient(90deg, #2A2674 0%, #444189 74%, #504D93 100%);
|
|
31
|
+
|
|
32
|
+
/* Static */
|
|
33
|
+
--stcWhite: #FFFFFF;
|
|
34
|
+
--stcBlack: #333333;
|
|
35
|
+
|
|
36
|
+
/* Static Opacity */
|
|
37
|
+
--stcWhite5: #FFFFFF0D;
|
|
38
|
+
--stcWhite10: #FFFFFF1A;
|
|
39
|
+
--stcWhite20: #FFFFFF33;
|
|
40
|
+
--stcWhite50: #FFFFFF80;
|
|
41
|
+
--stcBlack5: #3333330D;
|
|
42
|
+
--stcBlack10: #3333331A;
|
|
43
|
+
--stcBlack20: #33333333;
|
|
44
|
+
--stcBlack50: #33333380;
|
|
45
|
+
|
|
46
|
+
/* Soft (new) */
|
|
47
|
+
--brandGreen80: #0CDC78;
|
|
48
|
+
--brandGreen20: #DDFFEC;
|
|
49
|
+
--brandPurple80: #AA67C1;
|
|
50
|
+
--brandPurple20: #FFEEFF;
|
|
51
|
+
--warmRedC80: #FF765D;
|
|
52
|
+
--warmRedC20: #FFCFC7;
|
|
53
|
+
--137C80: #FFB945;
|
|
54
|
+
--137C20: #FFEDD1;
|
|
55
|
+
--311C80: #62E3FF;
|
|
56
|
+
--311C20: #E1FAFF;
|
|
57
|
+
--reflexBlue80: #554FC9;
|
|
58
|
+
--reflexBlue20: #EBEAFF;
|
|
59
|
+
--fury80: #F8505D;
|
|
60
|
+
--fury20: #FFC5C9;
|
|
61
|
+
}
|
|
62
|
+
}
|
package/styles/base.css
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--green: #00B956;
|
|
3
|
-
--purple: #731982;
|
|
4
|
-
--base: #FFFFFF;
|
|
5
|
-
--content: #333333;
|
|
6
|
-
--spbSky0: #F6F6F6;
|
|
7
|
-
--spbSky1: #EDEDED;
|
|
8
|
-
--spbSky2: #D8D8D8;
|
|
9
|
-
--spbSky3: #999999;
|
|
10
|
-
--warmRedC: #EB5A40;
|
|
11
|
-
--137C: #FFA717;
|
|
12
|
-
--311C: #5BD9E5;
|
|
13
|
-
--reflexBlue: #444189;
|
|
14
|
-
--fury: #F62434;
|
|
15
|
-
--systemBlue: #34AAF2;
|
|
16
|
-
--background: #FFFFFF;
|
|
17
|
-
--buttonHoverGreen: #10E272;
|
|
18
|
-
--buttonhoverPurple: #534455;
|
|
19
|
-
--buttonDown: #404D46;
|
|
20
|
-
--gradientBasic: linear-gradient(90deg, #01873F 0%, #00B956 74%, #14CD6A 100%);
|
|
21
|
-
--gradientVIP: linear-gradient(90deg, #5B1168 0%, #731982 74%, #821E93 100%);
|
|
22
|
-
--gradientExclusive: linear-gradient(90deg, #2A2674 0%, #444189 74%, #504D93 100%);
|
|
23
|
-
--STCWhite: #FFFFFF;
|
|
24
|
-
--STCBlack: #333333;
|
|
25
|
-
--STCWhite5: #FFFFFF0D;
|
|
26
|
-
--STCWhite10: #FFFFFF1A;
|
|
27
|
-
--STCWhite20: #FFFFFF33;
|
|
28
|
-
--STCWhite50: #FFFFFF80;
|
|
29
|
-
--STCBlack5: #3333330D;
|
|
30
|
-
--STCBlack10: #3333331A;
|
|
31
|
-
--STCBlack20: #33333333;
|
|
32
|
-
--STCBlack50: #33333380;
|
|
33
|
-
--green80: #0CDC78;
|
|
34
|
-
--green20: #DDFFEC;
|
|
35
|
-
--purple80: #AA67C1;
|
|
36
|
-
--purple20: #FFEEFF;
|
|
37
|
-
--warmRedC80: #FF765D;
|
|
38
|
-
--warmRedC20: #FFCFC7;
|
|
39
|
-
--137C80: #FFB945;
|
|
40
|
-
--137C20: #FFEDD1;
|
|
41
|
-
--311C80: #62E3FF;
|
|
42
|
-
--311C20: #E1FAFF;
|
|
43
|
-
--reflexBlue80: #554FC9;
|
|
44
|
-
--reflexBlue20: #EBEAFF;
|
|
45
|
-
--fury80: #F8505D;
|
|
46
|
-
--fury20: #FFC5C9;
|
|
47
|
-
}
|
|
48
|
-
h1,
|
|
49
|
-
h2,
|
|
50
|
-
h3,
|
|
51
|
-
h4,
|
|
52
|
-
h5 {
|
|
53
|
-
margin: 0;
|
|
54
|
-
}
|