@amsterdam/design-system-tokens 2.2.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/README.md +8 -7
- package/dist/compact.css +1 -0
- package/dist/compact.d.ts +3 -0
- package/dist/compact.json +3 -0
- package/dist/compact.mjs +1 -0
- package/dist/compact.scss +1 -0
- package/dist/compact.theme.css +1 -0
- package/dist/index.css +81 -14
- package/dist/index.d.ts +178 -11
- package/dist/index.json +239 -72
- package/dist/index.mjs +165 -67
- package/dist/index.scss +81 -14
- package/dist/index.theme.css +81 -14
- package/package.json +3 -4
- package/src/brand/ams/color.deprecated.tokens.json +1 -1
- package/src/brand/ams/color.tokens.json +9 -4
- package/src/brand/ams/typography.tokens.json +1 -1
- package/src/components/ams/badge.tokens.json +1 -0
- package/src/components/ams/call-to-action-link.tokens.json +2 -2
- package/src/components/ams/date-input.deprecated.tokens.json +6 -0
- package/src/components/ams/date-input.tokens.json +1 -6
- package/src/components/ams/field-set.deprecated.tokens.json +9 -0
- package/src/components/ams/field-set.tokens.json +12 -1
- package/src/components/ams/field.deprecated.tokens.json +7 -0
- package/src/components/ams/field.tokens.json +6 -1
- package/src/components/ams/page-header.compact.tokens.json +3 -0
- package/src/components/ams/page-header.tokens.json +2 -1
- package/src/components/ams/paragraph.tokens.json +2 -1
- package/src/components/ams/progress-list.tokens.json +255 -0
- package/src/components/ams/time-input.deprecated.tokens.json +6 -0
- package/src/components/ams/time-input.tokens.json +1 -6
package/dist/index.mjs
CHANGED
|
@@ -12,8 +12,8 @@ export const amsBorderWidthS = "0.0625rem";
|
|
|
12
12
|
export const amsBorderWidthM = "0.125rem";
|
|
13
13
|
export const amsBorderWidthL = "0.1875rem";
|
|
14
14
|
export const amsBorderWidthXl = "0.25rem";
|
|
15
|
-
export const amsColorInteractiveSecondary = "#
|
|
16
|
-
export const amsColorInteractiveContrast = "#
|
|
15
|
+
export const amsColorInteractiveSecondary = "#202020"; // Use `currentColor` instead
|
|
16
|
+
export const amsColorInteractiveContrast = "#202020";
|
|
17
17
|
export const amsColorInteractive = "#004699";
|
|
18
18
|
export const amsColorInteractiveDisabled = "#767676";
|
|
19
19
|
export const amsColorInteractiveHover = "#003677";
|
|
@@ -23,17 +23,20 @@ export const amsColorInteractiveInverse = "#ffffff";
|
|
|
23
23
|
export const amsColorBackground = "#ffffff";
|
|
24
24
|
export const amsColorFeedbackError = "#ec0000";
|
|
25
25
|
export const amsColorFeedbackInfo = "#009de6";
|
|
26
|
-
export const amsColorFeedbackSuccess = "#
|
|
26
|
+
export const amsColorFeedbackSuccess = "#00893c";
|
|
27
27
|
export const amsColorFeedbackWarning = "#ff9100";
|
|
28
28
|
export const amsColorHighlightAzure = "#009de6";
|
|
29
|
-
export const amsColorHighlightGreen = "#
|
|
29
|
+
export const amsColorHighlightGreen = "#00893c";
|
|
30
30
|
export const amsColorHighlightLime = "#bed200";
|
|
31
31
|
export const amsColorHighlightMagenta = "#e50082";
|
|
32
32
|
export const amsColorHighlightOrange = "#ff9100";
|
|
33
33
|
export const amsColorHighlightPurple = "#a00078";
|
|
34
34
|
export const amsColorHighlightYellow = "#ffe600";
|
|
35
|
+
export const amsColorProgressCurrent = "#00893c";
|
|
36
|
+
export const amsColorProgressCompleted = "#00893c";
|
|
37
|
+
export const amsColorProgressUpcoming = "#767676";
|
|
35
38
|
export const amsColorSeparator = "#d1d1d1";
|
|
36
|
-
export const amsColorText = "#
|
|
39
|
+
export const amsColorText = "#202020";
|
|
37
40
|
export const amsColorTextInverse = "#ffffff";
|
|
38
41
|
export const amsColorTextSecondary = "#767676";
|
|
39
42
|
export const amsCursorDisabled = "not-allowed";
|
|
@@ -67,7 +70,7 @@ export const amsTypographyHeading_6LineHeight = "1.4"; // Use Heading size 5 ins
|
|
|
67
70
|
export const amsTypographyHeadingFontWeight = "800";
|
|
68
71
|
export const amsTypographyHeadingTextWrap = "balance";
|
|
69
72
|
export const amsTypographyFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
70
|
-
export const amsTypographyHyphenateLimitChars = "
|
|
73
|
+
export const amsTypographyHyphenateLimitChars = "auto";
|
|
71
74
|
export const amsTypographyBodyTextFontSize =
|
|
72
75
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
73
76
|
export const amsTypographyBodyTextFontWeight = "400";
|
|
@@ -85,7 +88,7 @@ export const amsInputsBackgroundColor = "#ffffff";
|
|
|
85
88
|
export const amsInputsBorderColor = "currentColor";
|
|
86
89
|
export const amsInputsBorderStyle = "solid";
|
|
87
90
|
export const amsInputsBorderWidth = "0.125rem";
|
|
88
|
-
export const amsInputsColor = "#
|
|
91
|
+
export const amsInputsColor = "#202020";
|
|
89
92
|
export const amsInputsFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
90
93
|
export const amsInputsFontSize =
|
|
91
94
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -110,8 +113,8 @@ export const amsLinksHoverTextDecorationThickness = "0.1875rem"; // 3px
|
|
|
110
113
|
export const amsLinksHoverTextUnderlineOffset = "0.09375rem"; // 1.5px
|
|
111
114
|
export const amsLinksSubtleTextDecorationLine = "none";
|
|
112
115
|
export const amsLinksSubtleHoverTextDecorationLine = "underline";
|
|
113
|
-
export const amsLinksContrastColor = "#
|
|
114
|
-
export const amsLinksContrastHoverColor = "#
|
|
116
|
+
export const amsLinksContrastColor = "#202020";
|
|
117
|
+
export const amsLinksContrastHoverColor = "#202020";
|
|
115
118
|
export const amsLinksInverseColor = "#ffffff";
|
|
116
119
|
export const amsLinksInverseHoverColor = "#ffffff";
|
|
117
120
|
export const amsAccordionButtonFontFamily =
|
|
@@ -151,8 +154,8 @@ export const amsAlertContentPaddingInline =
|
|
|
151
154
|
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
152
155
|
export const amsAlertErrorBorderColor = "#ec0000";
|
|
153
156
|
export const amsAlertErrorSeverityIndicatorBackgroundColor = "#ec0000";
|
|
154
|
-
export const amsAlertSuccessBorderColor = "#
|
|
155
|
-
export const amsAlertSuccessSeverityIndicatorBackgroundColor = "#
|
|
157
|
+
export const amsAlertSuccessBorderColor = "#00893c";
|
|
158
|
+
export const amsAlertSuccessSeverityIndicatorBackgroundColor = "#00893c";
|
|
156
159
|
export const amsAlertWarningBorderColor = "#ff9100";
|
|
157
160
|
export const amsAlertWarningSeverityIndicatorBackgroundColor = "#ff9100";
|
|
158
161
|
export const amsAvatarAspectRatio = "1 / 1";
|
|
@@ -173,45 +176,46 @@ export const amsAvatarForcedColorsBorderWidth = "0.125rem";
|
|
|
173
176
|
export const amsAvatarAzureBackgroundColor = "#009de6";
|
|
174
177
|
export const amsAvatarAzureBorderColor = "#009de6";
|
|
175
178
|
export const amsAvatarAzureColor = "#ffffff";
|
|
176
|
-
export const amsAvatarGreenBackgroundColor = "#
|
|
177
|
-
export const amsAvatarGreenBorderColor = "#
|
|
179
|
+
export const amsAvatarGreenBackgroundColor = "#00893c";
|
|
180
|
+
export const amsAvatarGreenBorderColor = "#00893c";
|
|
178
181
|
export const amsAvatarGreenColor = "#ffffff";
|
|
179
182
|
export const amsAvatarLimeBackgroundColor = "#bed200";
|
|
180
183
|
export const amsAvatarLimeBorderColor = "#bed200";
|
|
181
|
-
export const amsAvatarLimeColor = "#
|
|
184
|
+
export const amsAvatarLimeColor = "#202020";
|
|
182
185
|
export const amsAvatarMagentaBackgroundColor = "#e50082";
|
|
183
186
|
export const amsAvatarMagentaBorderColor = "#e50082";
|
|
184
187
|
export const amsAvatarMagentaColor = "#ffffff";
|
|
185
188
|
export const amsAvatarOrangeBackgroundColor = "#ff9100";
|
|
186
189
|
export const amsAvatarOrangeBorderColor = "#ff9100";
|
|
187
|
-
export const amsAvatarOrangeColor = "#
|
|
190
|
+
export const amsAvatarOrangeColor = "#202020";
|
|
188
191
|
export const amsAvatarYellowBackgroundColor = "#ffe600";
|
|
189
192
|
export const amsAvatarYellowBorderColor = "#ffe600";
|
|
190
|
-
export const amsAvatarYellowColor = "#
|
|
191
|
-
export const amsBadgeBackgroundColor = "#
|
|
193
|
+
export const amsAvatarYellowColor = "#202020";
|
|
194
|
+
export const amsBadgeBackgroundColor = "#00893c";
|
|
192
195
|
export const amsBadgeColor = "#ffffff";
|
|
193
196
|
export const amsBadgeFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
194
197
|
export const amsBadgeFontSize =
|
|
195
198
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
196
199
|
export const amsBadgeFontWeight = "800";
|
|
200
|
+
export const amsBadgeGap = "clamp(0.25rem, 0.2143rem + 0.1786vw, 0.375rem)";
|
|
197
201
|
export const amsBadgeLineHeight = "1.8";
|
|
198
202
|
export const amsBadgePaddingInline =
|
|
199
203
|
"clamp(0.25rem, 0.2143rem + 0.1786vw, 0.375rem)";
|
|
200
204
|
export const amsBadgeAzureBackgroundColor = "#009de6";
|
|
201
205
|
export const amsBadgeAzureColor = "#ffffff";
|
|
202
206
|
export const amsBadgeLimeBackgroundColor = "#bed200";
|
|
203
|
-
export const amsBadgeLimeColor = "#
|
|
207
|
+
export const amsBadgeLimeColor = "#202020";
|
|
204
208
|
export const amsBadgeMagentaBackgroundColor = "#e50082";
|
|
205
209
|
export const amsBadgeMagentaColor = "#ffffff";
|
|
206
210
|
export const amsBadgeOrangeBackgroundColor = "#ff9100";
|
|
207
|
-
export const amsBadgeOrangeColor = "#
|
|
211
|
+
export const amsBadgeOrangeColor = "#202020";
|
|
208
212
|
export const amsBadgePurpleBackgroundColor = "#a00078";
|
|
209
213
|
export const amsBadgePurpleColor = "#ffffff";
|
|
210
214
|
export const amsBadgeRedBackgroundColor = "#ec0000";
|
|
211
215
|
export const amsBadgeRedColor = "#ffffff";
|
|
212
216
|
export const amsBadgeYellowBackgroundColor = "#ffe600";
|
|
213
|
-
export const amsBadgeYellowColor = "#
|
|
214
|
-
export const amsBlockquoteColor = "#
|
|
217
|
+
export const amsBadgeYellowColor = "#202020";
|
|
218
|
+
export const amsBlockquoteColor = "#202020";
|
|
215
219
|
export const amsBlockquoteFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
216
220
|
export const amsBlockquoteFontSize =
|
|
217
221
|
"clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem)";
|
|
@@ -275,7 +279,7 @@ export const amsButtonTertiaryColor = "#004699";
|
|
|
275
279
|
export const amsButtonTertiaryDisabledColor = "#767676";
|
|
276
280
|
export const amsButtonTertiaryHoverBorderColor = "currentColor";
|
|
277
281
|
export const amsButtonTertiaryHoverColor = "#003677";
|
|
278
|
-
export const amsCallToActionLinkBackgroundColor = "#
|
|
282
|
+
export const amsCallToActionLinkBackgroundColor = "#00893c";
|
|
279
283
|
export const amsCallToActionLinkColor = "#ffffff";
|
|
280
284
|
export const amsCallToActionLinkFontFamily =
|
|
281
285
|
"'Amsterdam Sans', Arial, sans-serif";
|
|
@@ -290,7 +294,7 @@ export const amsCallToActionLinkPaddingInline =
|
|
|
290
294
|
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
291
295
|
export const amsCallToActionLinkTextDecorationThickness = "0.125rem";
|
|
292
296
|
export const amsCallToActionLinkTextUnderlineOffset = "0.15625rem";
|
|
293
|
-
export const amsCallToActionLinkHoverBackgroundColor = "#
|
|
297
|
+
export const amsCallToActionLinkHoverBackgroundColor = "#10552b";
|
|
294
298
|
export const amsCallToActionLinkHoverTextDecorationThickness = "0.1875rem";
|
|
295
299
|
export const amsCallToActionLinkHoverTextUnderlineOffset = "0.09375rem";
|
|
296
300
|
export const amsCardHeadingMarginBlockEnd =
|
|
@@ -308,7 +312,7 @@ export const amsCardLinkTextUnderlineOffset = "0.15625rem";
|
|
|
308
312
|
export const amsCardLinkHoverColor = "#003677";
|
|
309
313
|
export const amsCardLinkHoverTextDecorationLine = "underline";
|
|
310
314
|
export const amsCardOutlineOffset = "0.25rem";
|
|
311
|
-
export const amsCharacterCountColor = "#
|
|
315
|
+
export const amsCharacterCountColor = "#202020";
|
|
312
316
|
export const amsCharacterCountFontFamily =
|
|
313
317
|
"'Amsterdam Sans', Arial, sans-serif";
|
|
314
318
|
export const amsCharacterCountFontSize = "1rem";
|
|
@@ -340,7 +344,7 @@ export const amsCheckboxRectangleStroke = "#004699";
|
|
|
340
344
|
export const amsCheckboxRectangleDisabledStroke = "#767676";
|
|
341
345
|
export const amsCheckboxRectangleInvalidStroke = "#ec0000";
|
|
342
346
|
export const amsCheckboxRectangleInvalidHoverStroke = "#b70000";
|
|
343
|
-
export const amsCheckboxColor = "#
|
|
347
|
+
export const amsCheckboxColor = "#202020";
|
|
344
348
|
export const amsCheckboxCursor = "pointer";
|
|
345
349
|
export const amsCheckboxFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
346
350
|
export const amsCheckboxFontSize =
|
|
@@ -368,12 +372,12 @@ export const amsColumnGapMedium = "clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
|
368
372
|
export const amsColumnGapLarge = "clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
369
373
|
export const amsColumnGapXLarge =
|
|
370
374
|
"clamp(2.25rem, 1.8214rem + 2.1429vw, 3.75rem)";
|
|
375
|
+
export const amsDateInputDisabledCalendarPickerIndicatorBackgroundImage =
|
|
376
|
+
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='%23767676'><path d='M28 6V2h-4v4H12V2H8v4H2v28h32V6zm2 24H6V14h24z'/><path d='M10 17h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12 6h4v4h-4zm6 0h4v4h-4z'/></svg>\")"; // This token will be removed in release 6.0.0
|
|
371
377
|
export const amsDateInputDisabledCalenderPickerIndicatorBackgroundImage =
|
|
372
378
|
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='%23767676'><path d='M28 6V2h-4v4H12V2H8v4H2v28h32V6zm2 24H6V14h24z'/><path d='M10 17h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12 6h4v4h-4zm6 0h4v4h-4z'/></svg>\")"; // Use the token with ‘calendar’ spelled correctly instead
|
|
373
379
|
export const amsDateInputDisabledColor = "#767676";
|
|
374
380
|
export const amsDateInputDisabledCursor = "not-allowed";
|
|
375
|
-
export const amsDateInputDisabledCalendarPickerIndicatorBackgroundImage =
|
|
376
|
-
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='%23767676'><path d='M28 6V2h-4v4H12V2H8v4H2v28h32V6zm2 24H6V14h24z'/><path d='M10 17h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12 6h4v4h-4zm6 0h4v4h-4z'/></svg>\")";
|
|
377
381
|
export const amsDateInputHoverCalenderPickerIndicatorBackgroundImage =
|
|
378
382
|
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='%23003677'><path d='M28 6V2h-4v4H12V2H8v4H2v28h32V6zm2 24H6V14h24z'/><path d='M10 17h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12 6h4v4h-4zm6 0h4v4h-4z'/></svg>\")"; // Use the token with ‘calendar’ spelled correctly instead
|
|
379
383
|
export const amsDateInputHoverBoxShadow = "inset 0 0 0 0.0625rem";
|
|
@@ -386,7 +390,7 @@ export const amsDateInputBackgroundColor = "#ffffff";
|
|
|
386
390
|
export const amsDateInputBorderColor = "currentColor";
|
|
387
391
|
export const amsDateInputBorderStyle = "solid";
|
|
388
392
|
export const amsDateInputBorderWidth = "0.125rem";
|
|
389
|
-
export const amsDateInputColor = "#
|
|
393
|
+
export const amsDateInputColor = "#202020";
|
|
390
394
|
export const amsDateInputFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
391
395
|
export const amsDateInputFontSize =
|
|
392
396
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -404,7 +408,7 @@ export const amsDateInputInvalidHoverBoxShadow =
|
|
|
404
408
|
export const amsDateInputCalendarPickerIndicatorBackgroundImage =
|
|
405
409
|
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='%23004699'><path d='M28 6V2h-4v4H12V2H8v4H2v28h32V6zm2 24H6V14h24z'/><path d='M10 17h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12 6h4v4h-4zm6 0h4v4h-4z'/></svg>\")";
|
|
406
410
|
export const amsDateInputCalendarPickerIndicatorCursor = "pointer";
|
|
407
|
-
export const amsDescriptionListColor = "#
|
|
411
|
+
export const amsDescriptionListColor = "#202020";
|
|
408
412
|
export const amsDescriptionListColumnGap =
|
|
409
413
|
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
410
414
|
export const amsDescriptionListFontFamily =
|
|
@@ -467,26 +471,38 @@ export const amsErrorMessageFontWeight = "400";
|
|
|
467
471
|
export const amsErrorMessageGap =
|
|
468
472
|
"clamp(0.25rem, 0.2143rem + 0.1786vw, 0.375rem)";
|
|
469
473
|
export const amsErrorMessageLineHeight = "1.8";
|
|
470
|
-
export const
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
export const amsFieldSetLegendColor = "#181818";
|
|
474
|
+
export const amsFieldSetLegendMarginBlockEnd =
|
|
475
|
+
"clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
476
|
+
export const amsFieldSetLegendColor = "#202020";
|
|
474
477
|
export const amsFieldSetLegendFontFamily =
|
|
475
478
|
"'Amsterdam Sans', Arial, sans-serif";
|
|
476
479
|
export const amsFieldSetLegendFontSize =
|
|
477
480
|
"clamp(1.3125rem, 1.2411rem + 0.3571vw, 1.5625rem)";
|
|
478
481
|
export const amsFieldSetLegendFontWeight = "800";
|
|
479
482
|
export const amsFieldSetLegendLineHeight = "1.3";
|
|
480
|
-
export const amsFieldSetLegendMarginBlockEnd =
|
|
481
|
-
"clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
482
483
|
export const amsFieldSetLegendTextWrap = "balance";
|
|
483
484
|
export const amsFieldSetLegendInFieldsetFontWeight = "400";
|
|
485
|
+
export const amsFieldSetChildMarginBlockEnd =
|
|
486
|
+
"clamp(0.25rem, 0.2143rem + 0.1786vw, 0.375rem)";
|
|
487
|
+
export const amsFieldSetChildBeforeErrorMessageMarginBlockEnd =
|
|
488
|
+
"clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
489
|
+
export const amsFieldSetChildBeforeFieldOrFieldSetMarginBlockEnd =
|
|
490
|
+
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
491
|
+
export const amsFieldSetChildBetweenFieldsAndFieldSetsMarginBlockEnd =
|
|
492
|
+
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
493
|
+
export const amsFieldSetInvalidBorderInlineStart = "0.1875rem solid #ec0000";
|
|
494
|
+
export const amsFieldSetInvalidPaddingInlineStart =
|
|
495
|
+
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
484
496
|
export const amsFieldGap = "clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
497
|
+
export const amsFieldChildMarginBlockEnd =
|
|
498
|
+
"clamp(0.25rem, 0.2143rem + 0.1786vw, 0.375rem)";
|
|
499
|
+
export const amsFieldChildBeforeErrorMessageMarginBlockEnd =
|
|
500
|
+
"clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
485
501
|
export const amsFieldInvalidBorderInlineStart = "0.1875rem solid #ec0000";
|
|
486
502
|
export const amsFieldInvalidPaddingInlineStart =
|
|
487
503
|
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
488
504
|
export const amsFigureGap = "clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
489
|
-
export const amsFigureCaptionColor = "#
|
|
505
|
+
export const amsFigureCaptionColor = "#202020";
|
|
490
506
|
export const amsFigureCaptionFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
491
507
|
export const amsFigureCaptionFontSize = "1rem";
|
|
492
508
|
export const amsFigureCaptionFontWeight = "400";
|
|
@@ -496,7 +512,7 @@ export const amsFileInputBackgroundColor = "#ffffff";
|
|
|
496
512
|
export const amsFileInputBorderColor = "currentColor";
|
|
497
513
|
export const amsFileInputBorderStyle = "dashed";
|
|
498
514
|
export const amsFileInputBorderWidth = "0.125rem";
|
|
499
|
-
export const amsFileInputColor = "#
|
|
515
|
+
export const amsFileInputColor = "#202020";
|
|
500
516
|
export const amsFileInputCursor = "pointer";
|
|
501
517
|
export const amsFileInputFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
502
518
|
export const amsFileInputFontSize =
|
|
@@ -572,7 +588,7 @@ export const amsHeading_5FontSize = "1rem";
|
|
|
572
588
|
export const amsHeading_5LineHeight = "1.4";
|
|
573
589
|
export const amsHeading_6FontSize = "1rem";
|
|
574
590
|
export const amsHeading_6LineHeight = "1.4";
|
|
575
|
-
export const amsHeadingColor = "#
|
|
591
|
+
export const amsHeadingColor = "#202020";
|
|
576
592
|
export const amsHeadingFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
577
593
|
export const amsHeadingFontWeight = "800";
|
|
578
594
|
export const amsHeadingTextWrap = "balance";
|
|
@@ -586,9 +602,9 @@ export const amsIconButtonHoverBackgroundColor = "rgb(0 70 153 / 12.5%)";
|
|
|
586
602
|
export const amsIconButtonHoverColor = "#003677";
|
|
587
603
|
export const amsIconButtonDisabledColor = "#767676";
|
|
588
604
|
export const amsIconButtonDisabledCursor = "not-allowed";
|
|
589
|
-
export const amsIconButtonContrastColor = "#
|
|
605
|
+
export const amsIconButtonContrastColor = "#202020";
|
|
590
606
|
export const amsIconButtonContrastHoverBackgroundColor = "rgb(0 0 0 / 12.5%)";
|
|
591
|
-
export const amsIconButtonContrastHoverColor = "#
|
|
607
|
+
export const amsIconButtonContrastHoverColor = "#202020";
|
|
592
608
|
export const amsIconButtonContrastDisabledColor = "#767676";
|
|
593
609
|
export const amsIconButtonInverseBackgroundColor = "#004699";
|
|
594
610
|
export const amsIconButtonInverseColor = "#ffffff";
|
|
@@ -638,7 +654,7 @@ export const amsImageSliderThumbnailsThumbnailInViewOpacity = "100%";
|
|
|
638
654
|
export const amsImageSliderThumbnailsThumbnailHoverOpacity = "100%";
|
|
639
655
|
export const amsImageAspectRatio = "16 / 9";
|
|
640
656
|
export const amsInvalidFormAlertOutlineOffset = "0.25rem";
|
|
641
|
-
export const amsLabelColor = "#
|
|
657
|
+
export const amsLabelColor = "#202020";
|
|
642
658
|
export const amsLabelFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
643
659
|
export const amsLabelFontSize =
|
|
644
660
|
"clamp(1.3125rem, 1.2411rem + 0.3571vw, 1.5625rem)";
|
|
@@ -666,8 +682,8 @@ export const amsLinkListLinkLargeFontSize =
|
|
|
666
682
|
export const amsLinkListLinkLargeLineHeight = "1.6";
|
|
667
683
|
export const amsLinkListLinkHoverColor = "#003677";
|
|
668
684
|
export const amsLinkListLinkHoverTextDecorationLine = "underline";
|
|
669
|
-
export const amsLinkListLinkContrastColor = "#
|
|
670
|
-
export const amsLinkListLinkContrastHoverColor = "#
|
|
685
|
+
export const amsLinkListLinkContrastColor = "#202020";
|
|
686
|
+
export const amsLinkListLinkContrastHoverColor = "#202020";
|
|
671
687
|
export const amsLinkListLinkInverseColor = "#ffffff";
|
|
672
688
|
export const amsLinkListLinkInverseHoverColor = "#ffffff";
|
|
673
689
|
export const amsLinkColor = "#004699";
|
|
@@ -681,18 +697,18 @@ export const amsLinkTextUnderlineOffset = "0.15625rem";
|
|
|
681
697
|
export const amsLinkHoverColor = "#003677";
|
|
682
698
|
export const amsLinkHoverTextDecorationThickness = "0.1875rem";
|
|
683
699
|
export const amsLinkHoverTextUnderlineOffset = "0.09375rem";
|
|
684
|
-
export const amsLinkContrastColor = "#
|
|
685
|
-
export const amsLinkContrastHoverColor = "#
|
|
700
|
+
export const amsLinkContrastColor = "#202020";
|
|
701
|
+
export const amsLinkContrastHoverColor = "#202020";
|
|
686
702
|
export const amsLinkInverseColor = "#ffffff";
|
|
687
703
|
export const amsLinkInverseHoverColor = "#ffffff";
|
|
688
704
|
export const amsLogoBlockSize = "clamp(2.25rem, 1.8214rem + 2.1429vw, 3.75rem)";
|
|
689
705
|
export const amsLogoMinBlockSize = "2.5rem";
|
|
690
706
|
export const amsLogoEmblemColor = "#ec0000";
|
|
691
|
-
export const amsLogoSubsiteColor = "#
|
|
707
|
+
export const amsLogoSubsiteColor = "#202020";
|
|
692
708
|
export const amsLogoTitleColor = "#ec0000";
|
|
693
709
|
export const amsMarkBackgroundColor = "#ffe600";
|
|
694
|
-
export const amsMenuLinkContrastColor = "#
|
|
695
|
-
export const amsMenuLinkContrastHoverColor = "#
|
|
710
|
+
export const amsMenuLinkContrastColor = "#202020"; // The menu has a dark background now, so this is no longer needed.
|
|
711
|
+
export const amsMenuLinkContrastHoverColor = "#202020"; // The menu has a dark background now, so this is no longer needed.
|
|
696
712
|
export const amsMenuLinkInverseColor = "#ffffff"; // The menu has a dark background now, so this is no longer needed.
|
|
697
713
|
export const amsMenuLinkInverseHoverColor = "#ffffff"; // The menu has a dark background now, so this is no longer needed.
|
|
698
714
|
export const amsMenuLinkColor = "#ffffff";
|
|
@@ -721,7 +737,7 @@ export const amsMenuWidePaddingBlock =
|
|
|
721
737
|
export const amsMenuWidePaddingInline =
|
|
722
738
|
"clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
723
739
|
export const amsMenuListGap = "clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
724
|
-
export const amsOrderedListColor = "#
|
|
740
|
+
export const amsOrderedListColor = "#202020";
|
|
725
741
|
export const amsOrderedListFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
726
742
|
export const amsOrderedListFontSize =
|
|
727
743
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -781,12 +797,14 @@ export const amsPageHeaderWidePaddingInline =
|
|
|
781
797
|
export const amsPageHeaderLogoLinkColumnGap =
|
|
782
798
|
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
783
799
|
export const amsPageHeaderLogoLinkOutlineOffset = "0.25rem";
|
|
784
|
-
export const amsPageHeaderBrandNameColor = "#
|
|
800
|
+
export const amsPageHeaderBrandNameColor = "#202020";
|
|
785
801
|
export const amsPageHeaderBrandNameFontSize =
|
|
786
802
|
"clamp(1.3125rem, 1.2411rem + 0.3571vw, 1.5625rem)";
|
|
787
803
|
export const amsPageHeaderBrandNameFontWeight = "800";
|
|
788
804
|
export const amsPageHeaderBrandNameLineHeight = "1.3";
|
|
789
805
|
export const amsPageHeaderBrandNameTextWrap = "balance";
|
|
806
|
+
export const amsPageHeaderMegaMenuPaddingBlock =
|
|
807
|
+
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
790
808
|
export const amsPageHeaderMegaMenuButtonCursor = "pointer";
|
|
791
809
|
export const amsPageHeaderMegaMenuButtonLabelOpenFontWeight = "800";
|
|
792
810
|
export const amsPageHeaderMenuColumnGap =
|
|
@@ -815,8 +833,8 @@ export const amsPageHeaderMenuLinkHoverTextDecorationLine = "underline";
|
|
|
815
833
|
export const amsPageHeaderNavigationColumnGap =
|
|
816
834
|
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
817
835
|
export const amsPageHeaderNavigationRowGap =
|
|
818
|
-
"clamp(
|
|
819
|
-
export const amsPageHeadingColor = "#
|
|
836
|
+
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
837
|
+
export const amsPageHeadingColor = "#202020";
|
|
820
838
|
export const amsPageHeadingFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
821
839
|
export const amsPageHeadingFontSize =
|
|
822
840
|
"clamp(2.435rem, 2.0409rem + 1.9709vw, 3.8147rem)";
|
|
@@ -846,7 +864,7 @@ export const amsPaginationLinkTextUnderlineOffset = "0.15625rem";
|
|
|
846
864
|
export const amsPaginationLinkCurrentFontWeight = "800";
|
|
847
865
|
export const amsPaginationLinkHoverColor = "#003677";
|
|
848
866
|
export const amsPaginationLinkHoverTextDecorationLine = "underline";
|
|
849
|
-
export const amsParagraphColor = "#
|
|
867
|
+
export const amsParagraphColor = "#202020";
|
|
850
868
|
export const amsParagraphFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
851
869
|
export const amsParagraphFontSize =
|
|
852
870
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -858,11 +876,12 @@ export const amsParagraphSmallLineHeight = "1.6";
|
|
|
858
876
|
export const amsParagraphLargeFontSize =
|
|
859
877
|
"clamp(1.3125rem, 1.2411rem + 0.3571vw, 1.5625rem)";
|
|
860
878
|
export const amsParagraphLargeLineHeight = "1.6";
|
|
879
|
+
export const amsParagraphLargeTextWrap = "balance";
|
|
861
880
|
export const amsPasswordInputBackgroundColor = "#ffffff";
|
|
862
881
|
export const amsPasswordInputBorderColor = "currentColor";
|
|
863
882
|
export const amsPasswordInputBorderStyle = "solid";
|
|
864
883
|
export const amsPasswordInputBorderWidth = "0.125rem";
|
|
865
|
-
export const amsPasswordInputColor = "#
|
|
884
|
+
export const amsPasswordInputColor = "#202020";
|
|
866
885
|
export const amsPasswordInputFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
867
886
|
export const amsPasswordInputFontSize =
|
|
868
887
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -881,7 +900,86 @@ export const amsPasswordInputInvalidHoverBorderColor = "#b70000";
|
|
|
881
900
|
export const amsPasswordInputInvalidHoverBoxShadow =
|
|
882
901
|
"inset 0 0 0 0.0625rem #b70000";
|
|
883
902
|
export const amsPasswordInputPlaceholderColor = "#767676";
|
|
884
|
-
export const
|
|
903
|
+
export const amsProgressListHeading_2StepMarkerBlockSize =
|
|
904
|
+
"calc(clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem) * 1.3)";
|
|
905
|
+
export const amsProgressListHeading_2StepMarkerMarginBlockStart =
|
|
906
|
+
"calc((1.3 * clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem)) / 2)";
|
|
907
|
+
export const amsProgressListHeading_3StepMarkerBlockSize =
|
|
908
|
+
"calc(clamp(1.3125rem, 1.2411rem + 0.3571vw, 1.5625rem) * 1.3)";
|
|
909
|
+
export const amsProgressListHeading_3StepMarkerMarginBlockStart =
|
|
910
|
+
"calc((1.3 * clamp(1.3125rem, 1.2411rem + 0.3571vw, 1.5625rem)) / 2)";
|
|
911
|
+
export const amsProgressListHeading_4StepMarkerBlockSize =
|
|
912
|
+
"calc(clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem) * 1.4)";
|
|
913
|
+
export const amsProgressListHeading_4StepMarkerMarginBlockStart =
|
|
914
|
+
"calc((1.4 * clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)) / 2)";
|
|
915
|
+
export const amsProgressListStepGap =
|
|
916
|
+
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
917
|
+
export const amsProgressListStepMediumGap =
|
|
918
|
+
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
919
|
+
export const amsProgressListStepMarkerShapeBlockSize = "1.5rem";
|
|
920
|
+
export const amsProgressListStepMarkerShapeBackgroundColor = "#ffffff";
|
|
921
|
+
export const amsProgressListStepMarkerShapeBorderColor = "#767676";
|
|
922
|
+
export const amsProgressListStepMarkerShapeBorderStyle = "solid";
|
|
923
|
+
export const amsProgressListStepMarkerShapeBorderWidth = "0.125rem";
|
|
924
|
+
export const amsProgressListStepMarkerShapeOutlineColor = "#ffffff";
|
|
925
|
+
export const amsProgressListStepMarkerShapeOutlineStyle = "solid";
|
|
926
|
+
export const amsProgressListStepMarkerShapeOutlineWidth = "0.125rem";
|
|
927
|
+
export const amsProgressListStepConnectorBorderInlineColor = "#767676";
|
|
928
|
+
export const amsProgressListStepConnectorBorderInlineStyle = "dashed";
|
|
929
|
+
export const amsProgressListStepConnectorBorderInlineWidth = "1px";
|
|
930
|
+
export const amsProgressListStepHeadingMarginBlockEnd =
|
|
931
|
+
"clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
932
|
+
export const amsProgressListStepContentMarginBlockEnd =
|
|
933
|
+
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
934
|
+
export const amsProgressListStepCompletedMarkerShapeBackgroundColor = "#00893c";
|
|
935
|
+
export const amsProgressListStepCompletedMarkerShapeBorderColor = "#00893c";
|
|
936
|
+
export const amsProgressListStepCompletedConnectorBorderInlineColor = "#00893c";
|
|
937
|
+
export const amsProgressListStepCompletedConnectorBorderInlineStyle = "solid";
|
|
938
|
+
export const amsProgressListStepCurrentMarkerShapeBackgroundColor = "#00893c";
|
|
939
|
+
export const amsProgressListStepCurrentMarkerShapeBorderColor = "#00893c";
|
|
940
|
+
export const amsProgressListStepCurrentConnectorBorderInlineColor = "#00893c";
|
|
941
|
+
export const amsProgressListSubstepsPaddingBlockStart =
|
|
942
|
+
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
943
|
+
export const amsProgressListSubstepsStepIndicatorMarginInlineEnd =
|
|
944
|
+
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
945
|
+
export const amsProgressListSubstepsStepIndicatorMediumMarginInlineEnd =
|
|
946
|
+
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
947
|
+
export const amsProgressListSubstepsStepMarkerBlockSize =
|
|
948
|
+
"calc(clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem) * 1.8)";
|
|
949
|
+
export const amsProgressListSubstepsStepMarkerInlineSize = "1.5rem";
|
|
950
|
+
export const amsProgressListSubstepsStepMarkerShapeBlockSize = "0.75rem";
|
|
951
|
+
export const amsProgressListSubstepsStepMarkerShapeBackgroundColor = "#ffffff";
|
|
952
|
+
export const amsProgressListSubstepsStepMarkerShapeBorderColor = "#767676";
|
|
953
|
+
export const amsProgressListSubstepsStepMarkerShapeBorderStyle = "solid";
|
|
954
|
+
export const amsProgressListSubstepsStepMarkerShapeBorderWidth = "0.125rem";
|
|
955
|
+
export const amsProgressListSubstepsStepMarkerShapeOutlineColor = "#ffffff";
|
|
956
|
+
export const amsProgressListSubstepsStepMarkerShapeOutlineStyle = "solid";
|
|
957
|
+
export const amsProgressListSubstepsStepMarkerShapeOutlineWidth = "0.125rem";
|
|
958
|
+
export const amsProgressListSubstepsStepConnectorBackgroundColor = "#ffffff";
|
|
959
|
+
export const amsProgressListSubstepsStepConnectorBorderInlineColor = "#767676";
|
|
960
|
+
export const amsProgressListSubstepsStepConnectorBorderInlineStyle = "dashed";
|
|
961
|
+
export const amsProgressListSubstepsStepConnectorBorderInlineWidth = "1px";
|
|
962
|
+
export const amsProgressListSubstepsStepConnectorMarginBlockStart =
|
|
963
|
+
"calc(clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem) * 1.8 / 2)";
|
|
964
|
+
export const amsProgressListSubstepsStepConnectorLastChildBorderInlineColor =
|
|
965
|
+
"#ffffff";
|
|
966
|
+
export const amsProgressListSubstepsStepContentMarginBlockEnd =
|
|
967
|
+
"clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem)";
|
|
968
|
+
export const amsProgressListSubstepsStepCompletedMarkerShapeBackgroundColor =
|
|
969
|
+
"#00893c";
|
|
970
|
+
export const amsProgressListSubstepsStepCompletedMarkerShapeBorderColor =
|
|
971
|
+
"#00893c";
|
|
972
|
+
export const amsProgressListSubstepsStepCompletedConnectorBorderInlineColor =
|
|
973
|
+
"#00893c";
|
|
974
|
+
export const amsProgressListSubstepsStepCompletedConnectorBorderInlineStyle =
|
|
975
|
+
"solid";
|
|
976
|
+
export const amsProgressListSubstepsStepCurrentMarkerShapeBackgroundColor =
|
|
977
|
+
"#00893c";
|
|
978
|
+
export const amsProgressListSubstepsStepCurrentMarkerShapeBorderColor =
|
|
979
|
+
"#00893c";
|
|
980
|
+
export const amsProgressListSubstepsLastChildContentMarginBlockEnd =
|
|
981
|
+
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
982
|
+
export const amsRadioColor = "#202020";
|
|
885
983
|
export const amsRadioCursor = "pointer";
|
|
886
984
|
export const amsRadioFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
887
985
|
export const amsRadioFontSize =
|
|
@@ -926,7 +1024,7 @@ export const amsSearchFieldInputBackgroundColor = "#ffffff";
|
|
|
926
1024
|
export const amsSearchFieldInputBorderColor = "currentColor";
|
|
927
1025
|
export const amsSearchFieldInputBorderStyle = "solid";
|
|
928
1026
|
export const amsSearchFieldInputBorderWidth = "0.125rem";
|
|
929
|
-
export const amsSearchFieldInputColor = "#
|
|
1027
|
+
export const amsSearchFieldInputColor = "#202020";
|
|
930
1028
|
export const amsSearchFieldInputFontFamily =
|
|
931
1029
|
"'Amsterdam Sans', Arial, sans-serif";
|
|
932
1030
|
export const amsSearchFieldInputFontSize =
|
|
@@ -960,7 +1058,7 @@ export const amsSelectBackgroundPosition =
|
|
|
960
1058
|
export const amsSelectBorderColor = "currentColor";
|
|
961
1059
|
export const amsSelectBorderStyle = "solid";
|
|
962
1060
|
export const amsSelectBorderWidth = "0.125rem";
|
|
963
|
-
export const amsSelectColor = "#
|
|
1061
|
+
export const amsSelectColor = "#202020";
|
|
964
1062
|
export const amsSelectFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
965
1063
|
export const amsSelectFontSize =
|
|
966
1064
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -997,7 +1095,7 @@ export const amsSkipLinkPaddingInline =
|
|
|
997
1095
|
export const amsSkipLinkHoverBackgroundColor = "#003677";
|
|
998
1096
|
export const amsSpotlightBackgroundColor = "#a00078";
|
|
999
1097
|
export const amsSpotlightAzureBackgroundColor = "#009de6";
|
|
1000
|
-
export const amsSpotlightGreenBackgroundColor = "#
|
|
1098
|
+
export const amsSpotlightGreenBackgroundColor = "#00893c";
|
|
1001
1099
|
export const amsSpotlightLimeBackgroundColor = "#bed200";
|
|
1002
1100
|
export const amsSpotlightMagentaBackgroundColor = "#e50082";
|
|
1003
1101
|
export const amsSpotlightOrangeBackgroundColor = "#ff9100";
|
|
@@ -1022,8 +1120,8 @@ export const amsStandaloneLinkOutlineOffset = "0.25rem";
|
|
|
1022
1120
|
export const amsStandaloneLinkTextDecorationLine = "none";
|
|
1023
1121
|
export const amsStandaloneLinkTextDecorationThickness = "0.125rem";
|
|
1024
1122
|
export const amsStandaloneLinkTextUnderlineOffset = "0.15625rem";
|
|
1025
|
-
export const amsStandaloneLinkContrastColor = "#
|
|
1026
|
-
export const amsStandaloneLinkContrastHoverColor = "#
|
|
1123
|
+
export const amsStandaloneLinkContrastColor = "#202020";
|
|
1124
|
+
export const amsStandaloneLinkContrastHoverColor = "#202020";
|
|
1027
1125
|
export const amsStandaloneLinkInverseColor = "#ffffff";
|
|
1028
1126
|
export const amsStandaloneLinkInverseHoverColor = "#ffffff";
|
|
1029
1127
|
export const amsSwitchBackgroundColor = "#767676";
|
|
@@ -1063,7 +1161,7 @@ export const amsTableOfContentsListListPaddingBlockStart =
|
|
|
1063
1161
|
"clamp(0.5rem, 0.4286rem + 0.3571vw, 0.75rem)";
|
|
1064
1162
|
export const amsTableOfContentsListListPaddingInlineStart =
|
|
1065
1163
|
"clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem)";
|
|
1066
|
-
export const amsTableColor = "#
|
|
1164
|
+
export const amsTableColor = "#202020";
|
|
1067
1165
|
export const amsTableFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
1068
1166
|
export const amsTableFontSize =
|
|
1069
1167
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -1100,7 +1198,7 @@ export const amsTextAreaBackgroundColor = "#ffffff";
|
|
|
1100
1198
|
export const amsTextAreaBorderColor = "currentColor";
|
|
1101
1199
|
export const amsTextAreaBorderStyle = "solid";
|
|
1102
1200
|
export const amsTextAreaBorderWidth = "0.125rem";
|
|
1103
|
-
export const amsTextAreaColor = "#
|
|
1201
|
+
export const amsTextAreaColor = "#202020";
|
|
1104
1202
|
export const amsTextAreaFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
1105
1203
|
export const amsTextAreaFontSize =
|
|
1106
1204
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -1124,7 +1222,7 @@ export const amsTextInputBackgroundColor = "#ffffff";
|
|
|
1124
1222
|
export const amsTextInputBorderColor = "currentColor";
|
|
1125
1223
|
export const amsTextInputBorderStyle = "solid";
|
|
1126
1224
|
export const amsTextInputBorderWidth = "0.125rem";
|
|
1127
|
-
export const amsTextInputColor = "#
|
|
1225
|
+
export const amsTextInputColor = "#202020";
|
|
1128
1226
|
export const amsTextInputFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
1129
1227
|
export const amsTextInputFontSize =
|
|
1130
1228
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -1143,12 +1241,12 @@ export const amsTextInputInvalidHoverBorderColor = "#b70000";
|
|
|
1143
1241
|
export const amsTextInputInvalidHoverBoxShadow =
|
|
1144
1242
|
"inset 0 0 0 0.0625rem #b70000";
|
|
1145
1243
|
export const amsTextInputPlaceholderColor = "#767676";
|
|
1244
|
+
export const amsTimeInputDisabledCalendarPickerIndicatorBackgroundImage =
|
|
1245
|
+
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23767676'><path d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16A16 16 0 0 0 16 0zm.9 28v-2h-2v1.9A11.8 11.8 0 0 1 4.1 17H6v-2H4.1A11.8 11.8 0 0 1 15 4.1V6h2V4.1A11.8 11.8 0 0 1 27.9 15H26v2h1.9a11.9 11.9 0 0 1-11 11zm.1-13h4v2h-6V9h2v6z'/></svg>\")";
|
|
1146
1246
|
export const amsTimeInputDisabledCalenderPickerIndicatorBackgroundImage =
|
|
1147
1247
|
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23767676'><path d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16A16 16 0 0 0 16 0zm.9 28v-2h-2v1.9A11.8 11.8 0 0 1 4.1 17H6v-2H4.1A11.8 11.8 0 0 1 15 4.1V6h2V4.1A11.8 11.8 0 0 1 27.9 15H26v2h1.9a11.9 11.9 0 0 1-11 11zm.1-13h4v2h-6V9h2v6z'/></svg>\")"; // Use the token with ‘calendar’ spelled correctly instead
|
|
1148
1248
|
export const amsTimeInputDisabledColor = "#767676";
|
|
1149
1249
|
export const amsTimeInputDisabledCursor = "not-allowed";
|
|
1150
|
-
export const amsTimeInputDisabledCalendarPickerIndicatorBackgroundImage =
|
|
1151
|
-
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23767676'><path d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16A16 16 0 0 0 16 0zm.9 28v-2h-2v1.9A11.8 11.8 0 0 1 4.1 17H6v-2H4.1A11.8 11.8 0 0 1 15 4.1V6h2V4.1A11.8 11.8 0 0 1 27.9 15H26v2h1.9a11.9 11.9 0 0 1-11 11zm.1-13h4v2h-6V9h2v6z'/></svg>\")";
|
|
1152
1250
|
export const amsTimeInputHoverCalenderPickerIndicatorBackgroundImage =
|
|
1153
1251
|
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23003677'><path d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16A16 16 0 0 0 16 0zm.9 28v-2h-2v1.9A11.8 11.8 0 0 1 4.1 17H6v-2H4.1A11.8 11.8 0 0 1 15 4.1V6h2V4.1A11.8 11.8 0 0 1 27.9 15H26v2h1.9a11.9 11.9 0 0 1-11 11zm.1-13h4v2h-6V9h2v6z'/></svg>\")"; // Use the token with ‘calendar’ spelled correctly instead
|
|
1154
1252
|
export const amsTimeInputHoverBoxShadow = "inset 0 0 0 0.0625rem";
|
|
@@ -1161,7 +1259,7 @@ export const amsTimeInputBackgroundColor = "#ffffff";
|
|
|
1161
1259
|
export const amsTimeInputBorderColor = "currentColor";
|
|
1162
1260
|
export const amsTimeInputBorderStyle = "solid";
|
|
1163
1261
|
export const amsTimeInputBorderWidth = "0.125rem";
|
|
1164
|
-
export const amsTimeInputColor = "#
|
|
1262
|
+
export const amsTimeInputColor = "#202020";
|
|
1165
1263
|
export const amsTimeInputFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
1166
1264
|
export const amsTimeInputFontSize =
|
|
1167
1265
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|
|
@@ -1179,7 +1277,7 @@ export const amsTimeInputInvalidHoverBoxShadow =
|
|
|
1179
1277
|
export const amsTimeInputCalendarPickerIndicatorBackgroundImage =
|
|
1180
1278
|
"url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23004699'><path d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16A16 16 0 0 0 16 0zm.9 28v-2h-2v1.9A11.8 11.8 0 0 1 4.1 17H6v-2H4.1A11.8 11.8 0 0 1 15 4.1V6h2V4.1A11.8 11.8 0 0 1 27.9 15H26v2h1.9a11.9 11.9 0 0 1-11 11zm.1-13h4v2h-6V9h2v6z'/></svg>\")";
|
|
1181
1279
|
export const amsTimeInputCalendarPickerIndicatorCursor = "pointer";
|
|
1182
|
-
export const amsUnorderedListColor = "#
|
|
1280
|
+
export const amsUnorderedListColor = "#202020";
|
|
1183
1281
|
export const amsUnorderedListFontFamily = "'Amsterdam Sans', Arial, sans-serif";
|
|
1184
1282
|
export const amsUnorderedListFontSize =
|
|
1185
1283
|
"clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem)";
|