@amsterdam/design-system-tokens 0.7.1 → 0.9.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/dist/compact.css +1 -1
  3. package/dist/compact.d.ts +1 -1
  4. package/dist/compact.mjs +1 -1
  5. package/dist/compact.scss +1 -1
  6. package/dist/compact.theme.css +1 -1
  7. package/dist/index.css +232 -95
  8. package/dist/index.d.ts +278 -49
  9. package/dist/index.json +341 -112
  10. package/dist/index.mjs +244 -107
  11. package/dist/index.scss +232 -95
  12. package/dist/index.theme.css +232 -95
  13. package/package.json +1 -1
  14. package/src/brand/ams/border.tokens.json +12 -0
  15. package/src/common/ams/focus.tokens.json +1 -1
  16. package/src/common/ams/link-appearance.tokens.json +4 -4
  17. package/src/components/ams/accordion.tokens.json +6 -4
  18. package/src/components/ams/alert.tokens.json +1 -1
  19. package/src/components/ams/badge.tokens.json +28 -4
  20. package/src/components/ams/breadcrumb.tokens.json +1 -1
  21. package/src/components/ams/button.tokens.json +11 -8
  22. package/src/components/ams/checkbox.tokens.json +6 -2
  23. package/src/components/ams/date-input.tokens.json +45 -0
  24. package/src/components/ams/description-list.tokens.json +20 -0
  25. package/src/components/ams/error-message.tokens.json +11 -0
  26. package/src/components/ams/{fieldset.tokens.json → field-set.tokens.json} +11 -2
  27. package/src/components/ams/field.tokens.json +17 -0
  28. package/src/components/ams/file-input.tokens.json +42 -0
  29. package/src/components/ams/{form-label.tokens.json → label.tokens.json} +1 -1
  30. package/src/components/ams/link-list.tokens.json +2 -4
  31. package/src/components/ams/logo.tokens.json +1 -1
  32. package/src/components/ams/ordered-list.tokens.json +4 -0
  33. package/src/components/ams/page-menu.tokens.json +2 -2
  34. package/src/components/ams/paragraph.tokens.json +2 -4
  35. package/src/components/ams/radio.tokens.json +4 -1
  36. package/src/components/ams/screen.tokens.json +3 -2
  37. package/src/components/ams/search-field.tokens.json +16 -9
  38. package/src/components/ams/select.tokens.json +41 -0
  39. package/src/components/ams/skip-link.tokens.json +1 -1
  40. package/src/components/ams/switch.tokens.json +6 -5
  41. package/src/components/ams/table.tokens.json +2 -2
  42. package/src/components/ams/tabs.tokens.json +3 -4
  43. package/src/components/ams/text-area.tokens.json +10 -9
  44. package/src/components/ams/text-input.tokens.json +8 -7
  45. package/src/components/ams/time-input.tokens.json +45 -0
  46. package/src/components/ams/unordered-list.tokens.json +4 -0
  47. package/src/common/ams/border.tokens.json +0 -9
package/dist/index.json CHANGED
@@ -1,5 +1,13 @@
1
1
  {
2
2
  "ams": {
3
+ "border": {
4
+ "width": {
5
+ "sm": "0.0625rem",
6
+ "md": "0.125rem",
7
+ "lg": "0.1875rem",
8
+ "xl": "0.25rem"
9
+ }
10
+ },
3
11
  "color": {
4
12
  "primary-black": "#000000",
5
13
  "primary-white": "#FFFFFF",
@@ -105,13 +113,8 @@
105
113
  "cursor": "pointer"
106
114
  }
107
115
  },
108
- "border-width": {
109
- "sm": "1px",
110
- "md": "2px",
111
- "lg": "3px"
112
- },
113
116
  "focus": {
114
- "outline-offset": "2px"
117
+ "outline-offset": "0.125rem"
115
118
  },
116
119
  "hyphenation": {
117
120
  "hyphenate-limit-chars": "12 8 4",
@@ -121,7 +124,7 @@
121
124
  "link-appearance": {
122
125
  "color": "#004699",
123
126
  "text-decoration-thickness": "0.125rem",
124
- "text-underline-offset": "0.375rem",
127
+ "text-underline-offset": "0.3333em",
125
128
  "hover": {
126
129
  "color": "#102E62"
127
130
  },
@@ -135,7 +138,7 @@
135
138
  "text-decoration-line": "underline",
136
139
  "hover": {
137
140
  "text-decoration-thickness": "0.1875rem",
138
- "text-underline-offset": "0.3125rem"
141
+ "text-underline-offset": "0.2778em"
139
142
  }
140
143
  },
141
144
  "subtle": {
@@ -146,28 +149,30 @@
146
149
  }
147
150
  },
148
151
  "accordion": {
152
+ "gap": ".5rem",
149
153
  "button": {
150
154
  "color": "#004699",
151
155
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
152
156
  "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
153
157
  "font-weight": 800,
158
+ "gap": "1rem",
154
159
  "line-height": "1.6",
155
160
  "padding-block": ".75rem",
156
- "padding-inline": "1rem",
161
+ "padding-inline": "0",
157
162
  "focus": {
158
- "outline-offset": "2px"
163
+ "outline-offset": "0.125rem"
159
164
  },
160
165
  "hover": {
161
- "box-shadow": "inset 0 0 0 2px #767676"
166
+ "color": "#102E62"
162
167
  }
163
168
  },
164
169
  "panel": {
165
- "padding-block": "1rem",
166
- "padding-inline": "1rem"
170
+ "padding-block": "0 1rem",
171
+ "padding-inline": "0"
167
172
  }
168
173
  },
169
174
  "alert": {
170
- "border-width": "4px",
175
+ "border-width": "0.25rem",
171
176
  "border-style": "solid",
172
177
  "gap": "1rem",
173
178
  "padding-block": "1rem",
@@ -250,11 +255,11 @@
250
255
  "font-weight": 800,
251
256
  "line-height": "1.6",
252
257
  "padding-inline": ".5rem",
253
- "blue": {
254
- "background-color": "#009DE6",
255
- "color": "#000000"
258
+ "black": {
259
+ "background-color": "#000000",
260
+ "color": "#FFFFFF"
256
261
  },
257
- "dark-blue": {
262
+ "blue": {
258
263
  "background-color": "#004699",
259
264
  "color": "#FFFFFF"
260
265
  },
@@ -266,6 +271,22 @@
266
271
  "background-color": "#BED200",
267
272
  "color": "#000000"
268
273
  },
274
+ "grey-1": {
275
+ "background-color": "#E8E8E8",
276
+ "color": "#000000"
277
+ },
278
+ "grey-2": {
279
+ "background-color": "#BEBEBE",
280
+ "color": "#000000"
281
+ },
282
+ "grey-3": {
283
+ "background-color": "#767676",
284
+ "color": "#FFFFFF"
285
+ },
286
+ "light-blue": {
287
+ "background-color": "#009DE6",
288
+ "color": "#000000"
289
+ },
269
290
  "magenta": {
270
291
  "background-color": "#E50082",
271
292
  "color": "#FFFFFF"
@@ -278,6 +299,14 @@
278
299
  "background-color": "#A00078",
279
300
  "color": "#FFFFFF"
280
301
  },
302
+ "red": {
303
+ "background-color": "#EC0000",
304
+ "color": "#FFFFFF"
305
+ },
306
+ "white": {
307
+ "background-color": "#FFFFFF",
308
+ "color": "#000000"
309
+ },
281
310
  "yellow": {
282
311
  "background-color": "#FFE600",
283
312
  "color": "#000000"
@@ -299,12 +328,12 @@
299
328
  "separator": {
300
329
  "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23000000' fill-rule='evenodd' d='m9.757 32-2.9-2.91L19.937 16 6.857 2.91 9.757 0l16 16z'/></svg>\")"
301
330
  },
302
- "item-link": {
331
+ "link": {
303
332
  "color": "#004699",
304
- "outline-offset": "2px",
333
+ "outline-offset": "0.125rem",
305
334
  "text-decoration-line": "none",
306
335
  "text-decoration-thickness": "0.125rem",
307
- "text-underline-offset": "0.375rem",
336
+ "text-underline-offset": "0.3333em",
308
337
  "hover": {
309
338
  "color": "#102E62",
310
339
  "text-decoration-line": "underline"
@@ -319,45 +348,48 @@
319
348
  "gap": "1rem",
320
349
  "padding-block": ".5rem",
321
350
  "padding-inline": "1rem",
322
- "outline-offset": "2px",
351
+ "outline-offset": "0.125rem",
323
352
  "disabled": {
324
353
  "cursor": "not-allowed"
325
354
  },
355
+ "forced-color-mode": {
356
+ "border": "0.125rem solid"
357
+ },
326
358
  "primary": {
327
359
  "background-color": "#004699",
328
- "box-shadow": "inset 0 0 0 2px #004699",
360
+ "box-shadow": "inset 0 0 0 0.125rem #004699",
329
361
  "color": "#FFFFFF",
330
362
  "disabled": {
331
363
  "background-color": "#BEBEBE",
332
- "box-shadow": "inset 0 0 0 2px #BEBEBE"
364
+ "box-shadow": "inset 0 0 0 0.125rem #BEBEBE"
333
365
  },
334
366
  "hover": {
335
367
  "background-color": "#102E62",
336
- "box-shadow": "inset 0 0 0 2px #102E62"
368
+ "box-shadow": "inset 0 0 0 0.125rem #102E62"
337
369
  }
338
370
  },
339
371
  "secondary": {
340
372
  "background-color": "#FFFFFF",
341
373
  "color": "#004699",
342
- "box-shadow": "inset 0 0 0 2px #004699",
374
+ "box-shadow": "inset 0 0 0 0.125rem #004699",
343
375
  "hover": {
344
- "box-shadow": "inset 0 0 0 3px #102E62",
376
+ "box-shadow": "inset 0 0 0 0.1875rem #102E62",
345
377
  "color": "#102E62"
346
378
  },
347
379
  "disabled": {
348
380
  "background-color": "#FFFFFF",
349
- "box-shadow": "inset 0 0 0 2px #BEBEBE",
381
+ "box-shadow": "inset 0 0 0 0.125rem #BEBEBE",
350
382
  "color": "#BEBEBE"
351
383
  },
352
384
  "focus": {
353
- "box-shadow": "inset 0 0 0 2px #004699"
385
+ "box-shadow": "inset 0 0 0 0.125rem #004699"
354
386
  }
355
387
  },
356
388
  "tertiary": {
357
389
  "background-color": "transparent",
358
390
  "color": "#004699",
359
391
  "hover": {
360
- "box-shadow": "inset 0 0 0 2px #102E62",
392
+ "box-shadow": "inset 0 0 0 0.125rem #102E62",
361
393
  "color": "#102E62"
362
394
  },
363
395
  "disabled": {
@@ -371,13 +403,13 @@
371
403
  "color": "#004699",
372
404
  "text-decoration-line": "none",
373
405
  "text-decoration-thickness": "0.125rem",
374
- "text-underline-offset": "0.375rem",
406
+ "text-underline-offset": "0.3333em",
375
407
  "hover": {
376
408
  "color": "#102E62",
377
409
  "text-decoration-line": "underline"
378
410
  }
379
411
  },
380
- "outline-offset": "2px"
412
+ "outline-offset": "0.125rem"
381
413
  },
382
414
  "checkbox": {
383
415
  "color": "#000000",
@@ -385,9 +417,10 @@
385
417
  "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
386
418
  "font-weight": 400,
387
419
  "line-height": "1.6",
388
- "outline-offset": "2px",
420
+ "outline-offset": "0.125rem",
389
421
  "checkmark": {
390
422
  "border-color": "#004699",
423
+ "border-width": "0.125rem",
391
424
  "checked": {
392
425
  "background-color": "#004699",
393
426
  "background-image": "url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M12.216 27.016 0 14.168l2.91-2.77 9.346 9.837L29.129 4 32 6.8z'/%3E%3C/svg%3E\")",
@@ -397,6 +430,7 @@
397
430
  },
398
431
  "disabled": {
399
432
  "border-color": "#767676",
433
+ "border-width": "0.125rem",
400
434
  "checked": {
401
435
  "background-color": "#767676",
402
436
  "hover": {
@@ -411,7 +445,8 @@
411
445
  }
412
446
  },
413
447
  "hover": {
414
- "border-color": "#102E62"
448
+ "border-color": "#102E62",
449
+ "border-width": "0.1875rem"
415
450
  },
416
451
  "invalid": {
417
452
  "border-color": "#EC0000",
@@ -443,7 +478,8 @@
443
478
  "color": "#767676"
444
479
  },
445
480
  "hover": {
446
- "color": "#102E62"
481
+ "color": "#102E62",
482
+ "text-decoration-thickness": "0.125rem"
447
483
  }
448
484
  },
449
485
  "column": {
@@ -455,6 +491,57 @@
455
491
  "xl": "clamp(2rem, calc(6.25vw + 0.75rem), 7rem)"
456
492
  }
457
493
  },
494
+ "date-input": {
495
+ "background-color": "#FFFFFF",
496
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
497
+ "color": "#000000",
498
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
499
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
500
+ "font-weight": 400,
501
+ "line-height": "1.6",
502
+ "outline-offset": "0.125rem",
503
+ "padding-block": ".5rem",
504
+ "padding-inline": "1.5rem",
505
+ "calender-picker-indicator": {
506
+ "background-image": "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>\")"
507
+ },
508
+ "disabled": {
509
+ "background-color": "#FFFFFF",
510
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
511
+ "color": "#BEBEBE",
512
+ "calender-picker-indicator": {
513
+ "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='%23BEBEBE'><path d='M28 6V2h-4v4H12V2H8v4H2v28h32V6zm2 24H6V14h24z'/><path d='M10 17h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12 6h4v4h-4zm6 0h4v4h-4z'/></svg>\")"
514
+ }
515
+ },
516
+ "hover": {
517
+ "box-shadow": "inset 0 0 0 0.125rem #000000",
518
+ "calender-picker-indicator": {
519
+ "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='%23102E62'><path d='M28 6V2h-4v4H12V2H8v4H2v28h32V6zm2 24H6V14h24z'/><path d='M10 17h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12 6h4v4h-4zm6 0h4v4h-4z'/></svg>\")"
520
+ }
521
+ },
522
+ "invalid": {
523
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
524
+ "hover": {
525
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
526
+ }
527
+ }
528
+ },
529
+ "description-list": {
530
+ "color": "#000000",
531
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
532
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
533
+ "font-weight": 400,
534
+ "gap": "1rem",
535
+ "inverse-color": "#FFFFFF",
536
+ "line-height": "1.6",
537
+ "row": {
538
+ "gap": "1rem"
539
+ },
540
+ "details": {
541
+ "font-weight": 800,
542
+ "padding-inline-start": "2rem"
543
+ }
544
+ },
458
545
  "dialog": {
459
546
  "background-color": "#FFFFFF",
460
547
  "border": "0",
@@ -472,13 +559,70 @@
472
559
  "gap": "1rem"
473
560
  }
474
561
  },
475
- "fieldset": {
562
+ "error-message": {
563
+ "color": "#EC0000",
564
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
565
+ "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
566
+ "font-weight": 400,
567
+ "line-height": "1.6"
568
+ },
569
+ "field-set": {
570
+ "invalid": {
571
+ "border-inline-start": "0.1875rem solid #EC0000",
572
+ "padding-inline-start": "1rem"
573
+ },
476
574
  "legend": {
477
575
  "color": "#000000",
478
576
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
479
577
  "font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
480
578
  "font-weight": 800,
481
- "line-height": "1.5"
579
+ "line-height": "1.5",
580
+ "margin-block-end": "1rem"
581
+ }
582
+ },
583
+ "field": {
584
+ "gap": ".75rem",
585
+ "invalid": {
586
+ "border-inline-start": "0.1875rem solid #EC0000",
587
+ "padding-inline-start": "1rem"
588
+ }
589
+ },
590
+ "file-input": {
591
+ "background-color": "#FFFFFF",
592
+ "border": "0.0625rem dashed #767676",
593
+ "color": "#000000",
594
+ "cursor": "pointer",
595
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
596
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
597
+ "font-weight": 400,
598
+ "line-height": "1.6",
599
+ "outline-offset": "0.125rem",
600
+ "padding-block": "1rem",
601
+ "padding-inline": "1rem",
602
+ "disabled": {
603
+ "color": "#BEBEBE",
604
+ "cursor": "not-allowed"
605
+ },
606
+ "file-selector-button": {
607
+ "background-color": "#FFFFFF",
608
+ "box-shadow": "inset 0 0 0 0.125rem #004699",
609
+ "color": "#004699",
610
+ "cursor": "pointer",
611
+ "margin-inline-end": "1rem",
612
+ "padding-block": ".5rem",
613
+ "padding-inline": "1rem",
614
+ "hover": {
615
+ "box-shadow": "inset 0 0 0 0.1875rem #102E62",
616
+ "color": "#102E62"
617
+ },
618
+ "disabled": {
619
+ "box-shadow": "inset 0 0 0 0.125rem #BEBEBE",
620
+ "color": "#BEBEBE",
621
+ "cursor": "not-allowed"
622
+ },
623
+ "forced-color-mode": {
624
+ "border": "0.125rem solid"
625
+ }
482
626
  }
483
627
  },
484
628
  "form-field-character-counter": {
@@ -491,13 +635,6 @@
491
635
  "color": "#EC0000"
492
636
  }
493
637
  },
494
- "form-label": {
495
- "color": "#000000",
496
- "font-family": "'Amsterdam Sans', Arial, sans-serif",
497
- "font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
498
- "font-weight": 800,
499
- "line-height": "1.5"
500
- },
501
638
  "gap": {
502
639
  "xs": "clamp(0.25rem, calc(0.78125vw + 0.09375rem), 0.875rem)",
503
640
  "sm": "clamp(0.5rem, calc(1.5625vw + 0.1875rem), 1.75rem)",
@@ -530,7 +667,7 @@
530
667
  "column-gap": "clamp(1rem, calc(3.125vw + 0.375rem), 3.5rem)",
531
668
  "padding-block": "1rem",
532
669
  "logo-link": {
533
- "outline-offset": "2px"
670
+ "outline-offset": "0.125rem"
534
671
  }
535
672
  },
536
673
  "heading": {
@@ -567,7 +704,7 @@
567
704
  },
568
705
  "icon-button": {
569
706
  "color": "#004699",
570
- "outline-offset": "2px",
707
+ "outline-offset": "0.125rem",
571
708
  "hover": {
572
709
  "background-color": "rgba(0, 70, 153, 0.125)",
573
710
  "color": "#102E62"
@@ -616,25 +753,30 @@
616
753
  "line-height": "1.6"
617
754
  }
618
755
  },
756
+ "label": {
757
+ "color": "#000000",
758
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
759
+ "font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
760
+ "font-weight": 800,
761
+ "line-height": "1.5"
762
+ },
619
763
  "link-list": {
620
764
  "gap": "0.5em",
621
765
  "link": {
622
766
  "color": "#004699",
623
767
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
768
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
624
769
  "font-weight": 400,
625
770
  "gap": "0.5em",
626
- "outline-offset": "2px",
771
+ "line-height": "1.6",
772
+ "outline-offset": "0.125rem",
627
773
  "text-decoration-line": "none",
628
774
  "text-decoration-thickness": "0.125rem",
629
- "text-underline-offset": "0.375rem",
775
+ "text-underline-offset": "0.3333em",
630
776
  "small": {
631
777
  "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
632
778
  "line-height": "1.6"
633
779
  },
634
- "medium": {
635
- "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
636
- "line-height": "1.6"
637
- },
638
780
  "large": {
639
781
  "font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
640
782
  "line-height": "1.5"
@@ -661,20 +803,20 @@
661
803
  "color": "#004699",
662
804
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
663
805
  "font-weight": 400,
664
- "outline-offset": "2px",
806
+ "outline-offset": "0.125rem",
665
807
  "hover": {
666
808
  "color": "#102E62"
667
809
  },
668
810
  "inline": {
669
811
  "text-decoration-line": "underline",
670
812
  "text-decoration-thickness": "0.125rem",
671
- "text-underline-offset": "0.375rem",
813
+ "text-underline-offset": "0.3333em",
672
814
  "font-family": "inherit",
673
815
  "font-size": "inherit",
674
816
  "line-height": "inherit",
675
817
  "hover": {
676
818
  "text-decoration-thickness": "0.1875rem",
677
- "text-underline-offset": "0.3125rem"
819
+ "text-underline-offset": "0.2778em"
678
820
  },
679
821
  "visited": {
680
822
  "color": "#A00078"
@@ -685,10 +827,10 @@
685
827
  "line-height": "1.6",
686
828
  "text-decoration-line": "underline",
687
829
  "text-decoration-thickness": "0.125rem",
688
- "text-underline-offset": "0.375rem",
830
+ "text-underline-offset": "0.3333em",
689
831
  "hover": {
690
832
  "text-decoration-thickness": "0.1875rem",
691
- "text-underline-offset": "0.3125rem"
833
+ "text-underline-offset": "0.2778em"
692
834
  }
693
835
  },
694
836
  "on-background-dark": {
@@ -711,7 +853,7 @@
711
853
  }
712
854
  },
713
855
  "logo": {
714
- "height": "2.5rem",
856
+ "block-size": "2.5rem",
715
857
  "emblem": {
716
858
  "color": "#EC0000"
717
859
  },
@@ -749,6 +891,10 @@
749
891
  "inverse-color": "#FFFFFF",
750
892
  "line-height": "1.6",
751
893
  "list-style-type": "decimal",
894
+ "small": {
895
+ "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
896
+ "line-height": "1.6"
897
+ },
752
898
  "item": {
753
899
  "margin-inline-start": "2.25rem",
754
900
  "padding-inline-start": "0.25rem"
@@ -770,8 +916,8 @@
770
916
  "line-height": "clamp(2.432rem, calc(2.683vw + 1.895rem), 4.578rem)"
771
917
  },
772
918
  "page-menu": {
773
- "column-gap": "2.5rem",
774
- "row-gap": "0.5rem",
919
+ "column-gap": "clamp(1rem, calc(3.125vw + 0.375rem), 3.5rem)",
920
+ "row-gap": "clamp(0.25rem, calc(0.78125vw + 0.09375rem), 0.875rem)",
775
921
  "item": {
776
922
  "color": "#004699",
777
923
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
@@ -779,10 +925,10 @@
779
925
  "font-weight": 400,
780
926
  "gap": "0.5rem",
781
927
  "line-height": "1.6",
782
- "outline-offset": "2px",
928
+ "outline-offset": "0.125rem",
783
929
  "text-decoration-line": "none",
784
930
  "text-decoration-thickness": "0.125rem",
785
- "text-underline-offset": "0.375rem",
931
+ "text-underline-offset": "0.3333em",
786
932
  "hover": {
787
933
  "color": "#102E62",
788
934
  "text-decoration-line": "underline"
@@ -796,11 +942,11 @@
796
942
  "font-weight": 400,
797
943
  "line-height": "1.6",
798
944
  "button": {
799
- "outline-offset": "2px",
945
+ "outline-offset": "0.125rem",
800
946
  "padding-inline": ".75rem",
801
947
  "text-decoration-line": "none",
802
948
  "text-decoration-thickness": "0.125rem",
803
- "text-underline-offset": "0.375rem",
949
+ "text-underline-offset": "0.3333em",
804
950
  "current": {
805
951
  "font-weight": 800
806
952
  },
@@ -813,16 +959,14 @@
813
959
  "paragraph": {
814
960
  "color": "#000000",
815
961
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
962
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
816
963
  "font-weight": 400,
964
+ "line-height": "1.6",
817
965
  "inverse-color": "#FFFFFF",
818
966
  "small": {
819
967
  "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
820
968
  "line-height": "1.6"
821
969
  },
822
- "medium": {
823
- "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
824
- "line-height": "1.6"
825
- },
826
970
  "large": {
827
971
  "font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
828
972
  "line-height": "1.5"
@@ -834,9 +978,10 @@
834
978
  "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
835
979
  "font-weight": 400,
836
980
  "line-height": "1.6",
837
- "outline-offset": "2px",
981
+ "outline-offset": "0.125rem",
838
982
  "circle": {
839
983
  "border-color": "#004699",
984
+ "border-width": "0.125rem",
840
985
  "checked": {
841
986
  "background-image": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill='%23004699'%3E%3Ccircle cx='16' cy='16' r='16' /%3E%3C/svg%3E\")",
842
987
  "hover": {
@@ -845,6 +990,7 @@
845
990
  },
846
991
  "disabled": {
847
992
  "border-color": "#767676",
993
+ "border-width": "0.125rem",
848
994
  "checked": {
849
995
  "background-image": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill='%23767676'%3E%3Ccircle cx='16' cy='16' r='16' /%3E%3C/svg%3E\")",
850
996
  "hover": {
@@ -872,7 +1018,8 @@
872
1018
  "color": "#767676"
873
1019
  },
874
1020
  "hover": {
875
- "color": "#102E62"
1021
+ "color": "#102E62",
1022
+ "text-decoration-thickness": "0.125rem"
876
1023
  }
877
1024
  },
878
1025
  "row": {
@@ -885,56 +1032,97 @@
885
1032
  }
886
1033
  },
887
1034
  "screen": {
1035
+ "background-color": "#FFFFFF",
888
1036
  "wide": {
889
- "max-width": "100rem"
1037
+ "max-inline-size": "100rem"
890
1038
  },
891
1039
  "x-wide": {
892
- "max-width": "132rem"
1040
+ "max-inline-size": "132rem"
893
1041
  }
894
1042
  },
895
1043
  "search-field": {
896
1044
  "button": {
897
1045
  "background-color": "#004699",
898
1046
  "color": "#FFFFFF",
899
- "outline-offset": "2px",
1047
+ "outline-offset": "0.125rem",
1048
+ "padding-block": ".5rem",
1049
+ "padding-inline": ".5rem",
900
1050
  "hover": {
901
1051
  "background-color": "#102E62"
902
- },
903
- "padding-block": ".5rem",
904
- "padding-inline": ".5rem"
1052
+ }
905
1053
  },
906
1054
  "input": {
907
- "box-shadow": "inset 0 0 0 1px #000000",
1055
+ "background-color": "#FFFFFF",
1056
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
908
1057
  "color": "#000000",
909
1058
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
910
- "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
1059
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
911
1060
  "font-weight": 400,
912
1061
  "line-height": "1.6",
913
- "outline-offset": "2px",
1062
+ "outline-offset": "0.125rem",
914
1063
  "padding-block": ".5rem",
915
1064
  "padding-inline": "1rem",
916
1065
  "cancel-button": {
917
1066
  "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23004699' fill-rule='evenodd' d='M29.333 5.47 26.53 2.668 16 13.187 5.47 2.666 2.668 5.47 13.187 16 2.666 26.53l2.804 2.803L16 18.813l10.53 10.52 2.803-2.804L18.813 16z'/></svg>\")",
1067
+ "block-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
918
1068
  "color": "#004699",
919
- "height": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
920
- "width": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)"
1069
+ "inline-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)"
921
1070
  },
922
1071
  "hover": {
923
- "box-shadow": "inset 0 0 0 2px #000000"
1072
+ "box-shadow": "inset 0 0 0 0.125rem #000000"
1073
+ },
1074
+ "invalid": {
1075
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1076
+ "hover": {
1077
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1078
+ }
924
1079
  },
925
1080
  "placeholder": {
926
1081
  "color": "#767676"
927
1082
  }
928
1083
  }
929
1084
  },
1085
+ "select": {
1086
+ "background-color": "#FFFFFF",
1087
+ "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23004699' fill-rule='evenodd' d='m16 25.757-16-16 2.91-2.9L16 19.937l13.09-13.08 2.91 2.9z'/></svg>\")",
1088
+ "background-position": "right 1rem center",
1089
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
1090
+ "color": "#000000",
1091
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
1092
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1093
+ "font-weight": 400,
1094
+ "line-height": "1.6",
1095
+ "outline-offset": "0.125rem",
1096
+ "padding-block": ".5rem",
1097
+ "padding-inline": "1rem calc(2 * 1rem + 1em)",
1098
+ "disabled": {
1099
+ "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23BEBEBE' fill-rule='evenodd' d='m16 25.757-16-16 2.91-2.9L16 19.937l13.09-13.08 2.91 2.9z'/></svg>\")",
1100
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
1101
+ "color": "#BEBEBE"
1102
+ },
1103
+ "hover": {
1104
+ "box-shadow": "inset 0 0 0 0.125rem #000000"
1105
+ },
1106
+ "invalid": {
1107
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1108
+ "hover": {
1109
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1110
+ }
1111
+ },
1112
+ "option": {
1113
+ "disabled": {
1114
+ "color": "#BEBEBE"
1115
+ }
1116
+ }
1117
+ },
930
1118
  "skip-link": {
931
1119
  "background-color": "#004699",
932
1120
  "color": "#FFFFFF",
933
1121
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
934
- "font-weight": 400,
935
1122
  "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
1123
+ "font-weight": 400,
936
1124
  "line-height": "1.6",
937
- "outline-offset": "2px",
1125
+ "outline-offset": "0.125rem",
938
1126
  "padding-block": ".5rem",
939
1127
  "padding-inline": "1rem",
940
1128
  "hover": {
@@ -968,21 +1156,22 @@
968
1156
  }
969
1157
  },
970
1158
  "switch": {
971
- "font-family": "'Amsterdam Sans', Arial, sans-serif",
972
1159
  "background-color": "#767676",
973
- "width": "3.5rem",
1160
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
1161
+ "outline-offset": "0.125rem",
1162
+ "inline-size": "3.5rem",
974
1163
  "thumb": {
975
1164
  "background-color": "#FFFFFF",
976
- "width": "1.75rem",
977
- "height": "1.75rem",
1165
+ "inline-size": "1.75rem",
1166
+ "block-size": "1.75rem",
978
1167
  "hover": {
1168
+ "box-shadow": "0 0 0 0.125rem #102E62",
979
1169
  "color": "#102E62"
980
1170
  }
981
1171
  },
982
1172
  "checked": {
983
1173
  "background-color": "#004699"
984
1174
  },
985
- "outline-offset": "2px",
986
1175
  "disabled": {
987
1176
  "background-color": "#BEBEBE"
988
1177
  }
@@ -990,14 +1179,14 @@
990
1179
  "table": {
991
1180
  "color": "#000000",
992
1181
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
993
- "font-weight": 400,
994
1182
  "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1183
+ "font-weight": 400,
995
1184
  "line-height": "1.6",
996
1185
  "caption": {
997
1186
  "font-weight": 800
998
1187
  },
999
1188
  "cell": {
1000
- "border-bottom": "1px solid #E8E8E8",
1189
+ "border-block-end": "0.0625rem solid #E8E8E8",
1001
1190
  "padding-block": "1rem",
1002
1191
  "padding-inline": "1rem"
1003
1192
  },
@@ -1007,16 +1196,15 @@
1007
1196
  },
1008
1197
  "tabs": {
1009
1198
  "list": {
1010
- "border-bottom": ".125rem solid #004699"
1199
+ "background-color": "#FFFFFF",
1200
+ "border-block-end": "0.125rem solid #004699"
1011
1201
  },
1012
1202
  "button": {
1013
- "background-color": "transparent",
1014
- "border": "none",
1015
1203
  "color": "#004699",
1016
1204
  "cursor": "pointer",
1017
1205
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1018
- "font-weight": 400,
1019
1206
  "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1207
+ "font-weight": 400,
1020
1208
  "line-height": "1.6",
1021
1209
  "outline-offset": "-0.25rem",
1022
1210
  "padding-block": ".5rem",
@@ -1036,29 +1224,30 @@
1036
1224
  }
1037
1225
  },
1038
1226
  "text-area": {
1039
- "box-shadow": "inset 0 0 0 1px #000000",
1227
+ "background-color": "#FFFFFF",
1228
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
1040
1229
  "color": "#000000",
1041
1230
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1042
- "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
1231
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1043
1232
  "font-weight": 400,
1044
1233
  "line-height": "1.6",
1045
- "min-height": "calc(1.6 * 1em + 2 * 0.5rem)",
1046
- "outline-offset": "2px",
1234
+ "min-block-size": "calc(1.6 * 1em + 2 * 0.5rem)",
1235
+ "outline-offset": "0.125rem",
1047
1236
  "padding-block": "0.5rem",
1048
1237
  "padding-inline": "1rem",
1049
1238
  "disabled": {
1050
1239
  "background-color": "#FFFFFF",
1051
- "box-shadow": "inset 0 0 0 1px #BEBEBE",
1240
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
1052
1241
  "color": "#BEBEBE",
1053
1242
  "cursor": "not-allowed"
1054
1243
  },
1055
1244
  "hover": {
1056
- "box-shadow": "inset 0 0 0 2px #000000"
1245
+ "box-shadow": "inset 0 0 0 0.125rem #000000"
1057
1246
  },
1058
1247
  "invalid": {
1059
- "box-shadow": "inset 0 0 0 1px #EC0000",
1248
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1060
1249
  "hover": {
1061
- "box-shadow": "inset 0 0 0 2px #EC0000"
1250
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1062
1251
  }
1063
1252
  },
1064
1253
  "placeholder": {
@@ -1066,33 +1255,69 @@
1066
1255
  }
1067
1256
  },
1068
1257
  "text-input": {
1069
- "box-shadow": "inset 0 0 0 1px #000000",
1258
+ "background-color": "#FFFFFF",
1259
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
1070
1260
  "color": "#000000",
1071
1261
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1072
- "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
1262
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1073
1263
  "font-weight": 400,
1074
1264
  "line-height": "1.6",
1075
- "outline-offset": "2px",
1265
+ "outline-offset": "0.125rem",
1076
1266
  "padding-block": ".5rem",
1077
1267
  "padding-inline": "1rem",
1078
1268
  "disabled": {
1079
1269
  "background-color": "#FFFFFF",
1080
- "box-shadow": "inset 0 0 0 1px #BEBEBE",
1270
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
1081
1271
  "color": "#BEBEBE"
1082
1272
  },
1083
1273
  "hover": {
1084
- "box-shadow": "inset 0 0 0 2px #000000"
1274
+ "box-shadow": "inset 0 0 0 0.125rem #000000"
1085
1275
  },
1086
1276
  "invalid": {
1087
- "box-shadow": "inset 0 0 0 1px #EC0000",
1277
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1088
1278
  "hover": {
1089
- "box-shadow": "inset 0 0 0 2px #EC0000"
1279
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1090
1280
  }
1091
1281
  },
1092
1282
  "placeholder": {
1093
1283
  "color": "#767676"
1094
1284
  }
1095
1285
  },
1286
+ "time-input": {
1287
+ "background-color": "#FFFFFF",
1288
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
1289
+ "color": "#000000",
1290
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
1291
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1292
+ "font-weight": 400,
1293
+ "line-height": "1.6",
1294
+ "outline-offset": "0.125rem",
1295
+ "padding-block": ".5rem",
1296
+ "padding-inline": "1rem",
1297
+ "calender-picker-indicator": {
1298
+ "background-image": "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>\")"
1299
+ },
1300
+ "disabled": {
1301
+ "background-color": "#FFFFFF",
1302
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
1303
+ "color": "#BEBEBE",
1304
+ "calender-picker-indicator": {
1305
+ "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23BEBEBE'><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>\")"
1306
+ }
1307
+ },
1308
+ "hover": {
1309
+ "box-shadow": "inset 0 0 0 0.125rem #000000",
1310
+ "calender-picker-indicator": {
1311
+ "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23102E62'><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>\")"
1312
+ }
1313
+ },
1314
+ "invalid": {
1315
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1316
+ "hover": {
1317
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1318
+ }
1319
+ }
1320
+ },
1096
1321
  "top-task-link": {
1097
1322
  "description": {
1098
1323
  "color": "#000000",
@@ -1109,13 +1334,13 @@
1109
1334
  "line-height": "1.5",
1110
1335
  "text-decoration-line": "none",
1111
1336
  "text-decoration-thickness": "0.125rem",
1112
- "text-underline-offset": "0.375rem",
1337
+ "text-underline-offset": "0.3333em",
1113
1338
  "hover": {
1114
1339
  "color": "#102E62",
1115
1340
  "text-decoration-line": "underline"
1116
1341
  }
1117
1342
  },
1118
- "outline-offset": "2px"
1343
+ "outline-offset": "0.125rem"
1119
1344
  },
1120
1345
  "unordered-list": {
1121
1346
  "color": "#000000",
@@ -1136,6 +1361,10 @@
1136
1361
  "margin-inline-start": "0.875rem",
1137
1362
  "padding-inline-start": "0.875rem"
1138
1363
  }
1364
+ },
1365
+ "small": {
1366
+ "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
1367
+ "line-height": "1.6"
1139
1368
  }
1140
1369
  }
1141
1370
  }