@spaced-out/ui-design-system 0.0.8 → 0.0.9
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 +9 -0
- package/design-tokens/color/app-color.json +15 -0
- package/lib/components/Button/Button.module.css +2 -0
- package/lib/components/InContextAlert/InContextAlert.module.css +16 -0
- package/lib/components/TabList/TabList.js +1 -0
- package/lib/components/TabList/TabList.js.flow +1 -0
- package/lib/components/Text/Text.js +26 -14
- package/lib/components/Text/Text.js.flow +14 -0
- package/lib/components/Text/index.js +6 -0
- package/lib/components/Text/index.js.flow +1 -0
- package/lib/styles/typography.module.css +6 -0
- package/lib/styles/variables/_color.css +10 -0
- package/lib/styles/variables/_color.js +11 -1
- package/lib/styles/variables/_color.js.flow +10 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.9](https://github.com/spaced-out/ui-design-system/compare/v0.0.8...v0.0.9) (2022-12-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* border changes for in-context alerts ([af20d4b](https://github.com/spaced-out/ui-design-system/commit/af20d4b4ef46d2b6c10dea72fcd5a9942ceb7ef0))
|
|
11
|
+
* button and text enhancements ([38968b2](https://github.com/spaced-out/ui-design-system/commit/38968b202c6a84e3fe9ed362b62e925436d8a5e8))
|
|
12
|
+
* tab dropdown fix ([204bf48](https://github.com/spaced-out/ui-design-system/commit/204bf4832d404982a937c22d9d148f5ff7dfec42))
|
|
13
|
+
|
|
5
14
|
### [0.0.8](https://github.com/spaced-out/ui-design-system/compare/v0.0.7...v0.0.8) (2022-12-12)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -153,6 +153,9 @@
|
|
|
153
153
|
"neutral": {
|
|
154
154
|
"value": "{baseColor.indigo.500.value}"
|
|
155
155
|
},
|
|
156
|
+
"neutral.lighter": {
|
|
157
|
+
"value": "{baseColor.indigo.100.value}"
|
|
158
|
+
},
|
|
156
159
|
"neutral.lightest": {
|
|
157
160
|
"value": "{baseColor.indigo.50.value}"
|
|
158
161
|
},
|
|
@@ -168,6 +171,9 @@
|
|
|
168
171
|
"success": {
|
|
169
172
|
"value": "{baseColor.green.500.value}"
|
|
170
173
|
},
|
|
174
|
+
"success.lighter": {
|
|
175
|
+
"value": "{baseColor.green.100.value}"
|
|
176
|
+
},
|
|
171
177
|
"success.lightest": {
|
|
172
178
|
"value": "{baseColor.green.50.value}"
|
|
173
179
|
},
|
|
@@ -183,6 +189,9 @@
|
|
|
183
189
|
"information": {
|
|
184
190
|
"value": "{baseColor.blue.500.value}"
|
|
185
191
|
},
|
|
192
|
+
"information.lighter": {
|
|
193
|
+
"value": "{baseColor.blue.100.value}"
|
|
194
|
+
},
|
|
186
195
|
"information.lightest": {
|
|
187
196
|
"value": "{baseColor.blue.50.value}"
|
|
188
197
|
},
|
|
@@ -198,6 +207,9 @@
|
|
|
198
207
|
"warning": {
|
|
199
208
|
"value": "{baseColor.orange.500.value}"
|
|
200
209
|
},
|
|
210
|
+
"warning.lighter": {
|
|
211
|
+
"value": "{baseColor.orange.100.value}"
|
|
212
|
+
},
|
|
201
213
|
"warning.lightest": {
|
|
202
214
|
"value": "{baseColor.orange.50.value}"
|
|
203
215
|
},
|
|
@@ -213,6 +225,9 @@
|
|
|
213
225
|
"danger": {
|
|
214
226
|
"value": "{baseColor.red.500.value}"
|
|
215
227
|
},
|
|
228
|
+
"danger.lighter": {
|
|
229
|
+
"value": "{baseColor.red.100.value}"
|
|
230
|
+
},
|
|
216
231
|
"danger.lightest": {
|
|
217
232
|
"value": "{baseColor.red.50.value}"
|
|
218
233
|
},
|
|
@@ -146,6 +146,7 @@ button {
|
|
|
146
146
|
|
|
147
147
|
.secondary {
|
|
148
148
|
color: colorTextPrimary;
|
|
149
|
+
border: borderWidthPrimary solid colorButtonFillPrimaryEnabled;
|
|
149
150
|
background-color: colorButtonFillSecondaryEnabled;
|
|
150
151
|
}
|
|
151
152
|
|
|
@@ -223,4 +224,5 @@ button {
|
|
|
223
224
|
pointer-events: none;
|
|
224
225
|
color: colorTextDisabled;
|
|
225
226
|
background-color: colorFillDisabled;
|
|
227
|
+
border: initial;
|
|
226
228
|
}
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
@value (borderRadiusXSmall) from '../../styles/variables/_border.css';
|
|
2
2
|
@value (colorFillPrimary,
|
|
3
3
|
colorTextPrimary,
|
|
4
|
+
colorNeutralLighter,
|
|
4
5
|
colorNeutralLightest,
|
|
6
|
+
colorSuccessLighter,
|
|
5
7
|
colorSuccessLightest,
|
|
8
|
+
colorInformationLighter,
|
|
6
9
|
colorInformationLightest,
|
|
10
|
+
colorWarningLighter,
|
|
7
11
|
colorWarningLightest,
|
|
12
|
+
colorDangerLighter,
|
|
8
13
|
colorDangerLightest
|
|
9
14
|
) from '../../styles/variables/_color.css';
|
|
10
15
|
|
|
@@ -16,6 +21,10 @@
|
|
|
16
21
|
sizeFluid
|
|
17
22
|
) from '../../styles/variables/_size.css';
|
|
18
23
|
|
|
24
|
+
@value (
|
|
25
|
+
borderWidthPrimary
|
|
26
|
+
) from '../../styles/variables/_border.css';
|
|
27
|
+
|
|
19
28
|
.alertContainer {
|
|
20
29
|
display: flex;
|
|
21
30
|
flex-direction: row;
|
|
@@ -26,26 +35,33 @@
|
|
|
26
35
|
width: sizeFluid;
|
|
27
36
|
word-break: normal;
|
|
28
37
|
overflow-wrap: anywhere;
|
|
38
|
+
border-width: borderWidthPrimary;
|
|
39
|
+
border-style: solid;
|
|
29
40
|
}
|
|
30
41
|
|
|
31
42
|
.neutral {
|
|
32
43
|
background-color: colorNeutralLightest;
|
|
44
|
+
border-color: colorNeutralLighter;
|
|
33
45
|
}
|
|
34
46
|
|
|
35
47
|
.success {
|
|
36
48
|
background-color: colorSuccessLightest;
|
|
49
|
+
border-color: colorSuccessLighter;
|
|
37
50
|
}
|
|
38
51
|
|
|
39
52
|
.information {
|
|
40
53
|
background-color: colorInformationLightest;
|
|
54
|
+
border-color: colorInformationLighter;
|
|
41
55
|
}
|
|
42
56
|
|
|
43
57
|
.warning {
|
|
44
58
|
background-color: colorWarningLightest;
|
|
59
|
+
border-color: colorWarningLighter;
|
|
45
60
|
}
|
|
46
61
|
|
|
47
62
|
.danger {
|
|
48
63
|
background-color: colorDangerLightest;
|
|
64
|
+
border-color: colorDangerLighter;
|
|
49
65
|
}
|
|
50
66
|
|
|
51
67
|
.closeIcon {
|
|
@@ -87,6 +87,7 @@ const TabList = _ref => {
|
|
|
87
87
|
return false;
|
|
88
88
|
})();
|
|
89
89
|
const tabDropDownNode = menuOptions.length ? /*#__PURE__*/React.createElement(_TabDropdown.TabDropdown, {
|
|
90
|
+
key: 'tabDropdown' + menuOptions.length,
|
|
90
91
|
size: size,
|
|
91
92
|
onOptionSelect: menuOnSelect,
|
|
92
93
|
props: {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.TitleMedium = exports.SubTitleSmall = exports.SubTitleMedium = exports.SubTitleLarge = exports.SubTitleExtraSmall = exports.JumboMedium = exports.FormLabelSmall = exports.FormLabelMedium = exports.FormInputSmall = exports.FormInputMedium = exports.ButtonTextSmall = exports.ButtonTextMedium = exports.BodySmall = exports.BodyMedium = exports.BodyLarge = void 0;
|
|
6
|
+
exports.TitleMedium = exports.SubTitleSmall = exports.SubTitleMedium = exports.SubTitleLarge = exports.SubTitleExtraSmall = exports.JumboMedium = exports.FormLabelSmall = exports.FormLabelMedium = exports.FormInputSmall = exports.FormInputMedium = exports.ButtonTextSmall = exports.ButtonTextMedium = exports.ButtonTextExtraSmall = exports.BodySmall = exports.BodyMedium = exports.BodyLarge = void 0;
|
|
7
7
|
var React = _interopRequireWildcard(require("react"));
|
|
8
8
|
var _typography = require("../../types/typography");
|
|
9
9
|
var _classify = _interopRequireDefault(require("../../utils/classify"));
|
|
@@ -108,85 +108,97 @@ const ButtonTextSmall = _ref8 => {
|
|
|
108
108
|
}), children);
|
|
109
109
|
};
|
|
110
110
|
exports.ButtonTextSmall = ButtonTextSmall;
|
|
111
|
-
const
|
|
111
|
+
const ButtonTextExtraSmall = _ref9 => {
|
|
112
112
|
let {
|
|
113
113
|
color = _typography.TEXT_COLORS.primary,
|
|
114
114
|
children,
|
|
115
115
|
className,
|
|
116
116
|
...props
|
|
117
117
|
} = _ref9;
|
|
118
|
+
return /*#__PURE__*/React.createElement("span", _extends({}, props, {
|
|
119
|
+
className: (0, _classify.default)(_typographyModule.default.buttonTextExtraSmall, _typographyModule.default[color], className)
|
|
120
|
+
}), children);
|
|
121
|
+
};
|
|
122
|
+
exports.ButtonTextExtraSmall = ButtonTextExtraSmall;
|
|
123
|
+
const FormInputMedium = _ref10 => {
|
|
124
|
+
let {
|
|
125
|
+
color = _typography.TEXT_COLORS.primary,
|
|
126
|
+
children,
|
|
127
|
+
className,
|
|
128
|
+
...props
|
|
129
|
+
} = _ref10;
|
|
118
130
|
return /*#__PURE__*/React.createElement("p", _extends({}, props, {
|
|
119
131
|
className: (0, _classify.default)(_typographyModule.default.formInputMedium, _typographyModule.default[color], className)
|
|
120
132
|
}), children);
|
|
121
133
|
};
|
|
122
134
|
exports.FormInputMedium = FormInputMedium;
|
|
123
|
-
const FormInputSmall =
|
|
135
|
+
const FormInputSmall = _ref11 => {
|
|
124
136
|
let {
|
|
125
137
|
color = _typography.TEXT_COLORS.primary,
|
|
126
138
|
children,
|
|
127
139
|
className,
|
|
128
140
|
...props
|
|
129
|
-
} =
|
|
141
|
+
} = _ref11;
|
|
130
142
|
return /*#__PURE__*/React.createElement("p", _extends({}, props, {
|
|
131
143
|
className: (0, _classify.default)(_typographyModule.default.formInputSmall, _typographyModule.default[color], className)
|
|
132
144
|
}), children);
|
|
133
145
|
};
|
|
134
146
|
exports.FormInputSmall = FormInputSmall;
|
|
135
|
-
const BodyLarge =
|
|
147
|
+
const BodyLarge = _ref12 => {
|
|
136
148
|
let {
|
|
137
149
|
color = _typography.TEXT_COLORS.primary,
|
|
138
150
|
children,
|
|
139
151
|
className,
|
|
140
152
|
...props
|
|
141
|
-
} =
|
|
153
|
+
} = _ref12;
|
|
142
154
|
return /*#__PURE__*/React.createElement("p", _extends({}, props, {
|
|
143
155
|
className: (0, _classify.default)(_typographyModule.default.bodyLarge, _typographyModule.default[color], className)
|
|
144
156
|
}), children);
|
|
145
157
|
};
|
|
146
158
|
exports.BodyLarge = BodyLarge;
|
|
147
|
-
const BodyMedium =
|
|
159
|
+
const BodyMedium = _ref13 => {
|
|
148
160
|
let {
|
|
149
161
|
color = _typography.TEXT_COLORS.primary,
|
|
150
162
|
children,
|
|
151
163
|
className,
|
|
152
164
|
...props
|
|
153
|
-
} =
|
|
165
|
+
} = _ref13;
|
|
154
166
|
return /*#__PURE__*/React.createElement("p", _extends({}, props, {
|
|
155
167
|
className: (0, _classify.default)(_typographyModule.default.bodyMedium, _typographyModule.default[color], className)
|
|
156
168
|
}), children);
|
|
157
169
|
};
|
|
158
170
|
exports.BodyMedium = BodyMedium;
|
|
159
|
-
const BodySmall =
|
|
171
|
+
const BodySmall = _ref14 => {
|
|
160
172
|
let {
|
|
161
173
|
color = _typography.TEXT_COLORS.primary,
|
|
162
174
|
children,
|
|
163
175
|
className,
|
|
164
176
|
...props
|
|
165
|
-
} =
|
|
177
|
+
} = _ref14;
|
|
166
178
|
return /*#__PURE__*/React.createElement("p", _extends({}, props, {
|
|
167
179
|
className: (0, _classify.default)(_typographyModule.default.bodySmall, _typographyModule.default[color], className)
|
|
168
180
|
}), children);
|
|
169
181
|
};
|
|
170
182
|
exports.BodySmall = BodySmall;
|
|
171
|
-
const FormLabelMedium =
|
|
183
|
+
const FormLabelMedium = _ref15 => {
|
|
172
184
|
let {
|
|
173
185
|
color = _typography.TEXT_COLORS.primary,
|
|
174
186
|
children,
|
|
175
187
|
className,
|
|
176
188
|
...props
|
|
177
|
-
} =
|
|
189
|
+
} = _ref15;
|
|
178
190
|
return /*#__PURE__*/React.createElement("span", _extends({}, props, {
|
|
179
191
|
className: (0, _classify.default)(_typographyModule.default.formLabelMedium, _typographyModule.default[color], className)
|
|
180
192
|
}), children);
|
|
181
193
|
};
|
|
182
194
|
exports.FormLabelMedium = FormLabelMedium;
|
|
183
|
-
const FormLabelSmall =
|
|
195
|
+
const FormLabelSmall = _ref16 => {
|
|
184
196
|
let {
|
|
185
197
|
color = _typography.TEXT_COLORS.primary,
|
|
186
198
|
children,
|
|
187
199
|
className,
|
|
188
200
|
...props
|
|
189
|
-
} =
|
|
201
|
+
} = _ref16;
|
|
190
202
|
return /*#__PURE__*/React.createElement("span", _extends({}, props, {
|
|
191
203
|
className: (0, _classify.default)(_typographyModule.default.formLabelSmall, _typographyModule.default[color], className)
|
|
192
204
|
}), children);
|
|
@@ -116,6 +116,20 @@ export const ButtonTextSmall = ({
|
|
|
116
116
|
</span>
|
|
117
117
|
);
|
|
118
118
|
|
|
119
|
+
export const ButtonTextExtraSmall = ({
|
|
120
|
+
color = TEXT_COLORS.primary,
|
|
121
|
+
children,
|
|
122
|
+
className,
|
|
123
|
+
...props
|
|
124
|
+
}: TextProps): React.Node => (
|
|
125
|
+
<span
|
|
126
|
+
{...props}
|
|
127
|
+
className={classify(css.buttonTextExtraSmall, css[color], className)}
|
|
128
|
+
>
|
|
129
|
+
{children}
|
|
130
|
+
</span>
|
|
131
|
+
);
|
|
132
|
+
|
|
119
133
|
export const FormInputMedium = ({
|
|
120
134
|
color = TEXT_COLORS.primary,
|
|
121
135
|
children,
|
|
@@ -21,6 +21,12 @@ Object.defineProperty(exports, "BodySmall", {
|
|
|
21
21
|
return _Text.BodySmall;
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
|
+
Object.defineProperty(exports, "ButtonTextExtraSmall", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () {
|
|
27
|
+
return _Text.ButtonTextExtraSmall;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
24
30
|
Object.defineProperty(exports, "ButtonTextMedium", {
|
|
25
31
|
enumerable: true,
|
|
26
32
|
get: function () {
|
|
@@ -103,6 +103,12 @@
|
|
|
103
103
|
letter-spacing: fontLetterSpacing1;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
.buttonTextExtraSmall {
|
|
107
|
+
composes: baseType;
|
|
108
|
+
font-size: fontSize12;
|
|
109
|
+
letter-spacing: fontLetterSpacing1;
|
|
110
|
+
}
|
|
111
|
+
|
|
106
112
|
.formInputMedium {
|
|
107
113
|
composes: baseType;
|
|
108
114
|
font-size: fontSize14;
|
|
@@ -84,6 +84,8 @@
|
|
|
84
84
|
|
|
85
85
|
@value colorNeutral: #706f9b;
|
|
86
86
|
|
|
87
|
+
@value colorNeutralLighter: #d3d2e0;
|
|
88
|
+
|
|
87
89
|
@value colorNeutralLightest: #f1f1f5;
|
|
88
90
|
|
|
89
91
|
@value colorNeutralLight: #bdbdd1;
|
|
@@ -94,6 +96,8 @@
|
|
|
94
96
|
|
|
95
97
|
@value colorSuccess: #03964d;
|
|
96
98
|
|
|
99
|
+
@value colorSuccessLighter: #b1dec8;
|
|
100
|
+
|
|
97
101
|
@value colorSuccessLightest: #e6f5ed;
|
|
98
102
|
|
|
99
103
|
@value colorSuccessLight: #8bcfad;
|
|
@@ -104,6 +108,8 @@
|
|
|
104
108
|
|
|
105
109
|
@value colorInformation: #0769f0;
|
|
106
110
|
|
|
111
|
+
@value colorInformationLighter: #b2d1fa;
|
|
112
|
+
|
|
107
113
|
@value colorInformationLightest: #e6f0fe;
|
|
108
114
|
|
|
109
115
|
@value colorInformationLight: #8dbaf8;
|
|
@@ -114,6 +120,8 @@
|
|
|
114
120
|
|
|
115
121
|
@value colorWarning: #df7e0c;
|
|
116
122
|
|
|
123
|
+
@value colorWarningLighter: #f5d7b4;
|
|
124
|
+
|
|
117
125
|
@value colorWarningLightest: #fcf2e7;
|
|
118
126
|
|
|
119
127
|
@value colorWarningLight: #f0c48f;
|
|
@@ -124,6 +132,8 @@
|
|
|
124
132
|
|
|
125
133
|
@value colorDanger: #e31c4c;
|
|
126
134
|
|
|
135
|
+
@value colorDangerLighter: #f6b9c8;
|
|
136
|
+
|
|
127
137
|
@value colorDangerLightest: #fce8ed;
|
|
128
138
|
|
|
129
139
|
@value colorDangerLight: #f297ad;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.colorWarningLightest = exports.colorWarningLight = exports.colorWarningDarkest = exports.colorWarningDark = exports.colorWarning = exports.colorTooltipFill = exports.colorTextWarning = exports.colorTextTertiary = exports.colorTextSuccess = exports.colorTextSelected = exports.colorTextSecondary = exports.colorTextPrimary = exports.colorTextNeutral = exports.colorTextInverseSecondary = exports.colorTextInversePrimary = exports.colorTextInformation = exports.colorTextDisabled = exports.colorTextDanger = exports.colorSuccessLightest = exports.colorSuccessLight = exports.colorSuccessDarkest = exports.colorSuccessDark = exports.colorSuccess = exports.colorNeutralLightest = exports.colorNeutralLight = exports.colorNeutralDarkest = exports.colorNeutralDark = exports.colorNeutral = exports.colorInformationLightest = exports.colorInformationLight = exports.colorInformationDarkest = exports.colorInformationDark = exports.colorInformation = exports.colorGrayLightest = exports.colorFocusPrimary = exports.colorFocusDanger = exports.colorFillSecondary = exports.colorFillPrimary = exports.colorFillNone = exports.colorFillDisabled = exports.colorDangerLightest = exports.colorDangerLight = exports.colorDangerDarkest = exports.colorDangerDark = exports.colorDanger = exports.colorButtonFillTertiaryPressed = exports.colorButtonFillTertiaryHovered = exports.colorButtonFillTertiaryEnabled = exports.colorButtonFillSecondaryPressed = exports.colorButtonFillSecondaryHovered = exports.colorButtonFillSecondaryEnabled = exports.colorButtonFillPrimaryPressed = exports.colorButtonFillPrimaryHovered = exports.colorButtonFillPrimaryEnabled = exports.colorButtonFillGhostPressed = exports.colorButtonFillGhostHovered = exports.colorButtonFillGhostEnabled = exports.colorButtonFillDangerPressed = exports.colorButtonFillDangerHovered = exports.colorButtonFillDangerEnabled = exports.colorBorderSecondary = exports.colorBorderPrimary = exports.colorBorderDanger = exports.colorBackgroundTertiary = exports.colorBackgroundSecondary = exports.colorBackgroundPrimary = exports.colorBackdropFill = void 0;
|
|
6
|
+
exports.colorWarningLightest = exports.colorWarningLighter = exports.colorWarningLight = exports.colorWarningDarkest = exports.colorWarningDark = exports.colorWarning = exports.colorTooltipFill = exports.colorTextWarning = exports.colorTextTertiary = exports.colorTextSuccess = exports.colorTextSelected = exports.colorTextSecondary = exports.colorTextPrimary = exports.colorTextNeutral = exports.colorTextInverseSecondary = exports.colorTextInversePrimary = exports.colorTextInformation = exports.colorTextDisabled = exports.colorTextDanger = exports.colorSuccessLightest = exports.colorSuccessLighter = exports.colorSuccessLight = exports.colorSuccessDarkest = exports.colorSuccessDark = exports.colorSuccess = exports.colorNeutralLightest = exports.colorNeutralLighter = exports.colorNeutralLight = exports.colorNeutralDarkest = exports.colorNeutralDark = exports.colorNeutral = exports.colorInformationLightest = exports.colorInformationLighter = exports.colorInformationLight = exports.colorInformationDarkest = exports.colorInformationDark = exports.colorInformation = exports.colorGrayLightest = exports.colorFocusPrimary = exports.colorFocusDanger = exports.colorFillSecondary = exports.colorFillPrimary = exports.colorFillNone = exports.colorFillDisabled = exports.colorDangerLightest = exports.colorDangerLighter = exports.colorDangerLight = exports.colorDangerDarkest = exports.colorDangerDark = exports.colorDanger = exports.colorButtonFillTertiaryPressed = exports.colorButtonFillTertiaryHovered = exports.colorButtonFillTertiaryEnabled = exports.colorButtonFillSecondaryPressed = exports.colorButtonFillSecondaryHovered = exports.colorButtonFillSecondaryEnabled = exports.colorButtonFillPrimaryPressed = exports.colorButtonFillPrimaryHovered = exports.colorButtonFillPrimaryEnabled = exports.colorButtonFillGhostPressed = exports.colorButtonFillGhostHovered = exports.colorButtonFillGhostEnabled = exports.colorButtonFillDangerPressed = exports.colorButtonFillDangerHovered = exports.colorButtonFillDangerEnabled = exports.colorBorderSecondary = exports.colorBorderPrimary = exports.colorBorderDanger = exports.colorBackgroundTertiary = exports.colorBackgroundSecondary = exports.colorBackgroundPrimary = exports.colorBackdropFill = void 0;
|
|
7
7
|
|
|
8
8
|
const colorTextPrimary = '#17172A';
|
|
9
9
|
exports.colorTextPrimary = colorTextPrimary;
|
|
@@ -91,6 +91,8 @@ const colorGrayLightest = '#EBEBEB';
|
|
|
91
91
|
exports.colorGrayLightest = colorGrayLightest;
|
|
92
92
|
const colorNeutral = '#706f9b';
|
|
93
93
|
exports.colorNeutral = colorNeutral;
|
|
94
|
+
const colorNeutralLighter = '#d3d2e0';
|
|
95
|
+
exports.colorNeutralLighter = colorNeutralLighter;
|
|
94
96
|
const colorNeutralLightest = '#f1f1f5';
|
|
95
97
|
exports.colorNeutralLightest = colorNeutralLightest;
|
|
96
98
|
const colorNeutralLight = '#bdbdd1';
|
|
@@ -101,6 +103,8 @@ const colorNeutralDarkest = '#2C2C47';
|
|
|
101
103
|
exports.colorNeutralDarkest = colorNeutralDarkest;
|
|
102
104
|
const colorSuccess = '#03964d';
|
|
103
105
|
exports.colorSuccess = colorSuccess;
|
|
106
|
+
const colorSuccessLighter = '#b1dec8';
|
|
107
|
+
exports.colorSuccessLighter = colorSuccessLighter;
|
|
104
108
|
const colorSuccessLightest = '#e6f5ed';
|
|
105
109
|
exports.colorSuccessLightest = colorSuccessLightest;
|
|
106
110
|
const colorSuccessLight = '#8bcfad';
|
|
@@ -111,6 +115,8 @@ const colorSuccessDarkest = '#013f20';
|
|
|
111
115
|
exports.colorSuccessDarkest = colorSuccessDarkest;
|
|
112
116
|
const colorInformation = '#0769f0';
|
|
113
117
|
exports.colorInformation = colorInformation;
|
|
118
|
+
const colorInformationLighter = '#b2d1fa';
|
|
119
|
+
exports.colorInformationLighter = colorInformationLighter;
|
|
114
120
|
const colorInformationLightest = '#e6f0fe';
|
|
115
121
|
exports.colorInformationLightest = colorInformationLightest;
|
|
116
122
|
const colorInformationLight = '#8dbaf8';
|
|
@@ -121,6 +127,8 @@ const colorInformationDarkest = '#032c65';
|
|
|
121
127
|
exports.colorInformationDarkest = colorInformationDarkest;
|
|
122
128
|
const colorWarning = '#df7e0c';
|
|
123
129
|
exports.colorWarning = colorWarning;
|
|
130
|
+
const colorWarningLighter = '#f5d7b4';
|
|
131
|
+
exports.colorWarningLighter = colorWarningLighter;
|
|
124
132
|
const colorWarningLightest = '#fcf2e7';
|
|
125
133
|
exports.colorWarningLightest = colorWarningLightest;
|
|
126
134
|
const colorWarningLight = '#f0c48f';
|
|
@@ -131,6 +139,8 @@ const colorWarningDarkest = '#5e3505';
|
|
|
131
139
|
exports.colorWarningDarkest = colorWarningDarkest;
|
|
132
140
|
const colorDanger = '#e31c4c';
|
|
133
141
|
exports.colorDanger = colorDanger;
|
|
142
|
+
const colorDangerLighter = '#f6b9c8';
|
|
143
|
+
exports.colorDangerLighter = colorDangerLighter;
|
|
134
144
|
const colorDangerLightest = '#fce8ed';
|
|
135
145
|
exports.colorDangerLightest = colorDangerLightest;
|
|
136
146
|
const colorDangerLight = '#f297ad';
|
|
@@ -86,6 +86,8 @@ export const colorGrayLightest = '#EBEBEB';
|
|
|
86
86
|
|
|
87
87
|
export const colorNeutral = '#706f9b';
|
|
88
88
|
|
|
89
|
+
export const colorNeutralLighter = '#d3d2e0';
|
|
90
|
+
|
|
89
91
|
export const colorNeutralLightest = '#f1f1f5';
|
|
90
92
|
|
|
91
93
|
export const colorNeutralLight = '#bdbdd1';
|
|
@@ -96,6 +98,8 @@ export const colorNeutralDarkest = '#2C2C47';
|
|
|
96
98
|
|
|
97
99
|
export const colorSuccess = '#03964d';
|
|
98
100
|
|
|
101
|
+
export const colorSuccessLighter = '#b1dec8';
|
|
102
|
+
|
|
99
103
|
export const colorSuccessLightest = '#e6f5ed';
|
|
100
104
|
|
|
101
105
|
export const colorSuccessLight = '#8bcfad';
|
|
@@ -106,6 +110,8 @@ export const colorSuccessDarkest = '#013f20';
|
|
|
106
110
|
|
|
107
111
|
export const colorInformation = '#0769f0';
|
|
108
112
|
|
|
113
|
+
export const colorInformationLighter = '#b2d1fa';
|
|
114
|
+
|
|
109
115
|
export const colorInformationLightest = '#e6f0fe';
|
|
110
116
|
|
|
111
117
|
export const colorInformationLight = '#8dbaf8';
|
|
@@ -116,6 +122,8 @@ export const colorInformationDarkest = '#032c65';
|
|
|
116
122
|
|
|
117
123
|
export const colorWarning = '#df7e0c';
|
|
118
124
|
|
|
125
|
+
export const colorWarningLighter = '#f5d7b4';
|
|
126
|
+
|
|
119
127
|
export const colorWarningLightest = '#fcf2e7';
|
|
120
128
|
|
|
121
129
|
export const colorWarningLight = '#f0c48f';
|
|
@@ -126,6 +134,8 @@ export const colorWarningDarkest = '#5e3505';
|
|
|
126
134
|
|
|
127
135
|
export const colorDanger = '#e31c4c';
|
|
128
136
|
|
|
137
|
+
export const colorDangerLighter = '#f6b9c8';
|
|
138
|
+
|
|
129
139
|
export const colorDangerLightest = '#fce8ed';
|
|
130
140
|
|
|
131
141
|
export const colorDangerLight = '#f297ad';
|