@instructure/shared-types 9.5.2-snapshot-1 → 10.0.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 +11 -2
- package/package.json +1 -1
- package/src/Colors.ts +97 -107
- package/src/CommonTypes.ts +2 -0
- package/src/ComponentThemeVariables.ts +462 -463
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Colors.d.ts +85 -107
- package/types/Colors.d.ts.map +1 -1
- package/types/CommonTypes.d.ts +1 -0
- package/types/CommonTypes.d.ts.map +1 -1
- package/types/ComponentThemeVariables.d.ts +462 -463
- package/types/ComponentThemeVariables.d.ts.map +1 -1
|
@@ -4,8 +4,8 @@ export interface ComponentTheme {
|
|
|
4
4
|
[variableName: string]: string | number | undefined;
|
|
5
5
|
}
|
|
6
6
|
export type AlertTheme = {
|
|
7
|
-
background: Colors['
|
|
8
|
-
color: Colors['
|
|
7
|
+
background: Colors['contrasts']['white1010'];
|
|
8
|
+
color: Colors['contrasts']['grey125125'];
|
|
9
9
|
marginTop: Spacing['small'];
|
|
10
10
|
borderRadius: Border['radiusMedium'];
|
|
11
11
|
borderWidth: Border['widthMedium'];
|
|
@@ -17,43 +17,43 @@ export type AlertTheme = {
|
|
|
17
17
|
contentLineHeight: Typography['lineHeightCondensed'];
|
|
18
18
|
closeButtonMarginTop: Spacing['xSmall'];
|
|
19
19
|
closeButtonMarginRight: Spacing['xxSmall'];
|
|
20
|
-
iconColor: Colors['
|
|
21
|
-
successBorderColor: Colors['
|
|
22
|
-
successIconBackground: Colors['
|
|
23
|
-
infoBorderColor: Colors['
|
|
24
|
-
infoIconBackground: Colors['
|
|
25
|
-
warningBorderColor: Colors['
|
|
26
|
-
warningIconBackground: Colors['
|
|
27
|
-
dangerBorderColor: Colors['
|
|
28
|
-
dangerIconBackground: Colors['
|
|
20
|
+
iconColor: Colors['contrasts']['white1010'];
|
|
21
|
+
successBorderColor: Colors['contrasts']['green4570'];
|
|
22
|
+
successIconBackground: Colors['contrasts']['green4570'];
|
|
23
|
+
infoBorderColor: Colors['contrasts']['blue4570'];
|
|
24
|
+
infoIconBackground: Colors['contrasts']['blue4570'];
|
|
25
|
+
warningBorderColor: Colors['contrasts']['orange4570'];
|
|
26
|
+
warningIconBackground: Colors['contrasts']['orange4570'];
|
|
27
|
+
dangerBorderColor: Colors['contrasts']['red4570'];
|
|
28
|
+
dangerIconBackground: Colors['contrasts']['red4570'];
|
|
29
29
|
boxShadow: Shadows['depth2'];
|
|
30
30
|
};
|
|
31
31
|
export type AvatarTheme = {
|
|
32
|
-
background: Colors['
|
|
32
|
+
background: Colors['contrasts']['white1010'];
|
|
33
33
|
borderWidthSmall: Border['widthSmall'];
|
|
34
34
|
borderWidthMedium: Border['widthMedium'];
|
|
35
|
-
borderColor: Colors['
|
|
36
|
-
boxShadowColor:
|
|
35
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
36
|
+
boxShadowColor: string;
|
|
37
37
|
boxShadowBlur: string;
|
|
38
38
|
fontFamily: Typography['fontFamily'];
|
|
39
39
|
fontWeight: Typography['fontWeightBold'];
|
|
40
|
-
color: Colors['
|
|
41
|
-
colorShamrock: Colors['
|
|
42
|
-
colorBarney: Colors['
|
|
43
|
-
colorCrimson: Colors['
|
|
44
|
-
colorFire: Colors['
|
|
45
|
-
colorLicorice: Colors['
|
|
46
|
-
colorAsh: Colors['
|
|
40
|
+
color: Colors['contrasts']['blue4570'];
|
|
41
|
+
colorShamrock: Colors['contrasts']['green4570'];
|
|
42
|
+
colorBarney: Colors['contrasts']['blue4570'];
|
|
43
|
+
colorCrimson: Colors['contrasts']['orange4570'];
|
|
44
|
+
colorFire: Colors['contrasts']['red4570'];
|
|
45
|
+
colorLicorice: Colors['contrasts']['grey125125'];
|
|
46
|
+
colorAsh: Colors['contrasts']['grey4570'];
|
|
47
47
|
};
|
|
48
48
|
export type BadgeTheme = {
|
|
49
49
|
fontFamily: Typography['fontFamily'];
|
|
50
50
|
fontWeight: Typography['fontWeightNormal'];
|
|
51
|
-
color: Colors['
|
|
51
|
+
color: Colors['contrasts']['white1010'];
|
|
52
52
|
fontSize: Typography['fontSizeXSmall'];
|
|
53
|
-
colorDanger: Colors['
|
|
54
|
-
colorSuccess: Colors['
|
|
55
|
-
colorPrimary: Colors['
|
|
56
|
-
colorInverse: Colors['
|
|
53
|
+
colorDanger: Colors['contrasts']['red4570'];
|
|
54
|
+
colorSuccess: Colors['contrasts']['green4570'];
|
|
55
|
+
colorPrimary: Colors['contrasts']['blue4570'];
|
|
56
|
+
colorInverse: Colors['contrasts']['grey4570'];
|
|
57
57
|
size: string;
|
|
58
58
|
countOffset: string | 0;
|
|
59
59
|
notificationOffset: string | 0;
|
|
@@ -68,28 +68,28 @@ export type BillboardTheme = {
|
|
|
68
68
|
paddingSmall: Spacing['small'];
|
|
69
69
|
paddingMedium: Spacing['medium'];
|
|
70
70
|
paddingLarge: Spacing['medium'];
|
|
71
|
-
iconColor: Colors['
|
|
71
|
+
iconColor: Colors['contrasts']['grey4570'];
|
|
72
72
|
mediumMargin: Spacing['small'];
|
|
73
73
|
largeMargin: Spacing['medium'];
|
|
74
|
-
iconHoverColor: Colors['
|
|
75
|
-
backgroundColor: Colors['
|
|
76
|
-
iconHoverColorInverse: Colors['
|
|
74
|
+
iconHoverColor: Colors['contrasts']['blue4570'];
|
|
75
|
+
backgroundColor: Colors['contrasts']['white1010'];
|
|
76
|
+
iconHoverColorInverse: Colors['contrasts']['white1010'];
|
|
77
77
|
buttonBorderWidth: Border['widthMedium'];
|
|
78
78
|
buttonBorderRadius: Border['radiusLarge'];
|
|
79
|
-
messageColor: Colors['
|
|
80
|
-
messageColorClickable: Colors['
|
|
81
|
-
messageColorInverse: Colors['
|
|
79
|
+
messageColor: Colors['contrasts']['blue4570'];
|
|
80
|
+
messageColorClickable: Colors['contrasts']['blue4570'];
|
|
81
|
+
messageColorInverse: Colors['contrasts']['grey1111'];
|
|
82
82
|
messageFontSizeSmall: Typography['fontSizeSmall'];
|
|
83
83
|
messageFontSizeMedium: Typography['fontSizeMedium'];
|
|
84
84
|
messageFontSizeLarge: Typography['fontSizeLarge'];
|
|
85
|
-
clickableActiveBg: Colors['
|
|
86
|
-
clickableActiveText: Colors['
|
|
85
|
+
clickableActiveBg: Colors['contrasts']['blue4570'];
|
|
86
|
+
clickableActiveText: Colors['contrasts']['white1010'];
|
|
87
87
|
buttonBorderStyle: Border['style'];
|
|
88
88
|
buttonHoverBorderStyle: string;
|
|
89
89
|
};
|
|
90
90
|
export type BreadcrumbTheme = {
|
|
91
91
|
fontFamily: Typography['fontFamily'];
|
|
92
|
-
separatorColor: Colors['
|
|
92
|
+
separatorColor: Colors['contrasts']['grey4570'];
|
|
93
93
|
smallSeparatorFontSize: string;
|
|
94
94
|
smallFontSize: Typography['fontSizeSmall'];
|
|
95
95
|
mediumSeparatorFontSize: string;
|
|
@@ -128,64 +128,64 @@ export type BaseButtonTheme = {
|
|
|
128
128
|
iconSizeLarge: string;
|
|
129
129
|
iconTextGap: Spacing['xSmall'];
|
|
130
130
|
iconTextGapCondensed: Spacing['xxSmall'];
|
|
131
|
-
primaryColor:
|
|
132
|
-
primaryBorderColor:
|
|
133
|
-
primaryBackground:
|
|
134
|
-
primaryHoverBackground:
|
|
135
|
-
primaryActiveBackground:
|
|
131
|
+
primaryColor: Colors['contrasts']['white1010'];
|
|
132
|
+
primaryBorderColor: Colors['contrasts']['blue5782'];
|
|
133
|
+
primaryBackground: Colors['contrasts']['blue4570'];
|
|
134
|
+
primaryHoverBackground: Colors['contrasts']['blue5782'];
|
|
135
|
+
primaryActiveBackground: Colors['contrasts']['blue5782'];
|
|
136
136
|
primaryActiveBoxShadow: string;
|
|
137
|
-
primaryGhostColor:
|
|
138
|
-
primaryGhostBorderColor:
|
|
137
|
+
primaryGhostColor: Colors['contrasts']['blue4570'];
|
|
138
|
+
primaryGhostBorderColor: Colors['contrasts']['blue4570'];
|
|
139
139
|
primaryGhostBackground: string;
|
|
140
|
-
primaryGhostHoverBackground:
|
|
140
|
+
primaryGhostHoverBackground: Colors['contrasts']['blue1212'];
|
|
141
141
|
primaryGhostActiveBackground: string;
|
|
142
142
|
primaryGhostActiveBoxShadow: string;
|
|
143
|
-
secondaryColor:
|
|
144
|
-
secondaryBorderColor:
|
|
145
|
-
secondaryBackground:
|
|
146
|
-
secondaryHoverBackground:
|
|
147
|
-
secondaryActiveBackground:
|
|
143
|
+
secondaryColor: Colors['contrasts']['grey125125'];
|
|
144
|
+
secondaryBorderColor: Colors['contrasts']['grey1214'];
|
|
145
|
+
secondaryBackground: Colors['contrasts']['grey1111'];
|
|
146
|
+
secondaryHoverBackground: Colors['contrasts']['grey1214'];
|
|
147
|
+
secondaryActiveBackground: Colors['contrasts']['grey1214'];
|
|
148
148
|
secondaryActiveBoxShadow: string;
|
|
149
|
-
secondaryGhostColor:
|
|
150
|
-
secondaryGhostBorderColor:
|
|
149
|
+
secondaryGhostColor: Colors['contrasts']['grey125125'];
|
|
150
|
+
secondaryGhostBorderColor: Colors['contrasts']['grey125125'];
|
|
151
151
|
secondaryGhostBackground: string;
|
|
152
|
-
secondaryGhostHoverBackground:
|
|
152
|
+
secondaryGhostHoverBackground: Colors['contrasts']['grey1111'];
|
|
153
153
|
secondaryGhostActiveBackground: string;
|
|
154
154
|
secondaryGhostActiveBoxShadow: string;
|
|
155
|
-
successColor:
|
|
156
|
-
successBorderColor:
|
|
157
|
-
successBackground:
|
|
158
|
-
successHoverBackground:
|
|
159
|
-
successActiveBackground:
|
|
155
|
+
successColor: Colors['contrasts']['white1010'];
|
|
156
|
+
successBorderColor: Colors['contrasts']['green5782'];
|
|
157
|
+
successBackground: Colors['contrasts']['green4570'];
|
|
158
|
+
successHoverBackground: Colors['contrasts']['green5782'];
|
|
159
|
+
successActiveBackground: Colors['contrasts']['green5782'];
|
|
160
160
|
successActiveBoxShadow: string;
|
|
161
|
-
successGhostColor:
|
|
162
|
-
successGhostBorderColor:
|
|
161
|
+
successGhostColor: Colors['contrasts']['green4570'];
|
|
162
|
+
successGhostBorderColor: Colors['contrasts']['green4570'];
|
|
163
163
|
successGhostBackground: string;
|
|
164
|
-
successGhostHoverBackground:
|
|
164
|
+
successGhostHoverBackground: Colors['contrasts']['green1212'];
|
|
165
165
|
successGhostActiveBackground: string;
|
|
166
166
|
successGhostActiveBoxShadow: string;
|
|
167
|
-
dangerColor:
|
|
168
|
-
dangerBorderColor:
|
|
169
|
-
dangerBackground:
|
|
170
|
-
dangerHoverBackground:
|
|
171
|
-
dangerActiveBackground:
|
|
167
|
+
dangerColor: Colors['contrasts']['white1010'];
|
|
168
|
+
dangerBorderColor: Colors['contrasts']['red5782'];
|
|
169
|
+
dangerBackground: Colors['contrasts']['red4570'];
|
|
170
|
+
dangerHoverBackground: Colors['contrasts']['red5782'];
|
|
171
|
+
dangerActiveBackground: Colors['contrasts']['red5782'];
|
|
172
172
|
dangerActiveBoxShadow: string;
|
|
173
|
-
dangerGhostColor:
|
|
174
|
-
dangerGhostBorderColor:
|
|
173
|
+
dangerGhostColor: Colors['contrasts']['red4570'];
|
|
174
|
+
dangerGhostBorderColor: Colors['contrasts']['red4570'];
|
|
175
175
|
dangerGhostBackground: string;
|
|
176
|
-
dangerGhostHoverBackground:
|
|
176
|
+
dangerGhostHoverBackground: Colors['contrasts']['red1212'];
|
|
177
177
|
dangerGhostActiveBackground: string;
|
|
178
178
|
dangerGhostActiveBoxShadow: string;
|
|
179
|
-
primaryInverseColor:
|
|
180
|
-
primaryInverseBorderColor:
|
|
181
|
-
primaryInverseBackground:
|
|
182
|
-
primaryInverseHoverBackground:
|
|
183
|
-
primaryInverseActiveBackground:
|
|
179
|
+
primaryInverseColor: Colors['contrasts']['grey125125'];
|
|
180
|
+
primaryInverseBorderColor: Colors['contrasts']['grey1214'];
|
|
181
|
+
primaryInverseBackground: Colors['contrasts']['white1010'];
|
|
182
|
+
primaryInverseHoverBackground: Colors['contrasts']['grey1111'];
|
|
183
|
+
primaryInverseActiveBackground: Colors['contrasts']['white1010'];
|
|
184
184
|
primaryInverseActiveBoxShadow: string;
|
|
185
|
-
primaryInverseGhostColor:
|
|
186
|
-
primaryInverseGhostBorderColor:
|
|
185
|
+
primaryInverseGhostColor: Colors['contrasts']['white1010'];
|
|
186
|
+
primaryInverseGhostBorderColor: Colors['contrasts']['white1010'];
|
|
187
187
|
primaryInverseGhostBackground: string;
|
|
188
|
-
primaryInverseGhostHoverBackground:
|
|
188
|
+
primaryInverseGhostHoverBackground: Colors['contrasts']['grey1111'];
|
|
189
189
|
primaryInverseGhostActiveBackground: string;
|
|
190
190
|
primaryInverseGhostActiveBoxShadow: string;
|
|
191
191
|
};
|
|
@@ -197,8 +197,8 @@ export type CloseButtonTheme = {
|
|
|
197
197
|
};
|
|
198
198
|
export type BylineTheme = {
|
|
199
199
|
fontFamily: Typography['fontFamily'];
|
|
200
|
-
background: Colors['
|
|
201
|
-
color: Colors['
|
|
200
|
+
background: Colors['contrasts']['white1010'];
|
|
201
|
+
color: Colors['contrasts']['grey125125'];
|
|
202
202
|
figureMargin: Spacing['small'];
|
|
203
203
|
titleMargin: Spacing['xSmall'];
|
|
204
204
|
titleFontSize: Typography['fontSizeLarge'];
|
|
@@ -212,47 +212,47 @@ export type BylineTheme = {
|
|
|
212
212
|
large: Breakpoints['large'];
|
|
213
213
|
};
|
|
214
214
|
export type CalendarDayTheme = {
|
|
215
|
-
color: Colors['
|
|
216
|
-
background: Colors['
|
|
215
|
+
color: Colors['contrasts']['grey125125'];
|
|
216
|
+
background: Colors['contrasts']['white1010'];
|
|
217
217
|
fontSize: Typography['fontSizeMedium'];
|
|
218
218
|
padding: Spacing['xxSmall'];
|
|
219
219
|
height: Forms['inputHeightSmall'];
|
|
220
220
|
minWidth: Forms['inputHeightSmall'];
|
|
221
|
-
outsideMonthColor: Colors['
|
|
222
|
-
selectedBackground: Colors['
|
|
223
|
-
selectedColor: Colors['
|
|
221
|
+
outsideMonthColor: Colors['contrasts']['grey4570'];
|
|
222
|
+
selectedBackground: Colors['contrasts']['green4570'];
|
|
223
|
+
selectedColor: Colors['contrasts']['white1010'];
|
|
224
224
|
selectedBorderRadius: Border['radiusMedium'];
|
|
225
|
-
todayBackground: Colors['
|
|
226
|
-
todayColor: Colors['
|
|
225
|
+
todayBackground: Colors['contrasts']['blue4570'];
|
|
226
|
+
todayColor: Colors['contrasts']['white1010'];
|
|
227
227
|
todayBorderRadius: Forms['inputHeightSmall'];
|
|
228
228
|
};
|
|
229
229
|
export type CalendarTheme = {
|
|
230
230
|
fontSize: Typography['fontSizeMedium'];
|
|
231
231
|
fontFamily: Typography['fontFamily'];
|
|
232
232
|
fontWeight: Typography['fontWeightNormal'];
|
|
233
|
-
color: Colors['
|
|
234
|
-
background: Colors['
|
|
233
|
+
color: Colors['contrasts']['grey125125'];
|
|
234
|
+
background: Colors['contrasts']['white1010'];
|
|
235
235
|
navMargin: Spacing['small'];
|
|
236
236
|
navWithYearMargin: Spacing['xSmall'];
|
|
237
237
|
yearPickerMargin: Spacing['mediumSmall'];
|
|
238
238
|
maxHeaderWidth: Spacing['medium'];
|
|
239
239
|
};
|
|
240
240
|
export type CheckboxFacadeTheme = {
|
|
241
|
-
color: Colors['
|
|
241
|
+
color: Colors['contrasts']['white1010'];
|
|
242
242
|
borderWidth: Border['widthSmall'];
|
|
243
|
-
borderColor: Colors['
|
|
243
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
244
244
|
borderRadius: Border['radiusMedium'];
|
|
245
|
-
background: Colors['
|
|
245
|
+
background: Colors['contrasts']['white1010'];
|
|
246
246
|
marginRight: Spacing['xSmall'];
|
|
247
247
|
padding: Spacing['xxxSmall'];
|
|
248
|
-
checkedBackground: Colors['
|
|
249
|
-
checkedBorderColor: Colors['
|
|
250
|
-
hoverBorderColor: Colors['
|
|
251
|
-
focusBorderColor: Colors['
|
|
248
|
+
checkedBackground: Colors['contrasts']['grey125125'];
|
|
249
|
+
checkedBorderColor: Colors['contrasts']['grey125125'];
|
|
250
|
+
hoverBorderColor: Colors['contrasts']['grey125125'];
|
|
251
|
+
focusBorderColor: Colors['contrasts']['blue4570'];
|
|
252
252
|
focusBorderWidth: Border['widthMedium'];
|
|
253
253
|
focusBorderStyle: Border['style'];
|
|
254
|
-
labelColor: Colors['
|
|
255
|
-
checkedLabelColor: Colors['
|
|
254
|
+
labelColor: Colors['contrasts']['grey125125'];
|
|
255
|
+
checkedLabelColor: Colors['contrasts']['grey125125'];
|
|
256
256
|
labelFontFamily: Typography['fontFamily'];
|
|
257
257
|
labelFontWeight: Typography['fontWeightNormal'];
|
|
258
258
|
labelLineHeight: Typography['lineHeightCondensed'];
|
|
@@ -267,24 +267,24 @@ export type CheckboxFacadeTheme = {
|
|
|
267
267
|
iconSizeLarge: string;
|
|
268
268
|
};
|
|
269
269
|
export type ToggleFacadeTheme = {
|
|
270
|
-
color: Colors['
|
|
271
|
-
background: Colors['
|
|
272
|
-
borderColor: Colors['
|
|
270
|
+
color: Colors['contrasts']['white1010'];
|
|
271
|
+
background: Colors['contrasts']['grey1111'];
|
|
272
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
273
273
|
borderWidth: Border['widthMedium'];
|
|
274
274
|
borderRadius: string;
|
|
275
275
|
marginEnd: Spacing['small'];
|
|
276
276
|
marginStart: Spacing['small'];
|
|
277
277
|
marginVertical: Spacing['xSmall'];
|
|
278
|
-
checkedBackground: Colors['
|
|
279
|
-
uncheckedIconColor: Colors['
|
|
280
|
-
checkedIconColor: Colors['
|
|
281
|
-
focusOutlineColor: Colors['
|
|
278
|
+
checkedBackground: Colors['contrasts']['green4570'];
|
|
279
|
+
uncheckedIconColor: Colors['contrasts']['grey125125'];
|
|
280
|
+
checkedIconColor: Colors['contrasts']['green4570'];
|
|
281
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
282
282
|
focusBorderWidth: Border['widthMedium'];
|
|
283
283
|
focusBorderStyle: Border['style'];
|
|
284
|
-
toggleBackground: Colors['
|
|
284
|
+
toggleBackground: Colors['contrasts']['white1010'];
|
|
285
285
|
toggleShadow: Shadows['depth1'];
|
|
286
286
|
toggleSize: Forms['inputHeightSmall'];
|
|
287
|
-
labelColor: Colors['
|
|
287
|
+
labelColor: Colors['contrasts']['grey125125'];
|
|
288
288
|
labelFontFamily: Typography['fontFamily'];
|
|
289
289
|
labelFontWeight: Typography['fontWeightNormal'];
|
|
290
290
|
labelLineHeight: Typography['lineHeightCondensed'];
|
|
@@ -295,57 +295,57 @@ export type ToggleFacadeTheme = {
|
|
|
295
295
|
export type CodeEditorTheme = {
|
|
296
296
|
fontFamily: Typography['fontFamilyMonospace'];
|
|
297
297
|
fontSize: Typography['fontSizeSmall'];
|
|
298
|
-
background: Colors['
|
|
298
|
+
background: Colors['contrasts']['grey1111'];
|
|
299
299
|
border: string | 0;
|
|
300
300
|
borderRadius: Border['radiusMedium'];
|
|
301
|
-
focusBorderColor: Colors['
|
|
302
|
-
focusBoxShadow:
|
|
301
|
+
focusBorderColor: Colors['contrasts']['blue4570'];
|
|
302
|
+
focusBoxShadow: string;
|
|
303
303
|
horizontalPadding: Spacing['xSmall'];
|
|
304
304
|
verticalPadding: Spacing['xxSmall'];
|
|
305
|
-
color: Colors['
|
|
306
|
-
lineNumberColor: Colors['
|
|
307
|
-
gutterBorder: Colors['
|
|
308
|
-
gutterBackground: Colors['
|
|
309
|
-
gutterMarkerColor: Colors['
|
|
310
|
-
gutterMarkerSubtleColor: Colors['
|
|
311
|
-
cursorColor: Colors['
|
|
312
|
-
secondaryCursorColor: Colors['
|
|
313
|
-
rulerColor: Colors['
|
|
314
|
-
matchingBracketOutline: Colors['
|
|
315
|
-
nonMatchingBracketColor: Colors['
|
|
305
|
+
color: Colors['contrasts']['grey125125'];
|
|
306
|
+
lineNumberColor: Colors['contrasts']['grey4570'];
|
|
307
|
+
gutterBorder: Colors['contrasts']['grey1111'];
|
|
308
|
+
gutterBackground: Colors['contrasts']['grey1214'];
|
|
309
|
+
gutterMarkerColor: Colors['contrasts']['blue4570'];
|
|
310
|
+
gutterMarkerSubtleColor: Colors['contrasts']['grey4570'];
|
|
311
|
+
cursorColor: Colors['contrasts']['grey125125'];
|
|
312
|
+
secondaryCursorColor: Colors['contrasts']['grey4570'];
|
|
313
|
+
rulerColor: Colors['contrasts']['grey4570'];
|
|
314
|
+
matchingBracketOutline: Colors['contrasts']['grey4570'];
|
|
315
|
+
nonMatchingBracketColor: Colors['contrasts']['red4570'];
|
|
316
316
|
matchingTagBackground: string;
|
|
317
|
-
activeLineBackground: Colors['
|
|
318
|
-
selectedBackground: Colors['
|
|
319
|
-
fatCursorBackground: Colors['
|
|
317
|
+
activeLineBackground: Colors['contrasts']['grey1214'];
|
|
318
|
+
selectedBackground: Colors['contrasts']['grey1424'];
|
|
319
|
+
fatCursorBackground: Colors['contrasts']['green4570'];
|
|
320
320
|
fatCursorMarkBackground: string;
|
|
321
321
|
searchingBackground: string;
|
|
322
322
|
zIndex: Stacking['above'];
|
|
323
|
-
quoteColor: Colors['
|
|
324
|
-
headerColor: Colors['
|
|
325
|
-
negativeColor: Colors['
|
|
326
|
-
positiveColor: Colors['
|
|
327
|
-
keywordColor: Colors['
|
|
328
|
-
atomColor: Colors['
|
|
329
|
-
numberColor: Colors['
|
|
330
|
-
defColor: Colors['
|
|
331
|
-
variableColor: Colors['
|
|
332
|
-
secondaryVariableColor: Colors['
|
|
333
|
-
typeColor: Colors['
|
|
334
|
-
commentColor: Colors['
|
|
335
|
-
stringColor: Colors['
|
|
336
|
-
secondaryStringColor: Colors['
|
|
337
|
-
metaColor: Colors['
|
|
338
|
-
qualifierColor: Colors['
|
|
339
|
-
builtInColor: Colors['
|
|
340
|
-
bracketColor: Colors['
|
|
341
|
-
tagColor: Colors['
|
|
342
|
-
attributeColor: Colors['
|
|
343
|
-
hrColor: Colors['
|
|
344
|
-
linkColor: Colors['
|
|
345
|
-
errorColor: Colors['
|
|
346
|
-
propertyColor: Colors['
|
|
347
|
-
nodeColor: Colors['
|
|
348
|
-
operatorColor: Colors['
|
|
323
|
+
quoteColor: Colors['contrasts']['green4570'];
|
|
324
|
+
headerColor: Colors['contrasts']['orange4570'];
|
|
325
|
+
negativeColor: Colors['contrasts']['red4570'];
|
|
326
|
+
positiveColor: Colors['contrasts']['green4570'];
|
|
327
|
+
keywordColor: Colors['contrasts']['blue4570'];
|
|
328
|
+
atomColor: Colors['contrasts']['orange4570'];
|
|
329
|
+
numberColor: Colors['contrasts']['orange4570'];
|
|
330
|
+
defColor: Colors['contrasts']['grey125125'];
|
|
331
|
+
variableColor: Colors['contrasts']['blue4570'];
|
|
332
|
+
secondaryVariableColor: Colors['contrasts']['orange4570'];
|
|
333
|
+
typeColor: Colors['contrasts']['blue4570'];
|
|
334
|
+
commentColor: Colors['contrasts']['grey4570'];
|
|
335
|
+
stringColor: Colors['contrasts']['blue4570'];
|
|
336
|
+
secondaryStringColor: Colors['contrasts']['red4570'];
|
|
337
|
+
metaColor: Colors['contrasts']['grey125125'];
|
|
338
|
+
qualifierColor: Colors['contrasts']['green4570'];
|
|
339
|
+
builtInColor: Colors['contrasts']['orange4570'];
|
|
340
|
+
bracketColor: Colors['contrasts']['grey4570'];
|
|
341
|
+
tagColor: Colors['contrasts']['green4570'];
|
|
342
|
+
attributeColor: Colors['contrasts']['blue4570'];
|
|
343
|
+
hrColor: Colors['contrasts']['grey4570'];
|
|
344
|
+
linkColor: Colors['contrasts']['blue4570'];
|
|
345
|
+
errorColor: Colors['contrasts']['red4570'];
|
|
346
|
+
propertyColor: Colors['contrasts']['blue5782'];
|
|
347
|
+
nodeColor: Colors['contrasts']['orange4570'];
|
|
348
|
+
operatorColor: Colors['contrasts']['grey125125'];
|
|
349
349
|
};
|
|
350
350
|
export type ColorContrastTheme = {
|
|
351
351
|
width: string;
|
|
@@ -359,9 +359,9 @@ export type ColorContrastTheme = {
|
|
|
359
359
|
colorPreviewTopMargin: Spacing['xSmall'];
|
|
360
360
|
labelBottomMargin: Spacing['xxSmall'];
|
|
361
361
|
smallBorder: Border['widthSmall'];
|
|
362
|
-
successColor: Colors['
|
|
363
|
-
failureColor: Colors['
|
|
364
|
-
pickedHexColor: Colors['
|
|
362
|
+
successColor: Colors['contrasts']['green4570'];
|
|
363
|
+
failureColor: Colors['contrasts']['red4570'];
|
|
364
|
+
pickedHexColor: Colors['contrasts']['grey4570'];
|
|
365
365
|
};
|
|
366
366
|
export type ColorIndicatorTheme = {
|
|
367
367
|
borderWidth: Border['widthSmall'];
|
|
@@ -375,8 +375,8 @@ export type ColorIndicatorTheme = {
|
|
|
375
375
|
rectangularIndicatorBorderWidth: Border['widthSmall'];
|
|
376
376
|
};
|
|
377
377
|
export type ColorMixerPaletteTheme = {
|
|
378
|
-
indicatorBorderColor: Colors['
|
|
379
|
-
whiteColor: Colors['
|
|
378
|
+
indicatorBorderColor: Colors['contrasts']['grey125125'];
|
|
379
|
+
whiteColor: Colors['contrasts']['white1010'];
|
|
380
380
|
colorIndicatorBorderColor: string;
|
|
381
381
|
indicatorBorderWidth: Border['widthSmall'];
|
|
382
382
|
paletteBorderRadius: Border['radiusMedium'];
|
|
@@ -391,7 +391,7 @@ export type ColorMixerRGBAInputTheme = {
|
|
|
391
391
|
rgbaInputTopMargin: Spacing['medium'];
|
|
392
392
|
};
|
|
393
393
|
export type ColorMixerSliderTheme = {
|
|
394
|
-
indicatorBorderColor: Colors['
|
|
394
|
+
indicatorBorderColor: Colors['contrasts']['grey125125'];
|
|
395
395
|
checkerboardBackgroundImage: string;
|
|
396
396
|
checkerboardBackgroundSize: string;
|
|
397
397
|
checkerboardBackgroundPosition: string;
|
|
@@ -402,13 +402,13 @@ export type ColorMixerSliderTheme = {
|
|
|
402
402
|
disabledOverlayZIndex: Stacking['topmost'];
|
|
403
403
|
};
|
|
404
404
|
export type ColorPickerTheme = {
|
|
405
|
-
hashMarkColor: Colors['
|
|
406
|
-
warningIconColor: Colors['
|
|
407
|
-
errorIconColor: Colors['
|
|
408
|
-
successIconColor: Colors['
|
|
409
|
-
popoverSeparatorColor: Colors['
|
|
410
|
-
popoverFooterColor: Colors['
|
|
411
|
-
checkerboardBackgroundColor: Colors['
|
|
405
|
+
hashMarkColor: Colors['contrasts']['grey4570'];
|
|
406
|
+
warningIconColor: Colors['contrasts']['orange4570'];
|
|
407
|
+
errorIconColor: Colors['contrasts']['red4570'];
|
|
408
|
+
successIconColor: Colors['contrasts']['green4570'];
|
|
409
|
+
popoverSeparatorColor: Colors['contrasts']['grey1214'];
|
|
410
|
+
popoverFooterColor: Colors['contrasts']['grey1111'];
|
|
411
|
+
checkerboardBackgroundColor: Colors['contrasts']['white1010'];
|
|
412
412
|
checkerboardBackgroundImage: string;
|
|
413
413
|
checkerboardBackgroundSize: string;
|
|
414
414
|
checkerboardBackgroundPosition: string;
|
|
@@ -432,11 +432,11 @@ export type ColorPickerTheme = {
|
|
|
432
432
|
export type ColorPresetTheme = {
|
|
433
433
|
xxSmallSpacing: Spacing['xxSmall'];
|
|
434
434
|
smallSpacing: Spacing['small'];
|
|
435
|
-
selectedIndicatorBackgroundColor: Colors['
|
|
436
|
-
selectedIndicatorBorderColor: Colors['
|
|
437
|
-
popoverDividerColor: Colors['
|
|
435
|
+
selectedIndicatorBackgroundColor: Colors['contrasts']['white1010'];
|
|
436
|
+
selectedIndicatorBorderColor: Colors['contrasts']['grey125125'];
|
|
437
|
+
popoverDividerColor: Colors['contrasts']['grey1214'];
|
|
438
438
|
smallBorder: Border['widthSmall'];
|
|
439
|
-
popoverFooterColor: Colors['
|
|
439
|
+
popoverFooterColor: Colors['contrasts']['grey1111'];
|
|
440
440
|
checkerboardBackgroundImage: string;
|
|
441
441
|
checkerboardBackgroundSize: string;
|
|
442
442
|
checkerboardBackgroundPosition: string;
|
|
@@ -449,8 +449,8 @@ export type DrawerLayoutContentTheme = {
|
|
|
449
449
|
overflowY: string;
|
|
450
450
|
};
|
|
451
451
|
export type DrawerLayoutTrayTheme = {
|
|
452
|
-
background: Colors['
|
|
453
|
-
borderColor: Colors['
|
|
452
|
+
background: Colors['contrasts']['white1010'];
|
|
453
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
454
454
|
borderWidth: Border['widthSmall'];
|
|
455
455
|
borderStyle: Border['style'];
|
|
456
456
|
zIndex: Stacking['topmost'];
|
|
@@ -461,18 +461,18 @@ export type DrawerLayoutTrayTheme = {
|
|
|
461
461
|
};
|
|
462
462
|
export type DrilldownTheme = {
|
|
463
463
|
headerTitleFontWeight: Typography['fontWeightBold'];
|
|
464
|
-
headerActionColor: Colors['
|
|
464
|
+
headerActionColor: Colors['contrasts']['blue4570'];
|
|
465
465
|
labelInfoPadding: Spacing['small'];
|
|
466
466
|
};
|
|
467
467
|
export type FileDropTheme = {
|
|
468
|
-
backgroundColor: Colors['
|
|
468
|
+
backgroundColor: Colors['contrasts']['white1010'];
|
|
469
469
|
borderRadius: Border['radiusLarge'];
|
|
470
470
|
borderWidth: Border['widthMedium'];
|
|
471
471
|
borderStyle: string;
|
|
472
|
-
borderColor: Colors['
|
|
473
|
-
hoverBorderColor: Colors['
|
|
474
|
-
acceptedColor: Colors['
|
|
475
|
-
rejectedColor: Colors['
|
|
472
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
473
|
+
hoverBorderColor: Colors['contrasts']['blue4570'];
|
|
474
|
+
acceptedColor: Colors['contrasts']['blue4570'];
|
|
475
|
+
rejectedColor: Colors['contrasts']['red4570'];
|
|
476
476
|
};
|
|
477
477
|
export type FlexTheme = {
|
|
478
478
|
fontFamily: Typography['fontFamily'];
|
|
@@ -490,20 +490,20 @@ export type FormFieldGroupTheme = {
|
|
|
490
490
|
borderStyle: Border['style'];
|
|
491
491
|
borderColor: string;
|
|
492
492
|
borderRadius: Border['radiusMedium'];
|
|
493
|
-
errorBorderColor: Colors['
|
|
493
|
+
errorBorderColor: Colors['contrasts']['red4570'];
|
|
494
494
|
errorFieldsPadding: Spacing['xSmall'];
|
|
495
495
|
};
|
|
496
496
|
export type FormFieldLabelTheme = {
|
|
497
|
-
color: Colors['
|
|
497
|
+
color: Colors['contrasts']['grey125125'];
|
|
498
498
|
fontFamily: Typography['fontFamily'];
|
|
499
499
|
fontWeight: Typography['fontWeightBold'];
|
|
500
500
|
fontSize: Typography['fontSizeMedium'];
|
|
501
501
|
lineHeight: Typography['lineHeightFit'];
|
|
502
502
|
};
|
|
503
503
|
export type FormFieldMessageTheme = {
|
|
504
|
-
colorHint: Colors['
|
|
505
|
-
colorError: Colors['
|
|
506
|
-
colorSuccess: Colors['
|
|
504
|
+
colorHint: Colors['contrasts']['grey125125'];
|
|
505
|
+
colorError: Colors['contrasts']['red4570'];
|
|
506
|
+
colorSuccess: Colors['contrasts']['green4570'];
|
|
507
507
|
fontFamily: Typography['fontFamily'];
|
|
508
508
|
fontWeight: Typography['fontWeightNormal'];
|
|
509
509
|
fontSize: Typography['fontSizeSmall'];
|
|
@@ -534,12 +534,12 @@ export type HeadingTheme = {
|
|
|
534
534
|
h5FontSize: Typography['fontSizeSmall'];
|
|
535
535
|
h5FontWeight: Typography['fontWeightNormal'];
|
|
536
536
|
h5FontFamily: Typography['fontFamily'];
|
|
537
|
-
primaryInverseColor: Colors['
|
|
538
|
-
primaryColor: Colors['
|
|
539
|
-
secondaryColor: Colors['
|
|
540
|
-
secondaryInverseColor: Colors['
|
|
537
|
+
primaryInverseColor: Colors['contrasts']['white1010'];
|
|
538
|
+
primaryColor: Colors['contrasts']['grey125125'];
|
|
539
|
+
secondaryColor: Colors['contrasts']['grey4570'];
|
|
540
|
+
secondaryInverseColor: Colors['contrasts']['grey1111'];
|
|
541
541
|
borderPadding: Spacing['xxxSmall'];
|
|
542
|
-
borderColor: Colors['
|
|
542
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
543
543
|
borderWidth: Border['widthSmall'];
|
|
544
544
|
borderStyle: Border['style'];
|
|
545
545
|
};
|
|
@@ -550,19 +550,19 @@ export type ImgTheme = {
|
|
|
550
550
|
export type LinkTheme = {
|
|
551
551
|
fontFamily: Typography['fontFamily'];
|
|
552
552
|
fontWeight: Typography['fontWeightNormal'];
|
|
553
|
-
color: Colors['
|
|
553
|
+
color: Colors['contrasts']['blue4570'];
|
|
554
554
|
textDecorationWithinText: string;
|
|
555
555
|
hoverTextDecorationWithinText: string;
|
|
556
556
|
textDecorationOutsideText: string;
|
|
557
557
|
hoverTextDecorationOutsideText: string;
|
|
558
558
|
focusOutlineWidth: Border['widthMedium'];
|
|
559
|
-
focusOutlineColor: Colors['
|
|
559
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
560
560
|
focusOutlineStyle: Border['style'];
|
|
561
561
|
focusOutlineBorderRadius: Border['radiusSmall'];
|
|
562
|
-
hoverColor:
|
|
563
|
-
colorInverse: Colors['
|
|
564
|
-
focusInverseOutlineColor: Colors['
|
|
565
|
-
focusInverseIconOutlineColor: Colors['
|
|
562
|
+
hoverColor: string;
|
|
563
|
+
colorInverse: Colors['contrasts']['grey1111'];
|
|
564
|
+
focusInverseOutlineColor: Colors['contrasts']['white1010'];
|
|
565
|
+
focusInverseIconOutlineColor: Colors['contrasts']['white1010'];
|
|
566
566
|
iconSize: string;
|
|
567
567
|
iconPlusTextMargin: Spacing['xxSmall'];
|
|
568
568
|
};
|
|
@@ -572,7 +572,7 @@ export type InlineListItemTheme = {
|
|
|
572
572
|
fontSizeSmall: Typography['fontSizeSmall'];
|
|
573
573
|
fontSizeMedium: Typography['fontSizeMedium'];
|
|
574
574
|
fontSizeLarge: Typography['fontSizeLarge'];
|
|
575
|
-
color: Colors['
|
|
575
|
+
color: Colors['contrasts']['grey4570'];
|
|
576
576
|
lineHeight: Typography['lineHeightCondensed'];
|
|
577
577
|
noneSpacing: Spacing['xSmall'];
|
|
578
578
|
pipeSpacing: Spacing['xSmall'];
|
|
@@ -595,7 +595,7 @@ export type ListItemTheme = {
|
|
|
595
595
|
fontSizeSmall: Typography['fontSizeSmall'];
|
|
596
596
|
fontSizeMedium: Typography['fontSizeMedium'];
|
|
597
597
|
fontSizeLarge: Typography['fontSizeLarge'];
|
|
598
|
-
color: Colors['
|
|
598
|
+
color: Colors['contrasts']['grey125125'];
|
|
599
599
|
spacingXXXSmall: Spacing['xxxSmall'];
|
|
600
600
|
spacingXXSmall: Spacing['xxSmall'];
|
|
601
601
|
spacingXSmall: Spacing['xSmall'];
|
|
@@ -619,77 +619,77 @@ export type MenuItemTheme = {
|
|
|
619
619
|
lineHeight: Typography['lineHeightCondensed'];
|
|
620
620
|
fontSize: Typography['fontSizeMedium'];
|
|
621
621
|
labelPadding: Spacing['large'];
|
|
622
|
-
labelColor: Colors['
|
|
623
|
-
background: Colors['
|
|
624
|
-
iconColor: Colors['
|
|
622
|
+
labelColor: Colors['contrasts']['grey125125'];
|
|
623
|
+
background: Colors['contrasts']['white1010'];
|
|
624
|
+
iconColor: Colors['contrasts']['grey125125'];
|
|
625
625
|
iconPadding: Spacing['small'];
|
|
626
|
-
activeBackground: Colors['
|
|
627
|
-
activeLabelColor: Colors['
|
|
628
|
-
activeIconColor: Colors['
|
|
626
|
+
activeBackground: Colors['contrasts']['blue4570'];
|
|
627
|
+
activeLabelColor: Colors['contrasts']['white1010'];
|
|
628
|
+
activeIconColor: Colors['contrasts']['white1010'];
|
|
629
629
|
};
|
|
630
630
|
export type MenuGroupTheme = {
|
|
631
631
|
fontSize: Typography['fontSizeMedium'];
|
|
632
632
|
fontFamily: Typography['fontFamily'];
|
|
633
633
|
fontWeight: Typography['fontWeightBold'];
|
|
634
634
|
padding: string | 0;
|
|
635
|
-
color: Colors['
|
|
636
|
-
background: Colors['
|
|
635
|
+
color: Colors['contrasts']['grey125125'];
|
|
636
|
+
background: Colors['contrasts']['white1010'];
|
|
637
637
|
};
|
|
638
638
|
export type MenuSeparatorTheme = {
|
|
639
|
-
background: Colors['
|
|
639
|
+
background: Colors['contrasts']['grey1214'];
|
|
640
640
|
height: Border['widthSmall'];
|
|
641
641
|
margin: string | 0;
|
|
642
642
|
};
|
|
643
643
|
export type MenuTheme = {
|
|
644
644
|
minWidth: Breakpoints['xxSmall'];
|
|
645
645
|
maxWidth: Breakpoints['xSmall'];
|
|
646
|
-
background: Colors['
|
|
646
|
+
background: Colors['contrasts']['white1010'];
|
|
647
647
|
borderRadius: Border['radiusMedium'];
|
|
648
648
|
focusBorderStyle: Border['style'];
|
|
649
649
|
focusBorderWidth: Border['widthMedium'];
|
|
650
|
-
focusBorderColor: Colors['
|
|
650
|
+
focusBorderColor: Colors['contrasts']['blue4570'];
|
|
651
651
|
focusBorderRadius: Border['radiusMedium'];
|
|
652
652
|
};
|
|
653
653
|
export type MetricTheme = {
|
|
654
654
|
padding: string | 0;
|
|
655
655
|
fontFamily: Typography['fontFamily'];
|
|
656
|
-
valueColor: Colors['
|
|
656
|
+
valueColor: Colors['contrasts']['grey125125'];
|
|
657
657
|
valueFontSize: Typography['fontSizeXLarge'];
|
|
658
658
|
valueFontWeight: Typography['fontWeightBold'];
|
|
659
|
-
labelColor: Colors['
|
|
659
|
+
labelColor: Colors['contrasts']['grey125125'];
|
|
660
660
|
labelFontSize: Typography['fontSizeXSmall'];
|
|
661
661
|
};
|
|
662
662
|
export type MetricGroupTheme = {
|
|
663
663
|
lineHeight: Typography['lineHeightCondensed'];
|
|
664
664
|
};
|
|
665
665
|
export type ModalBodyTheme = {
|
|
666
|
-
inverseBackground:
|
|
666
|
+
inverseBackground: string;
|
|
667
667
|
};
|
|
668
668
|
export type ModalFooterTheme = {
|
|
669
|
-
background: Colors['
|
|
670
|
-
borderColor: Colors['
|
|
669
|
+
background: Colors['contrasts']['grey1111'];
|
|
670
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
671
671
|
borderWidth: Border['widthSmall'];
|
|
672
672
|
borderRadius: Border['radiusMedium'];
|
|
673
673
|
padding: Spacing['small'];
|
|
674
|
-
inverseBackground: Colors['
|
|
675
|
-
inverseBorderColor: Colors['
|
|
674
|
+
inverseBackground: Colors['contrasts']['grey100100'];
|
|
675
|
+
inverseBorderColor: Colors['contrasts']['grey100100'];
|
|
676
676
|
};
|
|
677
677
|
export type ModalHeaderTheme = {
|
|
678
|
-
background: Colors['
|
|
679
|
-
borderColor: Colors['
|
|
678
|
+
background: Colors['contrasts']['white1010'];
|
|
679
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
680
680
|
padding: Spacing['medium'];
|
|
681
681
|
paddingCompact: Spacing['small'];
|
|
682
|
-
inverseBackground: Colors['
|
|
683
|
-
inverseBorderColor: Colors['
|
|
682
|
+
inverseBackground: Colors['contrasts']['grey125125'];
|
|
683
|
+
inverseBorderColor: Colors['contrasts']['grey125125'];
|
|
684
684
|
};
|
|
685
685
|
export type ModalTheme = {
|
|
686
686
|
fontFamily: Typography['fontFamily'];
|
|
687
|
-
textColor: Colors['
|
|
688
|
-
background: Colors['
|
|
689
|
-
borderColor: Colors['
|
|
687
|
+
textColor: Colors['contrasts']['grey125125'];
|
|
688
|
+
background: Colors['contrasts']['white1010'];
|
|
689
|
+
borderColor: Colors['contrasts']['grey125125'];
|
|
690
690
|
borderRadius: Border['radiusMedium'];
|
|
691
|
-
inverseBackground: Colors['
|
|
692
|
-
inverseTextColor: Colors['
|
|
691
|
+
inverseBackground: Colors['contrasts']['grey100100'];
|
|
692
|
+
inverseTextColor: Colors['contrasts']['white1010'];
|
|
693
693
|
autoMinWidth: Breakpoints['xSmall'];
|
|
694
694
|
smallMaxWidth: Breakpoints['small'];
|
|
695
695
|
mediumMaxWidth: Breakpoints['medium'];
|
|
@@ -705,31 +705,31 @@ export type AppNavItemTheme = {
|
|
|
705
705
|
fontFamily: Typography['fontFamily'];
|
|
706
706
|
fontSize: string | 0;
|
|
707
707
|
fontWeight: Typography['fontWeightBold'];
|
|
708
|
-
textColor: Colors['
|
|
709
|
-
textColorSelected: Colors['
|
|
708
|
+
textColor: Colors['contrasts']['blue4570'];
|
|
709
|
+
textColorSelected: Colors['contrasts']['grey125125'];
|
|
710
710
|
height: string | 0;
|
|
711
711
|
padding: Spacing['small'];
|
|
712
|
-
backgroundColor: Colors['
|
|
712
|
+
backgroundColor: Colors['contrasts']['white1010'];
|
|
713
713
|
};
|
|
714
714
|
export type AppNavTheme = {
|
|
715
715
|
fontFamily: Typography['fontFamily'];
|
|
716
716
|
height: string | 0;
|
|
717
|
-
borderColor: Colors['
|
|
717
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
718
718
|
borderStyle: Border['style'];
|
|
719
719
|
borderWidth: Border['widthSmall'];
|
|
720
720
|
horizontalMargin: Spacing['xxSmall'];
|
|
721
721
|
menuTriggerWidth: string | 0;
|
|
722
722
|
};
|
|
723
723
|
export type SideNavBarTheme = {
|
|
724
|
-
fontColor: Colors['
|
|
725
|
-
backgroundColor: Colors['
|
|
724
|
+
fontColor: Colors['contrasts']['white1010'];
|
|
725
|
+
backgroundColor: Colors['contrasts']['grey100100'];
|
|
726
726
|
width: string;
|
|
727
727
|
minimizedWidth: string;
|
|
728
|
-
fill: Colors['
|
|
728
|
+
fill: Colors['contrasts']['white1010'];
|
|
729
729
|
focusOutlineInnerWidth: Border['widthMedium'];
|
|
730
730
|
focusOutlineOuterWidth: Border['widthSmall'];
|
|
731
|
-
focusOutlineInnerColor: Colors['
|
|
732
|
-
focusOutlineOuterColor: Colors['
|
|
731
|
+
focusOutlineInnerColor: Colors['contrasts']['blue4570'];
|
|
732
|
+
focusOutlineOuterColor: Colors['contrasts']['white1010'];
|
|
733
733
|
marginBottom: Spacing['small'];
|
|
734
734
|
toggleTransition: Transitions['duration'];
|
|
735
735
|
};
|
|
@@ -737,18 +737,18 @@ export type SideNavBarItemTheme = {
|
|
|
737
737
|
fontSize: Typography['fontSizeSmall'];
|
|
738
738
|
fontFamily: Typography['fontFamily'];
|
|
739
739
|
fontWeight: Typography['fontWeightNormal'];
|
|
740
|
-
fontColor: Colors['
|
|
740
|
+
fontColor: Colors['contrasts']['white1010'];
|
|
741
741
|
iconSize: string | 0;
|
|
742
|
-
iconColor: Colors['
|
|
742
|
+
iconColor: Colors['contrasts']['white1010'];
|
|
743
743
|
lineHeight: Typography['lineHeight'];
|
|
744
744
|
backgroundColor: string;
|
|
745
745
|
linkTextDecoration: string;
|
|
746
|
-
hoverBackgroundColor:
|
|
746
|
+
hoverBackgroundColor: string;
|
|
747
747
|
outerFocusOutline: string;
|
|
748
748
|
innerFocusOutline: string;
|
|
749
|
-
selectedFontColor: Colors['
|
|
750
|
-
selectedIconColor: Colors['
|
|
751
|
-
selectedBackgroundColor: Colors['
|
|
749
|
+
selectedFontColor: Colors['contrasts']['blue4570'];
|
|
750
|
+
selectedIconColor: Colors['contrasts']['blue4570'];
|
|
751
|
+
selectedBackgroundColor: Colors['contrasts']['white1010'];
|
|
752
752
|
selectedOuterFocusOutline: string;
|
|
753
753
|
selectedInnerFocusOutline: string;
|
|
754
754
|
contentPadding: Spacing['xxSmall'];
|
|
@@ -758,23 +758,23 @@ export type NumberInputTheme = {
|
|
|
758
758
|
fontWeight: Typography['fontWeightNormal'];
|
|
759
759
|
borderWidth: Border['widthSmall'];
|
|
760
760
|
borderStyle: Border['style'];
|
|
761
|
-
borderColor: Colors['
|
|
761
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
762
762
|
borderRadius: Border['radiusMedium'];
|
|
763
|
-
color: Colors['
|
|
764
|
-
background: Colors['
|
|
763
|
+
color: Colors['contrasts']['grey125125'];
|
|
764
|
+
background: Colors['contrasts']['white1010'];
|
|
765
765
|
padding: string | 0;
|
|
766
766
|
arrowsContainerWidth: string | 0;
|
|
767
|
-
arrowsColor: Colors['
|
|
768
|
-
arrowsBackgroundColor: Colors['
|
|
769
|
-
arrowsHoverBackgroundColor: Colors['
|
|
770
|
-
arrowsBorderColor: Colors['
|
|
767
|
+
arrowsColor: Colors['contrasts']['grey125125'];
|
|
768
|
+
arrowsBackgroundColor: Colors['contrasts']['grey1111'];
|
|
769
|
+
arrowsHoverBackgroundColor: Colors['contrasts']['grey1214'];
|
|
770
|
+
arrowsBorderColor: Colors['contrasts']['grey1214'];
|
|
771
771
|
arrowsActiveBoxShadow: string;
|
|
772
772
|
focusOutlineWidth: Border['widthMedium'];
|
|
773
773
|
focusOutlineStyle: Border['style'];
|
|
774
|
-
focusOutlineColor: Colors['
|
|
775
|
-
errorBorderColor: Colors['
|
|
776
|
-
errorOutlineColor: Colors['
|
|
777
|
-
placeholderColor: Colors['
|
|
774
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
775
|
+
errorBorderColor: Colors['contrasts']['red4570'];
|
|
776
|
+
errorOutlineColor: Colors['contrasts']['red4570'];
|
|
777
|
+
placeholderColor: Colors['contrasts']['grey4570'];
|
|
778
778
|
mediumFontSize: Typography['fontSizeMedium'];
|
|
779
779
|
mediumHeight: Forms['inputHeightMedium'];
|
|
780
780
|
largeFontSize: Typography['fontSizeLarge'];
|
|
@@ -785,12 +785,12 @@ export type OptionsItemTheme = {
|
|
|
785
785
|
fontFamily: Typography['fontFamily'];
|
|
786
786
|
fontWeight: Typography['fontWeightNormal'];
|
|
787
787
|
lineHeight: Typography['lineHeightCondensed'];
|
|
788
|
-
color: Colors['
|
|
789
|
-
background: Colors['
|
|
790
|
-
highlightedLabelColor: Colors['
|
|
791
|
-
highlightedBackground: Colors['
|
|
792
|
-
selectedLabelColor: Colors['
|
|
793
|
-
selectedBackground: Colors['
|
|
788
|
+
color: Colors['contrasts']['grey125125'];
|
|
789
|
+
background: Colors['contrasts']['white1010'];
|
|
790
|
+
highlightedLabelColor: Colors['contrasts']['white1010'];
|
|
791
|
+
highlightedBackground: Colors['contrasts']['blue4570'];
|
|
792
|
+
selectedLabelColor: Colors['contrasts']['white1010'];
|
|
793
|
+
selectedBackground: Colors['contrasts']['grey4570'];
|
|
794
794
|
padding: string | 0;
|
|
795
795
|
iconPadding: Spacing['small'];
|
|
796
796
|
nestedPadding: Spacing['medium'];
|
|
@@ -800,17 +800,17 @@ export type OptionsItemTheme = {
|
|
|
800
800
|
descriptionFontWeight: Typography['fontWeightNormal'];
|
|
801
801
|
descriptionLineHeight: Typography['lineHeight'];
|
|
802
802
|
descriptionPaddingStart: string | 0;
|
|
803
|
-
descriptionColor: Colors['
|
|
803
|
+
descriptionColor: Colors['contrasts']['grey4570'];
|
|
804
804
|
};
|
|
805
805
|
export type OptionsSeparatorTheme = {
|
|
806
|
-
background: Colors['
|
|
806
|
+
background: Colors['contrasts']['grey1214'];
|
|
807
807
|
height: Border['widthSmall'];
|
|
808
808
|
margin: string | 0;
|
|
809
809
|
};
|
|
810
810
|
export type OptionsTheme = {
|
|
811
811
|
labelFontWeight: Typography['fontWeightBold'];
|
|
812
|
-
background: Colors['
|
|
813
|
-
labelColor: Colors['
|
|
812
|
+
background: Colors['contrasts']['white1010'];
|
|
813
|
+
labelColor: Colors['contrasts']['grey125125'];
|
|
814
814
|
labelPadding: string | 0;
|
|
815
815
|
nestedLabelPadding: string | 0;
|
|
816
816
|
};
|
|
@@ -818,7 +818,7 @@ export type MaskTheme = {
|
|
|
818
818
|
zIndex: Stacking['topmost'];
|
|
819
819
|
background: string;
|
|
820
820
|
borderColor: string;
|
|
821
|
-
focusBorderColor: Colors['
|
|
821
|
+
focusBorderColor: Colors['contrasts']['blue4570'];
|
|
822
822
|
borderRadius: Border['radiusMedium'];
|
|
823
823
|
borderWidth: Border['widthSmall'];
|
|
824
824
|
};
|
|
@@ -826,8 +826,8 @@ export type PagesTheme = {
|
|
|
826
826
|
fontSize: Typography['fontSizeMedium'];
|
|
827
827
|
fontFamily: Typography['fontFamily'];
|
|
828
828
|
fontWeight: Typography['fontWeightNormal'];
|
|
829
|
-
color: Colors['
|
|
830
|
-
background: Colors['
|
|
829
|
+
color: Colors['contrasts']['grey125125'];
|
|
830
|
+
background: Colors['contrasts']['white1010'];
|
|
831
831
|
};
|
|
832
832
|
export type PaginationPageInputTheme = {
|
|
833
833
|
inputSpacing: Spacing['xSmall'];
|
|
@@ -837,17 +837,17 @@ export type PillTheme = {
|
|
|
837
837
|
fontFamily: Typography['fontFamily'];
|
|
838
838
|
padding: string | 0;
|
|
839
839
|
height: string | 0;
|
|
840
|
-
background: Colors['
|
|
840
|
+
background: Colors['contrasts']['white1010'];
|
|
841
841
|
textFontSize: Typography['fontSizeSmall'];
|
|
842
842
|
statusLabelFontWeight: Typography['fontWeightBold'];
|
|
843
843
|
textFontWeight: Typography['fontWeightNormal'];
|
|
844
844
|
maxWidth: string | 0;
|
|
845
|
-
primaryColor: Colors['
|
|
846
|
-
infoColor: Colors['
|
|
847
|
-
dangerColor: Colors['
|
|
848
|
-
successColor: Colors['
|
|
849
|
-
warningColor: Colors['
|
|
850
|
-
alertColor: Colors['
|
|
845
|
+
primaryColor: Colors['contrasts']['grey4570'];
|
|
846
|
+
infoColor: Colors['contrasts']['blue4570'];
|
|
847
|
+
dangerColor: Colors['contrasts']['red4570'];
|
|
848
|
+
successColor: Colors['contrasts']['green4570'];
|
|
849
|
+
warningColor: Colors['contrasts']['orange4570'];
|
|
850
|
+
alertColor: Colors['contrasts']['blue4570'];
|
|
851
851
|
borderWidth: Border['widthSmall'];
|
|
852
852
|
borderStyle: Border['style'];
|
|
853
853
|
borderRadius: string | 0;
|
|
@@ -869,25 +869,25 @@ export type ProgressBarTheme = {
|
|
|
869
869
|
largeHeight: Spacing['large'];
|
|
870
870
|
largeValueFontSize: Typography['fontSizeMedium'];
|
|
871
871
|
valuePadding: string | 0;
|
|
872
|
-
meterColorBrand: Colors['
|
|
873
|
-
meterColorBrandInverse: Colors['
|
|
874
|
-
meterColorInfo: Colors['
|
|
875
|
-
meterColorInfoInverse: Colors['
|
|
876
|
-
meterColorSuccess: Colors['
|
|
877
|
-
meterColorSuccessInverse: Colors['
|
|
878
|
-
meterColorDanger: Colors['
|
|
879
|
-
meterColorDangerInverse: Colors['
|
|
880
|
-
meterColorAlert: Colors['
|
|
881
|
-
meterColorAlertInverse: Colors['
|
|
882
|
-
meterColorWarning: Colors['
|
|
883
|
-
meterColorWarningInverse: Colors['
|
|
872
|
+
meterColorBrand: Colors['contrasts']['blue4570'];
|
|
873
|
+
meterColorBrandInverse: Colors['contrasts']['blue4570'];
|
|
874
|
+
meterColorInfo: Colors['contrasts']['blue4570'];
|
|
875
|
+
meterColorInfoInverse: Colors['contrasts']['blue4570'];
|
|
876
|
+
meterColorSuccess: Colors['contrasts']['green4570'];
|
|
877
|
+
meterColorSuccessInverse: Colors['contrasts']['green4570'];
|
|
878
|
+
meterColorDanger: Colors['contrasts']['red4570'];
|
|
879
|
+
meterColorDangerInverse: Colors['contrasts']['red4570'];
|
|
880
|
+
meterColorAlert: Colors['contrasts']['blue4570'];
|
|
881
|
+
meterColorAlertInverse: Colors['contrasts']['blue4570'];
|
|
882
|
+
meterColorWarning: Colors['contrasts']['orange4570'];
|
|
883
|
+
meterColorWarningInverse: Colors['contrasts']['orange4570'];
|
|
884
884
|
meterBorderWidthInverse: Border['widthSmall'];
|
|
885
885
|
meterBorderColorInverse: 'transparent';
|
|
886
|
-
trackColor: Colors['
|
|
886
|
+
trackColor: Colors['contrasts']['white1010'];
|
|
887
887
|
trackColorInverse: string;
|
|
888
888
|
trackBottomBorderWidth: Border['widthSmall'];
|
|
889
|
-
trackBottomBorderColor: Colors['
|
|
890
|
-
trackBottomBorderColorInverse: Colors['
|
|
889
|
+
trackBottomBorderColor: Colors['contrasts']['grey1214'];
|
|
890
|
+
trackBottomBorderColorInverse: Colors['contrasts']['white1010'];
|
|
891
891
|
};
|
|
892
892
|
export type ProgressCircleTheme = {
|
|
893
893
|
fontFamily: Typography['fontFamily'];
|
|
@@ -917,36 +917,36 @@ export type ProgressCircleTheme = {
|
|
|
917
917
|
largeTransform: string;
|
|
918
918
|
largeStrokeWidth: string;
|
|
919
919
|
largeBorderOffset: string;
|
|
920
|
-
color: Colors['
|
|
921
|
-
colorInverse: Colors['
|
|
922
|
-
trackColor: Colors['
|
|
920
|
+
color: Colors['contrasts']['grey125125'];
|
|
921
|
+
colorInverse: Colors['contrasts']['white1010'];
|
|
922
|
+
trackColor: Colors['contrasts']['white1010'];
|
|
923
923
|
trackColorInverse: string;
|
|
924
|
-
trackBorderColor: Colors['
|
|
925
|
-
trackBorderColorInverse: Colors['
|
|
926
|
-
meterColorBrand: Colors['
|
|
927
|
-
meterColorBrandInverse: Colors['
|
|
928
|
-
meterColorInfo: Colors['
|
|
929
|
-
meterColorInfoInverse: Colors['
|
|
930
|
-
meterColorSuccess: Colors['
|
|
931
|
-
meterColorSuccessInverse: Colors['
|
|
932
|
-
meterColorDanger: Colors['
|
|
933
|
-
meterColorDangerInverse: Colors['
|
|
934
|
-
meterColorAlert: Colors['
|
|
935
|
-
meterColorAlertInverse: Colors['
|
|
936
|
-
meterColorWarning: Colors['
|
|
937
|
-
meterColorWarningInverse: Colors['
|
|
924
|
+
trackBorderColor: Colors['contrasts']['grey125125'];
|
|
925
|
+
trackBorderColorInverse: Colors['contrasts']['white1010'];
|
|
926
|
+
meterColorBrand: Colors['contrasts']['blue4570'];
|
|
927
|
+
meterColorBrandInverse: Colors['contrasts']['blue4570'];
|
|
928
|
+
meterColorInfo: Colors['contrasts']['blue4570'];
|
|
929
|
+
meterColorInfoInverse: Colors['contrasts']['blue4570'];
|
|
930
|
+
meterColorSuccess: Colors['contrasts']['green4570'];
|
|
931
|
+
meterColorSuccessInverse: Colors['contrasts']['green4570'];
|
|
932
|
+
meterColorDanger: Colors['contrasts']['red4570'];
|
|
933
|
+
meterColorDangerInverse: Colors['contrasts']['red4570'];
|
|
934
|
+
meterColorAlert: Colors['contrasts']['blue4570'];
|
|
935
|
+
meterColorAlertInverse: Colors['contrasts']['blue4570'];
|
|
936
|
+
meterColorWarning: Colors['contrasts']['orange4570'];
|
|
937
|
+
meterColorWarningInverse: Colors['contrasts']['orange4570'];
|
|
938
938
|
};
|
|
939
939
|
export type RadioInputTheme = {
|
|
940
|
-
labelColor: Colors['
|
|
940
|
+
labelColor: Colors['contrasts']['grey125125'];
|
|
941
941
|
labelFontFamily: Typography['fontFamily'];
|
|
942
942
|
labelFontWeight: Typography['fontWeightNormal'];
|
|
943
943
|
labelLineHeight: Typography['lineHeightCondensed'];
|
|
944
|
-
background: Colors['
|
|
944
|
+
background: Colors['contrasts']['white1010'];
|
|
945
945
|
borderWidth: Border['widthSmall'];
|
|
946
|
-
borderColor: Colors['
|
|
947
|
-
hoverBorderColor: Colors['
|
|
946
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
947
|
+
hoverBorderColor: Colors['contrasts']['grey125125'];
|
|
948
948
|
controlSize: string | 0;
|
|
949
|
-
focusBorderColor: Colors['
|
|
949
|
+
focusBorderColor: Colors['contrasts']['blue4570'];
|
|
950
950
|
focusBorderWidth: Border['widthMedium'];
|
|
951
951
|
focusBorderStyle: Border['style'];
|
|
952
952
|
simpleFacadeSmallSize: string | 0;
|
|
@@ -961,11 +961,11 @@ export type RadioInputTheme = {
|
|
|
961
961
|
simpleFacadeMarginEnd: Spacing['xSmall'];
|
|
962
962
|
toggleBorderRadius: Border['radiusSmall'];
|
|
963
963
|
toggleBorderWidth: Border['widthLarge'];
|
|
964
|
-
toggleBackgroundSuccess: Colors['
|
|
965
|
-
toggleBackgroundOff: Colors['
|
|
966
|
-
toggleBackgroundDanger: Colors['
|
|
967
|
-
toggleBackgroundWarning: Colors['
|
|
968
|
-
toggleHandleText: Colors['
|
|
964
|
+
toggleBackgroundSuccess: Colors['contrasts']['green4570'];
|
|
965
|
+
toggleBackgroundOff: Colors['contrasts']['green4570'];
|
|
966
|
+
toggleBackgroundDanger: Colors['contrasts']['orange4570'];
|
|
967
|
+
toggleBackgroundWarning: Colors['contrasts']['orange4570'];
|
|
968
|
+
toggleHandleText: Colors['contrasts']['white1010'];
|
|
969
969
|
toggleSmallHeight: Forms['inputHeightSmall'];
|
|
970
970
|
toggleMediumHeight: Forms['inputHeightMedium'];
|
|
971
971
|
toggleLargeHeight: Forms['inputHeightLarge'];
|
|
@@ -977,20 +977,20 @@ export type RadioInputTheme = {
|
|
|
977
977
|
export type RangeInputTheme = {
|
|
978
978
|
minWidth: string | 0;
|
|
979
979
|
handleSize: string | 0;
|
|
980
|
-
handleBackground: Colors['
|
|
981
|
-
handleBorderColor: Colors['
|
|
980
|
+
handleBackground: Colors['contrasts']['blue4570'];
|
|
981
|
+
handleBorderColor: Colors['contrasts']['white1010'];
|
|
982
982
|
handleBorderSize: Border['widthMedium'];
|
|
983
983
|
handleShadow: string | 0;
|
|
984
984
|
handleFocusInset: Border['widthSmall'];
|
|
985
985
|
handleFocusRingSize: Border['widthMedium'];
|
|
986
|
-
handleFocusRingColor: Colors['
|
|
987
|
-
handleShadowColor:
|
|
988
|
-
handleHoverBackground: Colors['
|
|
989
|
-
handleFocusBackground: Colors['
|
|
990
|
-
handleFocusOutlineColor:
|
|
986
|
+
handleFocusRingColor: Colors['contrasts']['white1010'];
|
|
987
|
+
handleShadowColor: string;
|
|
988
|
+
handleHoverBackground: Colors['contrasts']['blue4570'];
|
|
989
|
+
handleFocusBackground: Colors['contrasts']['blue4570'];
|
|
990
|
+
handleFocusOutlineColor: string;
|
|
991
991
|
handleFocusOutlineWidth: string | 0;
|
|
992
|
-
trackBackground:
|
|
993
|
-
valueColor: Colors['
|
|
992
|
+
trackBackground: string;
|
|
993
|
+
valueColor: Colors['contrasts']['white1010'];
|
|
994
994
|
valueFontFamily: Typography['fontFamily'];
|
|
995
995
|
valueFontWeight: Typography['fontWeightNormal'];
|
|
996
996
|
valueSmallFontSize: Typography['fontSizeSmall'];
|
|
@@ -1005,8 +1005,8 @@ export type RangeInputTheme = {
|
|
|
1005
1005
|
};
|
|
1006
1006
|
export type RatingIconTheme = {
|
|
1007
1007
|
iconMargin: Spacing['xxxSmall'];
|
|
1008
|
-
iconEmptyColor: Colors['
|
|
1009
|
-
iconFilledColor: Colors['
|
|
1008
|
+
iconEmptyColor: Colors['contrasts']['blue4570'];
|
|
1009
|
+
iconFilledColor: Colors['contrasts']['blue4570'];
|
|
1010
1010
|
smallIconFontSize: Typography['fontSizeMedium'];
|
|
1011
1011
|
mediumIconFontSize: Typography['fontSizeLarge'];
|
|
1012
1012
|
largeIconFontSize: Typography['fontSizeXXLarge'];
|
|
@@ -1018,25 +1018,25 @@ export type SelectTheme = {
|
|
|
1018
1018
|
smallIconSize: Typography['fontSizeXSmall'];
|
|
1019
1019
|
mediumIconSize: Typography['fontSizeSmall'];
|
|
1020
1020
|
largeIconSize: Typography['fontSizeMedium'];
|
|
1021
|
-
color: Colors['
|
|
1022
|
-
background: Colors['
|
|
1021
|
+
color: Colors['contrasts']['grey125125'];
|
|
1022
|
+
background: Colors['contrasts']['white1010'];
|
|
1023
1023
|
};
|
|
1024
1024
|
export type SourceCodeEditorTheme = {
|
|
1025
1025
|
fontFamily: Typography['fontFamilyMonospace'];
|
|
1026
1026
|
fontSize: Typography['fontSizeSmall'];
|
|
1027
|
-
color: Colors['
|
|
1028
|
-
background: Colors['
|
|
1029
|
-
gutterBackground: Colors['
|
|
1027
|
+
color: Colors['contrasts']['grey125125'];
|
|
1028
|
+
background: Colors['contrasts']['white1010'];
|
|
1029
|
+
gutterBackground: Colors['contrasts']['grey1111'];
|
|
1030
1030
|
borderWidth: Border['widthSmall'];
|
|
1031
|
-
borderColor: Colors['
|
|
1031
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
1032
1032
|
borderRadius: Border['radiusMedium'];
|
|
1033
|
-
focusBorderColor: Colors['
|
|
1033
|
+
focusBorderColor: Colors['contrasts']['blue4570'];
|
|
1034
1034
|
horizontalPadding: Spacing['xSmall'];
|
|
1035
1035
|
verticalPadding: Spacing['xxSmall'];
|
|
1036
1036
|
};
|
|
1037
1037
|
export type SpinnerTheme = {
|
|
1038
|
-
trackColor: Colors['
|
|
1039
|
-
color: Colors['
|
|
1038
|
+
trackColor: Colors['contrasts']['grey1111'];
|
|
1039
|
+
color: Colors['contrasts']['blue4570'];
|
|
1040
1040
|
xSmallSize: string | 0;
|
|
1041
1041
|
xSmallBorderWidth: string | 0;
|
|
1042
1042
|
smallSize: string | 0;
|
|
@@ -1045,18 +1045,18 @@ export type SpinnerTheme = {
|
|
|
1045
1045
|
mediumBorderWidth: string | 0;
|
|
1046
1046
|
largeSize: string | 0;
|
|
1047
1047
|
largeBorderWidth: string | 0;
|
|
1048
|
-
inverseColor: Colors['
|
|
1048
|
+
inverseColor: Colors['contrasts']['blue4570'];
|
|
1049
1049
|
};
|
|
1050
1050
|
export type InlineSVGTheme = {
|
|
1051
|
-
primaryInverseColor: Colors['
|
|
1052
|
-
primaryColor: Colors['
|
|
1053
|
-
secondaryColor: Colors['
|
|
1054
|
-
secondaryInverseColor: Colors['
|
|
1055
|
-
warningColor: Colors['
|
|
1056
|
-
brandColor: Colors['
|
|
1057
|
-
errorColor: Colors['
|
|
1058
|
-
alertColor: Colors['
|
|
1059
|
-
successColor: Colors['
|
|
1051
|
+
primaryInverseColor: Colors['contrasts']['white1010'];
|
|
1052
|
+
primaryColor: Colors['contrasts']['grey125125'];
|
|
1053
|
+
secondaryColor: Colors['contrasts']['grey4570'];
|
|
1054
|
+
secondaryInverseColor: Colors['contrasts']['grey1111'];
|
|
1055
|
+
warningColor: Colors['contrasts']['orange4570'];
|
|
1056
|
+
brandColor: Colors['contrasts']['blue4570'];
|
|
1057
|
+
errorColor: Colors['contrasts']['red4570'];
|
|
1058
|
+
alertColor: Colors['contrasts']['blue4570'];
|
|
1059
|
+
successColor: Colors['contrasts']['green4570'];
|
|
1060
1060
|
};
|
|
1061
1061
|
export type SVGIconTheme = {
|
|
1062
1062
|
sizeXSmall: string | 0;
|
|
@@ -1069,28 +1069,28 @@ export type TableBodyTheme = {
|
|
|
1069
1069
|
fontSize: Typography['fontSizeMedium'];
|
|
1070
1070
|
fontFamily: Typography['fontFamily'];
|
|
1071
1071
|
fontWeight: Typography['fontWeightNormal'];
|
|
1072
|
-
color: Colors['
|
|
1073
|
-
background: Colors['
|
|
1072
|
+
color: Colors['contrasts']['grey125125'];
|
|
1073
|
+
background: Colors['contrasts']['white1010'];
|
|
1074
1074
|
};
|
|
1075
1075
|
export type TableCellTheme = {
|
|
1076
1076
|
fontSize: Typography['fontSizeMedium'];
|
|
1077
1077
|
fontFamily: Typography['fontFamily'];
|
|
1078
1078
|
fontWeight: Typography['fontWeightNormal'];
|
|
1079
|
-
color: Colors['
|
|
1080
|
-
background: Colors['
|
|
1081
|
-
borderColor: Colors['
|
|
1079
|
+
color: Colors['contrasts']['grey125125'];
|
|
1080
|
+
background: Colors['contrasts']['white1010'];
|
|
1081
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
1082
1082
|
lineHeight: Typography['lineHeightCondensed'];
|
|
1083
1083
|
padding: string | 0;
|
|
1084
1084
|
};
|
|
1085
1085
|
export type TableColHeaderTheme = {
|
|
1086
1086
|
fontSize: Typography['fontSizeMedium'];
|
|
1087
1087
|
fontFamily: Typography['fontFamily'];
|
|
1088
|
-
color: Colors['
|
|
1089
|
-
background: Colors['
|
|
1090
|
-
borderColor: Colors['
|
|
1088
|
+
color: Colors['contrasts']['grey125125'];
|
|
1089
|
+
background: Colors['contrasts']['white1010'];
|
|
1090
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
1091
1091
|
lineHeight: Typography['lineHeightCondensed'];
|
|
1092
1092
|
padding: string | 0;
|
|
1093
|
-
focusOutlineColor: Colors['
|
|
1093
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
1094
1094
|
focusOutlineWidth: Border['widthMedium'];
|
|
1095
1095
|
focusOutlineStyle: Border['style'];
|
|
1096
1096
|
};
|
|
@@ -1098,26 +1098,26 @@ export type TableHeadTheme = {
|
|
|
1098
1098
|
fontSize: Typography['fontSizeMedium'];
|
|
1099
1099
|
fontFamily: Typography['fontFamily'];
|
|
1100
1100
|
fontWeight: Typography['fontWeightNormal'];
|
|
1101
|
-
color: Colors['
|
|
1102
|
-
background: Colors['
|
|
1101
|
+
color: Colors['contrasts']['grey125125'];
|
|
1102
|
+
background: Colors['contrasts']['white1010'];
|
|
1103
1103
|
};
|
|
1104
1104
|
export type TableRowTheme = {
|
|
1105
1105
|
fontSize: Typography['fontSizeMedium'];
|
|
1106
1106
|
fontFamily: Typography['fontFamily'];
|
|
1107
1107
|
fontWeight: Typography['fontWeightNormal'];
|
|
1108
|
-
color: Colors['
|
|
1109
|
-
background: Colors['
|
|
1110
|
-
borderColor: Colors['
|
|
1111
|
-
hoverBorderColor: Colors['
|
|
1108
|
+
color: Colors['contrasts']['grey125125'];
|
|
1109
|
+
background: Colors['contrasts']['white1010'];
|
|
1110
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
1111
|
+
hoverBorderColor: Colors['contrasts']['blue4570'];
|
|
1112
1112
|
padding: string | 0;
|
|
1113
1113
|
};
|
|
1114
1114
|
export type TableRowHeaderTheme = {
|
|
1115
1115
|
fontSize: Typography['fontSizeMedium'];
|
|
1116
1116
|
fontFamily: Typography['fontFamily'];
|
|
1117
1117
|
fontWeight: Typography['fontWeightNormal'];
|
|
1118
|
-
color: Colors['
|
|
1119
|
-
background: Colors['
|
|
1120
|
-
borderColor: Colors['
|
|
1118
|
+
color: Colors['contrasts']['grey125125'];
|
|
1119
|
+
background: Colors['contrasts']['white1010'];
|
|
1120
|
+
borderColor: Colors['contrasts']['grey4570'];
|
|
1121
1121
|
lineHeight: Typography['lineHeightCondensed'];
|
|
1122
1122
|
padding: string | 0;
|
|
1123
1123
|
};
|
|
@@ -1125,17 +1125,17 @@ export type TableTheme = {
|
|
|
1125
1125
|
fontSize: Typography['fontSizeMedium'];
|
|
1126
1126
|
fontFamily: Typography['fontFamily'];
|
|
1127
1127
|
fontWeight: Typography['fontWeightNormal'];
|
|
1128
|
-
color: Colors['
|
|
1129
|
-
background: Colors['
|
|
1128
|
+
color: Colors['contrasts']['grey125125'];
|
|
1129
|
+
background: Colors['contrasts']['white1010'];
|
|
1130
1130
|
};
|
|
1131
1131
|
export type TabsPanelTheme = {
|
|
1132
1132
|
fontSize: Typography['fontSizeMedium'];
|
|
1133
1133
|
fontFamily: Typography['fontFamily'];
|
|
1134
1134
|
fontWeight: Typography['fontWeightNormal'];
|
|
1135
1135
|
lineHeight: Typography['lineHeight'];
|
|
1136
|
-
color: Colors['
|
|
1137
|
-
background: Colors['
|
|
1138
|
-
borderColor: Colors['
|
|
1136
|
+
color: Colors['contrasts']['grey125125'];
|
|
1137
|
+
background: Colors['contrasts']['white1010'];
|
|
1138
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
1139
1139
|
borderWidth: Border['widthSmall'];
|
|
1140
1140
|
borderStyle: Border['style'];
|
|
1141
1141
|
defaultOverflowY: string;
|
|
@@ -1145,17 +1145,17 @@ export type TabsTabTheme = {
|
|
|
1145
1145
|
fontWeight: Typography['fontWeightNormal'];
|
|
1146
1146
|
lineHeight: Typography['lineHeightCondensed'];
|
|
1147
1147
|
fontSize: Typography['fontSizeMedium'];
|
|
1148
|
-
defaultColor: Colors['
|
|
1149
|
-
defaultHoverBorderColor: Colors['
|
|
1150
|
-
defaultSelectedBorderColor: Colors['
|
|
1151
|
-
secondaryColor: Colors['
|
|
1152
|
-
secondarySelectedBackground: Colors['
|
|
1153
|
-
secondarySelectedBorderColor: Colors['
|
|
1148
|
+
defaultColor: Colors['contrasts']['grey125125'];
|
|
1149
|
+
defaultHoverBorderColor: Colors['contrasts']['grey1214'];
|
|
1150
|
+
defaultSelectedBorderColor: Colors['contrasts']['blue4570'];
|
|
1151
|
+
secondaryColor: Colors['contrasts']['grey125125'];
|
|
1152
|
+
secondarySelectedBackground: Colors['contrasts']['white1010'];
|
|
1153
|
+
secondarySelectedBorderColor: Colors['contrasts']['grey1214'];
|
|
1154
1154
|
zIndex: Stacking['above'];
|
|
1155
1155
|
};
|
|
1156
1156
|
export type TabsTheme = {
|
|
1157
|
-
defaultBackground: Colors['
|
|
1158
|
-
scrollFadeColor: Colors['
|
|
1157
|
+
defaultBackground: Colors['contrasts']['white1010'];
|
|
1158
|
+
scrollFadeColor: Colors['contrasts']['white1010'];
|
|
1159
1159
|
tabVerticalOffset: Border['widthSmall'];
|
|
1160
1160
|
zIndex: Stacking['above'];
|
|
1161
1161
|
scrollOverlayWidthDefault: string;
|
|
@@ -1171,62 +1171,61 @@ export type TagTheme = {
|
|
|
1171
1171
|
fontSizeLarge: Typography['fontSizeMedium'];
|
|
1172
1172
|
padding: string | 0;
|
|
1173
1173
|
paddingSmall: string | 0;
|
|
1174
|
-
focusOutlineColor: Colors['
|
|
1174
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
1175
1175
|
focusOutlineWidth: Border['widthMedium'];
|
|
1176
1176
|
focusOutlineStyle: Border['style'];
|
|
1177
1177
|
maxWidth: string | 0;
|
|
1178
1178
|
iconMargin: Spacing['small'];
|
|
1179
1179
|
transitionTiming: string;
|
|
1180
|
-
defaultBackgroundHover:
|
|
1181
|
-
defaultBackground:
|
|
1182
|
-
defaultBorderColor:
|
|
1180
|
+
defaultBackgroundHover: Colors['contrasts']['grey1214'];
|
|
1181
|
+
defaultBackground: Colors['contrasts']['grey1111'];
|
|
1182
|
+
defaultBorderColor: Colors['contrasts']['grey1214'];
|
|
1183
1183
|
defaultBorderRadius: string;
|
|
1184
1184
|
defaultBorderStyle: string;
|
|
1185
|
-
defaultBorderWidth: string;
|
|
1186
|
-
defaultColor:
|
|
1187
|
-
defaultIconColor:
|
|
1188
|
-
defaultIconHoverColor:
|
|
1189
|
-
inlineBackgroundHover:
|
|
1190
|
-
inlineBackground:
|
|
1191
|
-
inlineBorderColor:
|
|
1192
|
-
inlineBorderRadius: string;
|
|
1185
|
+
defaultBorderWidth: string | 0;
|
|
1186
|
+
defaultColor: Colors['contrasts']['grey125125'];
|
|
1187
|
+
defaultIconColor: Colors['contrasts']['grey125125'];
|
|
1188
|
+
defaultIconHoverColor: Colors['contrasts']['blue4570'];
|
|
1189
|
+
inlineBackgroundHover: Colors['contrasts']['grey1111'];
|
|
1190
|
+
inlineBackground: Colors['contrasts']['white1010'];
|
|
1191
|
+
inlineBorderColor: Colors['contrasts']['grey4570'];
|
|
1192
|
+
inlineBorderRadius: string | 0;
|
|
1193
1193
|
inlineBorderStyle: string;
|
|
1194
|
-
inlineBorderWidth: string;
|
|
1195
|
-
inlineColor:
|
|
1196
|
-
inlineIconColor:
|
|
1197
|
-
inlineIconHoverColor:
|
|
1194
|
+
inlineBorderWidth: string | 0;
|
|
1195
|
+
inlineColor: Colors['contrasts']['grey125125'];
|
|
1196
|
+
inlineIconColor: Colors['contrasts']['grey4570'];
|
|
1197
|
+
inlineIconHoverColor: Colors['contrasts']['blue4570'];
|
|
1198
1198
|
};
|
|
1199
1199
|
export type TextTheme = Typography & {
|
|
1200
|
-
primaryInverseColor: Colors['
|
|
1201
|
-
primaryColor: Colors['
|
|
1202
|
-
secondaryColor: Colors['
|
|
1203
|
-
secondaryInverseColor: Colors['
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
alertColor: Colors['textAlert'];
|
|
1200
|
+
primaryInverseColor: Colors['contrasts']['white1010'];
|
|
1201
|
+
primaryColor: Colors['contrasts']['grey125125'];
|
|
1202
|
+
secondaryColor: Colors['contrasts']['grey4570'];
|
|
1203
|
+
secondaryInverseColor: Colors['contrasts']['grey1111'];
|
|
1204
|
+
brandColor: Colors['contrasts']['blue4570'];
|
|
1205
|
+
dangerColor: Colors['contrasts']['red4570'];
|
|
1206
|
+
successColor: Colors['contrasts']['green4570'];
|
|
1207
|
+
alertColor: Colors['contrasts']['blue4570'];
|
|
1209
1208
|
paragraphMargin: string | 0;
|
|
1210
1209
|
};
|
|
1211
1210
|
export type TextAreaTheme = {
|
|
1212
1211
|
fontFamily: Typography['fontFamily'];
|
|
1213
1212
|
fontWeight: Typography['fontWeightNormal'];
|
|
1214
|
-
color: Colors['
|
|
1215
|
-
background: Colors['
|
|
1213
|
+
color: Colors['contrasts']['grey125125'];
|
|
1214
|
+
background: Colors['contrasts']['white1010'];
|
|
1216
1215
|
borderWidth: Border['widthSmall'];
|
|
1217
1216
|
borderStyle: Border['style'];
|
|
1218
|
-
borderTopColor: Colors['
|
|
1219
|
-
borderRightColor: Colors['
|
|
1220
|
-
borderBottomColor: Colors['
|
|
1221
|
-
borderLeftColor: Colors['
|
|
1217
|
+
borderTopColor: Colors['contrasts']['grey1214'];
|
|
1218
|
+
borderRightColor: Colors['contrasts']['grey1214'];
|
|
1219
|
+
borderBottomColor: Colors['contrasts']['grey1214'];
|
|
1220
|
+
borderLeftColor: Colors['contrasts']['grey1214'];
|
|
1222
1221
|
borderRadius: Border['radiusMedium'];
|
|
1223
1222
|
padding: Spacing['small'];
|
|
1224
|
-
focusOutlineColor: Colors['
|
|
1223
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
1225
1224
|
focusOutlineWidth: Border['widthMedium'];
|
|
1226
1225
|
focusOutlineStyle: Border['style'];
|
|
1227
|
-
errorBorderColor: Colors['
|
|
1228
|
-
errorOutlineColor: Colors['
|
|
1229
|
-
placeholderColor: Colors['
|
|
1226
|
+
errorBorderColor: Colors['contrasts']['red4570'];
|
|
1227
|
+
errorOutlineColor: Colors['contrasts']['red4570'];
|
|
1228
|
+
placeholderColor: Colors['contrasts']['grey4570'];
|
|
1230
1229
|
smallFontSize: Typography['fontSizeSmall'];
|
|
1231
1230
|
smallHeight: Forms['inputHeightSmall'];
|
|
1232
1231
|
mediumFontSize: Typography['fontSizeMedium'];
|
|
@@ -1239,17 +1238,17 @@ export type TextInputTheme = {
|
|
|
1239
1238
|
fontWeight: Typography['fontWeightNormal'];
|
|
1240
1239
|
borderWidth: Border['widthSmall'];
|
|
1241
1240
|
borderStyle: Border['style'];
|
|
1242
|
-
borderColor: Colors['
|
|
1241
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
1243
1242
|
borderRadius: Border['radiusMedium'];
|
|
1244
|
-
color: Colors['
|
|
1245
|
-
background: Colors['
|
|
1243
|
+
color: Colors['contrasts']['grey125125'];
|
|
1244
|
+
background: Colors['contrasts']['white1010'];
|
|
1246
1245
|
padding: Spacing['small'];
|
|
1247
1246
|
focusOutlineWidth: Border['widthMedium'];
|
|
1248
1247
|
focusOutlineStyle: Border['style'];
|
|
1249
|
-
focusOutlineColor: Colors['
|
|
1250
|
-
errorBorderColor: Colors['
|
|
1251
|
-
errorOutlineColor: Colors['
|
|
1252
|
-
placeholderColor: Colors['
|
|
1248
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
1249
|
+
errorBorderColor: Colors['contrasts']['red4570'];
|
|
1250
|
+
errorOutlineColor: Colors['contrasts']['red4570'];
|
|
1251
|
+
placeholderColor: Colors['contrasts']['grey4570'];
|
|
1253
1252
|
smallFontSize: Typography['fontSizeSmall'];
|
|
1254
1253
|
smallHeight: Forms['inputHeightSmall'];
|
|
1255
1254
|
mediumFontSize: Typography['fontSizeMedium'];
|
|
@@ -1261,7 +1260,7 @@ export type ToggleDetailsTheme = {
|
|
|
1261
1260
|
fontFamily: Typography['fontFamily'];
|
|
1262
1261
|
fontWeight: Typography['fontWeightNormal'];
|
|
1263
1262
|
lineHeight: Typography['lineHeight'];
|
|
1264
|
-
textColor: Colors['
|
|
1263
|
+
textColor: Colors['contrasts']['grey125125'];
|
|
1265
1264
|
fontSizeSmall: Typography['fontSizeSmall'];
|
|
1266
1265
|
fontSizeMedium: Typography['fontSizeMedium'];
|
|
1267
1266
|
fontSizeLarge: Typography['fontSizeLarge'];
|
|
@@ -1269,16 +1268,16 @@ export type ToggleDetailsTheme = {
|
|
|
1269
1268
|
mediumIconSize: string | 0;
|
|
1270
1269
|
largeIconSize: string | 0;
|
|
1271
1270
|
iconMargin: Spacing['xxSmall'];
|
|
1272
|
-
iconColor: Colors['
|
|
1271
|
+
iconColor: Colors['contrasts']['grey125125'];
|
|
1273
1272
|
togglePadding: Spacing['xxSmall'];
|
|
1274
1273
|
toggleBorderRadius: Border['radiusMedium'];
|
|
1275
1274
|
toggleBorderWidth: Border['widthMedium'];
|
|
1276
1275
|
toggleBorderStyle: Border['style'];
|
|
1277
|
-
toggleFocusBorderColor: Colors['
|
|
1278
|
-
filledBackgroundColor: Colors['
|
|
1276
|
+
toggleFocusBorderColor: Colors['contrasts']['blue4570'];
|
|
1277
|
+
filledBackgroundColor: Colors['contrasts']['grey1111'];
|
|
1279
1278
|
filledBorderWidth: Border['widthSmall'];
|
|
1280
1279
|
filledBorderStyle: Border['style'];
|
|
1281
|
-
filledBorderColor: Colors['
|
|
1280
|
+
filledBorderColor: Colors['contrasts']['grey1214'];
|
|
1282
1281
|
filledBorderRadius: Border['radiusMedium'];
|
|
1283
1282
|
filledPadding: Spacing['small'];
|
|
1284
1283
|
};
|
|
@@ -1314,16 +1313,16 @@ export type TopNavBarItemTheme = {
|
|
|
1314
1313
|
activeItemFontWeight: Typography['fontWeightBold'];
|
|
1315
1314
|
activeItemIndicatorSpacing: Spacing['xSmall'];
|
|
1316
1315
|
activeIndicatorWidth: Border['widthMedium'];
|
|
1317
|
-
activeIndicatorColor: Colors['
|
|
1318
|
-
activeIndicatorColorInverse: Colors['
|
|
1316
|
+
activeIndicatorColor: Colors['contrasts']['white1010'];
|
|
1317
|
+
activeIndicatorColorInverse: Colors['contrasts']['grey125125'];
|
|
1319
1318
|
};
|
|
1320
1319
|
export type TopNavBarLayoutTheme = TopNavBarLayoutDesktopTheme & TopNavBarLayoutSmallViewportTheme;
|
|
1321
1320
|
export type TopNavBarLayoutDesktopTheme = {
|
|
1322
1321
|
desktopFontSize: Typography['fontSizeMedium'];
|
|
1323
1322
|
desktopFontFamily: Typography['fontFamily'];
|
|
1324
1323
|
desktopFontWeight: Typography['fontWeightNormal'];
|
|
1325
|
-
desktopBackground: Colors['
|
|
1326
|
-
desktopBackgroundInverse: Colors['
|
|
1324
|
+
desktopBackground: Colors['contrasts']['grey100100'];
|
|
1325
|
+
desktopBackgroundInverse: Colors['contrasts']['grey1111'];
|
|
1327
1326
|
desktopBottomBorder: string;
|
|
1328
1327
|
desktopBottomBorderInverse: string;
|
|
1329
1328
|
desktopHeight: string;
|
|
@@ -1336,15 +1335,15 @@ export type TopNavBarLayoutDesktopTheme = {
|
|
|
1336
1335
|
desktopUserSeparatorGap: Spacing['xSmall'];
|
|
1337
1336
|
desktopUserSeparatorHeight: string | 0;
|
|
1338
1337
|
desktopUserSeparatorWidth: Border['widthSmall'];
|
|
1339
|
-
desktopUserSeparatorColor: Colors['
|
|
1340
|
-
desktopUserSeparatorColorInverse: Colors['
|
|
1338
|
+
desktopUserSeparatorColor: Colors['contrasts']['grey1214'];
|
|
1339
|
+
desktopUserSeparatorColorInverse: Colors['contrasts']['grey1214'];
|
|
1341
1340
|
};
|
|
1342
1341
|
export type TopNavBarLayoutSmallViewportTheme = {
|
|
1343
1342
|
smallViewportFontSize: Typography['fontSizeMedium'];
|
|
1344
1343
|
smallViewportFontFamily: Typography['fontFamily'];
|
|
1345
1344
|
smallViewportFontWeight: Typography['fontWeightNormal'];
|
|
1346
|
-
smallViewportBackground: Colors['
|
|
1347
|
-
smallViewportBackgroundInverse: Colors['
|
|
1345
|
+
smallViewportBackground: Colors['contrasts']['grey100100'];
|
|
1346
|
+
smallViewportBackgroundInverse: Colors['contrasts']['grey1111'];
|
|
1348
1347
|
smallViewportBottomBorder: string;
|
|
1349
1348
|
smallViewportBottomBorderInverse: string;
|
|
1350
1349
|
smallViewportHeight: string | 0;
|
|
@@ -1366,11 +1365,11 @@ export type TopNavBarMenuItemsTheme = {
|
|
|
1366
1365
|
desktopSubmenuActiveOptionFontWeight: Typography['fontWeightBold'];
|
|
1367
1366
|
desktopSubmenuActiveOptionIndicatorSpacing: Spacing['xSmall'];
|
|
1368
1367
|
desktopSubmenuActiveOptionIndicatorWidth: Border['widthMedium'];
|
|
1369
|
-
desktopSubmenuActiveOptionIndicatorColor:
|
|
1368
|
+
desktopSubmenuActiveOptionIndicatorColor: string;
|
|
1370
1369
|
};
|
|
1371
1370
|
export type TrayTheme = {
|
|
1372
|
-
background: Colors['
|
|
1373
|
-
borderColor: Colors['
|
|
1371
|
+
background: Colors['contrasts']['white1010'];
|
|
1372
|
+
borderColor: Colors['contrasts']['grey1214'];
|
|
1374
1373
|
borderWidth: Border['widthSmall'];
|
|
1375
1374
|
borderStyle: Border['style'];
|
|
1376
1375
|
boxShadow: Shadows['depth3'];
|
|
@@ -1383,19 +1382,19 @@ export type TrayTheme = {
|
|
|
1383
1382
|
position: string;
|
|
1384
1383
|
};
|
|
1385
1384
|
export type TreeBrowserButtonTheme = {
|
|
1386
|
-
hoverBackgroundColor: Colors['
|
|
1387
|
-
hoverTextColor: Colors['
|
|
1385
|
+
hoverBackgroundColor: Colors['contrasts']['blue4570'];
|
|
1386
|
+
hoverTextColor: Colors['contrasts']['white1010'];
|
|
1388
1387
|
focusOutlineWidth: Border['widthMedium'];
|
|
1389
|
-
focusOutlineColor: Colors['
|
|
1388
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
1390
1389
|
focusOutlineStyle: Border['style'];
|
|
1391
|
-
iconColor: Colors['
|
|
1390
|
+
iconColor: Colors['contrasts']['grey125125'];
|
|
1392
1391
|
iconsMarginRight: Spacing['xSmall'];
|
|
1393
1392
|
descriptorMarginTop: Spacing['xxxSmall'];
|
|
1394
|
-
descriptorTextColor: Colors['
|
|
1393
|
+
descriptorTextColor: Colors['contrasts']['grey125125'];
|
|
1395
1394
|
descriptorFontSizeSmall: Typography['fontSizeXSmall'];
|
|
1396
1395
|
descriptorFontSizeMedium: Typography['fontSizeXSmall'];
|
|
1397
1396
|
descriptorFontSizeLarge: Typography['fontSizeSmall'];
|
|
1398
|
-
nameTextColor: Colors['
|
|
1397
|
+
nameTextColor: Colors['contrasts']['blue4570'];
|
|
1399
1398
|
nameFontSizeSmall: Typography['fontSizeXSmall'];
|
|
1400
1399
|
nameFontSizeMedium: Typography['fontSizeSmall'];
|
|
1401
1400
|
nameFontSizeLarge: Typography['fontSizeMedium'];
|
|
@@ -1404,10 +1403,10 @@ export type TreeBrowserButtonTheme = {
|
|
|
1404
1403
|
baseSpacingLarge: string | 0;
|
|
1405
1404
|
borderWidth: Border['widthSmall'];
|
|
1406
1405
|
borderRadius: Border['radiusMedium'];
|
|
1407
|
-
borderColor: Colors['
|
|
1406
|
+
borderColor: Colors['contrasts']['grey4570'];
|
|
1408
1407
|
textLineHeight: Typography['lineHeightCondensed'];
|
|
1409
|
-
selectedTextColor: Colors['
|
|
1410
|
-
selectedBackgroundColor: Colors['
|
|
1408
|
+
selectedTextColor: Colors['contrasts']['white1010'];
|
|
1409
|
+
selectedBackgroundColor: Colors['contrasts']['grey4570'];
|
|
1411
1410
|
selectedOutlineWidth: Border['widthLarge'];
|
|
1412
1411
|
};
|
|
1413
1412
|
export type TreeBrowserCollectionTheme = {
|
|
@@ -1416,12 +1415,12 @@ export type TreeBrowserCollectionTheme = {
|
|
|
1416
1415
|
baseSpacingMedium: Spacing['small'];
|
|
1417
1416
|
baseSpacingLarge: string | 0;
|
|
1418
1417
|
borderWidth: Border['widthSmall'];
|
|
1419
|
-
borderColor: Colors['
|
|
1418
|
+
borderColor: Colors['contrasts']['grey4570'];
|
|
1420
1419
|
};
|
|
1421
1420
|
export type TreeBrowserTheme = {
|
|
1422
1421
|
borderRadius: Border['radiusMedium'];
|
|
1423
1422
|
focusOutlineWidth: Border['widthMedium'];
|
|
1424
|
-
focusOutlineColor: Colors['
|
|
1423
|
+
focusOutlineColor: Colors['contrasts']['blue4570'];
|
|
1425
1424
|
focusOutlineStyle: Border['style'];
|
|
1426
1425
|
};
|
|
1427
1426
|
export type TruncateTextTheme = {
|
|
@@ -1431,43 +1430,43 @@ export type TruncateTextTheme = {
|
|
|
1431
1430
|
export type ContextViewTheme = {
|
|
1432
1431
|
arrowSize: string | 0;
|
|
1433
1432
|
arrowBorderWidth: Border['widthSmall'];
|
|
1434
|
-
arrowBackgroundColor: Colors['
|
|
1435
|
-
arrowBorderColor: Colors['
|
|
1436
|
-
arrowBackgroundColorInverse: Colors['
|
|
1433
|
+
arrowBackgroundColor: Colors['contrasts']['white1010'];
|
|
1434
|
+
arrowBorderColor: Colors['contrasts']['grey1214'];
|
|
1435
|
+
arrowBackgroundColorInverse: Colors['contrasts']['grey125125'];
|
|
1437
1436
|
arrowBorderColorInverse: string;
|
|
1438
1437
|
};
|
|
1439
1438
|
export type ViewTheme = {
|
|
1440
1439
|
fontFamily: Typography['fontFamily'];
|
|
1441
|
-
color: Colors['
|
|
1442
|
-
colorPrimaryInverse: Colors['
|
|
1443
|
-
borderColorPrimary: Colors['
|
|
1444
|
-
borderColorSecondary: Colors['
|
|
1445
|
-
borderColorSuccess: Colors['
|
|
1446
|
-
borderColorBrand: Colors['
|
|
1447
|
-
borderColorInfo: Colors['
|
|
1448
|
-
borderColorAlert: Colors['
|
|
1449
|
-
borderColorWarning: Colors['
|
|
1450
|
-
borderColorDanger: Colors['
|
|
1440
|
+
color: Colors['contrasts']['grey125125'];
|
|
1441
|
+
colorPrimaryInverse: Colors['contrasts']['white1010'];
|
|
1442
|
+
borderColorPrimary: Colors['contrasts']['grey1214'];
|
|
1443
|
+
borderColorSecondary: Colors['contrasts']['grey4570'];
|
|
1444
|
+
borderColorSuccess: Colors['contrasts']['green4570'];
|
|
1445
|
+
borderColorBrand: Colors['contrasts']['blue4570'];
|
|
1446
|
+
borderColorInfo: Colors['contrasts']['blue4570'];
|
|
1447
|
+
borderColorAlert: Colors['contrasts']['blue4570'];
|
|
1448
|
+
borderColorWarning: Colors['contrasts']['orange4570'];
|
|
1449
|
+
borderColorDanger: Colors['contrasts']['red4570'];
|
|
1451
1450
|
borderColorTransparent: string;
|
|
1452
|
-
debugOutlineColor: Colors['
|
|
1453
|
-
backgroundPrimary: Colors['
|
|
1454
|
-
backgroundSecondary: Colors['
|
|
1455
|
-
backgroundPrimaryInverse: Colors['
|
|
1456
|
-
backgroundBrand: Colors['
|
|
1457
|
-
backgroundInfo: Colors['
|
|
1458
|
-
backgroundAlert: Colors['
|
|
1459
|
-
backgroundSuccess: Colors['
|
|
1460
|
-
backgroundDanger: Colors['
|
|
1461
|
-
backgroundWarning: Colors['
|
|
1451
|
+
debugOutlineColor: Colors['contrasts']['red4570'];
|
|
1452
|
+
backgroundPrimary: Colors['contrasts']['white1010'];
|
|
1453
|
+
backgroundSecondary: Colors['contrasts']['grey1111'];
|
|
1454
|
+
backgroundPrimaryInverse: Colors['contrasts']['grey125125'];
|
|
1455
|
+
backgroundBrand: Colors['contrasts']['blue4570'];
|
|
1456
|
+
backgroundInfo: Colors['contrasts']['blue4570'];
|
|
1457
|
+
backgroundAlert: Colors['contrasts']['blue4570'];
|
|
1458
|
+
backgroundSuccess: Colors['contrasts']['green4570'];
|
|
1459
|
+
backgroundDanger: Colors['contrasts']['red4570'];
|
|
1460
|
+
backgroundWarning: Colors['contrasts']['red4570'];
|
|
1462
1461
|
arrowSize: string | 0;
|
|
1463
1462
|
focusOutlineStyle: Border['style'];
|
|
1464
1463
|
focusOutlineWidth: Border['widthMedium'];
|
|
1465
1464
|
focusOutlineOffset: string | 0;
|
|
1466
1465
|
focusOutlineInset: string | 0;
|
|
1467
|
-
focusColorInfo: Colors['
|
|
1468
|
-
focusColorDanger: Colors['
|
|
1469
|
-
focusColorSuccess: Colors['
|
|
1470
|
-
focusColorInverse: Colors['
|
|
1466
|
+
focusColorInfo: Colors['contrasts']['blue4570'];
|
|
1467
|
+
focusColorDanger: Colors['contrasts']['red4570'];
|
|
1468
|
+
focusColorSuccess: Colors['contrasts']['green4570'];
|
|
1469
|
+
focusColorInverse: Colors['contrasts']['white1010'];
|
|
1471
1470
|
xSmallMaxWidth: Breakpoints['xSmall'];
|
|
1472
1471
|
smallMaxWidth: Breakpoints['small'];
|
|
1473
1472
|
mediumMaxWidth: Breakpoints['medium'];
|