@amsterdam/design-system-tokens 0.16.0 → 1.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/compact.css +3 -0
  3. package/dist/compact.d.ts +7 -0
  4. package/dist/compact.json +8 -1
  5. package/dist/compact.mjs +4 -0
  6. package/dist/compact.scss +3 -0
  7. package/dist/compact.theme.css +3 -0
  8. package/dist/index.css +132 -105
  9. package/dist/index.d.ts +127 -86
  10. package/dist/index.json +180 -139
  11. package/dist/index.mjs +154 -134
  12. package/dist/index.scss +123 -96
  13. package/dist/index.theme.css +132 -105
  14. package/package.json +2 -2
  15. package/src/brand/ams/focus.tokens.json +1 -1
  16. package/src/brand/ams/typography.compact.tokens.json +2 -1
  17. package/src/components/ams/alert.tokens.json +6 -7
  18. package/src/components/ams/avatar.tokens.json +9 -0
  19. package/src/components/ams/button.tokens.json +8 -12
  20. package/src/components/ams/checkbox.tokens.json +57 -36
  21. package/src/components/ams/date-input.tokens.json +9 -8
  22. package/src/components/ams/dialog.tokens.json +3 -1
  23. package/src/components/ams/file-input.tokens.json +8 -11
  24. package/src/components/ams/hint.tokens.json +1 -1
  25. package/src/components/ams/page-header.compact.tokens.json +10 -0
  26. package/src/components/ams/page-header.tokens.json +1 -0
  27. package/src/components/ams/password-input.tokens.json +7 -6
  28. package/src/components/ams/radio.tokens.json +0 -2
  29. package/src/components/ams/search-field.tokens.json +7 -4
  30. package/src/components/ams/select.tokens.json +11 -6
  31. package/src/components/ams/switch.tokens.json +2 -2
  32. package/src/components/ams/tabs.tokens.json +3 -3
  33. package/src/components/ams/text-area.tokens.json +7 -6
  34. package/src/components/ams/text-input.tokens.json +7 -6
  35. package/src/components/ams/time-input.tokens.json +9 -8
package/dist/index.json CHANGED
@@ -57,7 +57,7 @@
57
57
  "interactive": "pointer"
58
58
  },
59
59
  "focus": {
60
- "outline-offset": "0.125rem"
60
+ "outline-offset": "0.25rem"
61
61
  },
62
62
  "space": {
63
63
  "xs": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
@@ -161,7 +161,7 @@
161
161
  "font-weight": "800",
162
162
  "gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
163
163
  "line-height": "1.2928",
164
- "outline-offset": "0.125rem",
164
+ "outline-offset": "0.25rem",
165
165
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
166
166
  "padding-inline": "0",
167
167
  "text-wrap": "balance",
@@ -179,10 +179,9 @@
179
179
  },
180
180
  "alert": {
181
181
  "background-color": "#ffffff",
182
- "box-shadow": "inset 0 0 0 0.25rem #009de6",
183
- "forced-colors": {
184
- "border-width": "0.25rem"
185
- },
182
+ "border-color": "#009de6",
183
+ "border-style": "solid",
184
+ "border-width": "0.25rem",
186
185
  "severity-indicator": {
187
186
  "background-color": "#009de6",
188
187
  "padding-block": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
@@ -194,19 +193,19 @@
194
193
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)"
195
194
  },
196
195
  "error": {
197
- "box-shadow": "inset 0 0 0 0.25rem #ec0000",
196
+ "border-color": "#ec0000",
198
197
  "severity-indicator": {
199
198
  "background-color": "#ec0000"
200
199
  }
201
200
  },
202
201
  "success": {
203
- "box-shadow": "inset 0 0 0 0.25rem #00a03c",
202
+ "border-color": "#00a03c",
204
203
  "severity-indicator": {
205
204
  "background-color": "#00a03c"
206
205
  }
207
206
  },
208
207
  "warning": {
209
- "box-shadow": "inset 0 0 0 0.25rem #ff9100",
208
+ "border-color": "#ff9100",
210
209
  "severity-indicator": {
211
210
  "background-color": "#ff9100"
212
211
  }
@@ -215,6 +214,9 @@
215
214
  "avatar": {
216
215
  "aspect-ratio": "1 / 1",
217
216
  "background-color": "#a00078",
217
+ "border-color": "#a00078",
218
+ "border-style": "solid",
219
+ "border-width": "0.125rem",
218
220
  "color": "#ffffff",
219
221
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
220
222
  "font-size": "clamp(0.9643rem, calc(0.9054rem + 0.2946vw), 1.2rem)",
@@ -227,26 +229,32 @@
227
229
  },
228
230
  "azure": {
229
231
  "background-color": "#009de6",
232
+ "border-color": "#009de6",
230
233
  "color": "#ffffff"
231
234
  },
232
235
  "green": {
233
236
  "background-color": "#00a03c",
237
+ "border-color": "#00a03c",
234
238
  "color": "#ffffff"
235
239
  },
236
240
  "lime": {
237
241
  "background-color": "#bed200",
242
+ "border-color": "#bed200",
238
243
  "color": "#181818"
239
244
  },
240
245
  "magenta": {
241
246
  "background-color": "#e50082",
247
+ "border-color": "#e50082",
242
248
  "color": "#ffffff"
243
249
  },
244
250
  "orange": {
245
251
  "background-color": "#ff9100",
252
+ "border-color": "#ff9100",
246
253
  "color": "#181818"
247
254
  },
248
255
  "yellow": {
249
256
  "background-color": "#ffe600",
257
+ "border-color": "#ffe600",
250
258
  "color": "#181818"
251
259
  }
252
260
  },
@@ -310,7 +318,7 @@
310
318
  },
311
319
  "link": {
312
320
  "color": "#004699",
313
- "outline-offset": "0.125rem",
321
+ "outline-offset": "0.25rem",
314
322
  "text-decoration-line": "none",
315
323
  "text-decoration-thickness": "0.125rem",
316
324
  "text-underline-offset": "0.3333em",
@@ -321,57 +329,53 @@
321
329
  }
322
330
  },
323
331
  "button": {
332
+ "border-style": "solid",
333
+ "border-width": "0.125rem",
324
334
  "cursor": "pointer",
325
335
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
326
336
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
327
337
  "font-weight": "400",
328
338
  "line-height": "1.6667",
329
339
  "gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
330
- "outline-offset": "0.125rem",
340
+ "outline-offset": "0.25rem",
331
341
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
332
342
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
333
343
  "disabled": {
334
344
  "cursor": "not-allowed"
335
345
  },
336
- "forced-color-mode": {
337
- "border": "0.125rem solid"
338
- },
339
346
  "primary": {
340
347
  "background-color": "#004699",
341
- "box-shadow": "inset 0 0 0 0.125rem #004699",
348
+ "border-color": "#004699",
342
349
  "color": "#ffffff",
343
350
  "disabled": {
344
351
  "background-color": "#767676",
345
- "box-shadow": "inset 0 0 0 0.125rem #767676"
352
+ "border-color": "#767676"
346
353
  },
347
354
  "hover": {
348
355
  "background-color": "#003677",
349
- "box-shadow": "inset 0 0 0 0.125rem #003677"
356
+ "border-color": "#003677"
350
357
  }
351
358
  },
352
359
  "secondary": {
353
360
  "background-color": "#ffffff",
354
361
  "color": "#004699",
355
- "box-shadow": "inset 0 0 0 0.125rem #004699",
356
362
  "hover": {
357
- "box-shadow": "inset 0 0 0 0.1875rem #003677",
363
+ "box-shadow": "inset 0 0 0 0.0625rem",
358
364
  "color": "#003677"
359
365
  },
360
366
  "disabled": {
361
- "background-color": "#ffffff",
362
- "box-shadow": "inset 0 0 0 0.125rem #767676",
363
367
  "color": "#767676"
364
368
  }
365
369
  },
366
370
  "tertiary": {
367
371
  "background-color": "transparent",
372
+ "border-color": "transparent",
368
373
  "color": "#004699",
369
374
  "hover": {
370
- "box-shadow": "inset 0 0 0 0.125rem #003677",
375
+ "border-color": "currentColor",
371
376
  "color": "#003677"
372
377
  },
373
378
  "disabled": {
374
- "background-color": "transparent",
375
379
  "color": "#767676"
376
380
  }
377
381
  },
@@ -401,7 +405,7 @@
401
405
  "text-decoration-line": "underline"
402
406
  }
403
407
  },
404
- "outline-offset": "0.125rem"
408
+ "outline-offset": "0.25rem"
405
409
  },
406
410
  "character-count": {
407
411
  "color": "#181818",
@@ -421,63 +425,88 @@
421
425
  "font-weight": "400",
422
426
  "gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
423
427
  "line-height": "1.6667",
424
- "outline-offset": "0.125rem",
425
- "checkmark": {
426
- "border-color": "#004699",
427
- "border-width": "0.125rem",
428
- "checked": {
429
- "background-color": "#004699",
430
- "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\")",
428
+ "outline-offset": "0.25rem",
429
+ "checked-indicator": {
430
+ "stroke": "#ffffff"
431
+ },
432
+ "indeterminate-indicator": {
433
+ "stroke": "#ffffff"
434
+ },
435
+ "hover-indicator": {
436
+ "hover": {
437
+ "stroke": "#003677"
438
+ },
439
+ "invalid": {
431
440
  "hover": {
432
- "background-color": "#003677"
441
+ "stroke": "#b70000"
433
442
  }
434
- },
435
- "disabled": {
436
- "border-color": "#767676",
437
- "border-width": "0.125rem",
438
- "checked": {
439
- "background-color": "#767676",
443
+ }
444
+ },
445
+ "rectangle": {
446
+ "fill": "#ffffff",
447
+ "stroke": "#004699",
448
+ "checked": {
449
+ "fill": "#004699",
450
+ "disabled": {
451
+ "fill": "#767676",
440
452
  "hover": {
441
- "background-color": "#767676"
453
+ "fill": "#767676"
442
454
  }
443
455
  },
444
- "indeterminate": {
445
- "background-color": "#767676",
456
+ "hover": {
457
+ "fill": "#003677",
458
+ "disabled-invalid": {
459
+ "fill": "#767676"
460
+ }
461
+ },
462
+ "invalid": {
463
+ "fill": "#ec0000",
446
464
  "hover": {
447
- "background-color": "#767676"
465
+ "fill": "#b70000"
448
466
  }
449
467
  }
450
468
  },
469
+ "disabled": {
470
+ "stroke": "#767676"
471
+ },
451
472
  "hover": {
452
- "border-color": "#003677",
453
- "border-width": "0.1875rem"
473
+ "stroke": "#003677",
474
+ "disabled-invalid": {
475
+ "stroke": "#767676"
476
+ }
454
477
  },
455
- "invalid": {
456
- "border-color": "#ec0000",
457
- "checked": {
458
- "background-color": "#ec0000",
478
+ "indeterminate": {
479
+ "fill": "#004699",
480
+ "disabled": {
481
+ "fill": "#767676",
459
482
  "hover": {
460
- "background-color": "#b70000"
483
+ "fill": "#767676"
461
484
  }
462
485
  },
463
486
  "hover": {
464
- "border-color": "#b70000"
487
+ "fill": "#003677",
488
+ "disabled-invalid": {
489
+ "fill": "#767676"
490
+ }
465
491
  },
466
- "indeterminate": {
467
- "background-color": "#ec0000",
492
+ "invalid": {
493
+ "fill": "#ec0000",
468
494
  "hover": {
469
- "background-color": "#b70000"
495
+ "fill": "#b70000"
470
496
  }
471
497
  }
472
498
  },
473
- "indeterminate": {
474
- "background-color": "#004699",
475
- "background-image": "url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cpath fill-rule='evenodd' d='M0 13.714h32v4H0z'/%3E%3C/svg%3E\")",
499
+ "invalid": {
500
+ "stroke": "#ec0000",
476
501
  "hover": {
477
- "background-color": "#003677"
502
+ "stroke": "#b70000"
478
503
  }
479
504
  }
480
505
  },
506
+ "icon-container": {
507
+ "block-size": "calc(clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem) * 1.6667)",
508
+ "inline-size": "1.5rem"
509
+ },
481
510
  "disabled": {
482
511
  "cursor": "not-allowed",
483
512
  "color": "#767676"
@@ -498,13 +527,15 @@
498
527
  },
499
528
  "date-input": {
500
529
  "background-color": "#ffffff",
501
- "box-shadow": "inset 0 0 0 0.0625rem #181818",
530
+ "border-color": "currentColor",
531
+ "border-style": "solid",
532
+ "border-width": "0.125rem",
502
533
  "color": "#181818",
503
534
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
504
535
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
505
536
  "font-weight": "400",
506
537
  "line-height": "1.6667",
507
- "outline-offset": "0.125rem",
538
+ "outline-offset": "0.25rem",
508
539
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
509
540
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
510
541
  "calender-picker-indicator": {
@@ -512,24 +543,23 @@
512
543
  "cursor": "pointer"
513
544
  },
514
545
  "disabled": {
515
- "background-color": "#ffffff",
516
- "box-shadow": "inset 0 0 0 0.0625rem #767676",
517
546
  "color": "#767676",
518
547
  "cursor": "not-allowed",
519
548
  "calender-picker-indicator": {
520
- "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>\")"
549
+ "background-image": "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>\")"
521
550
  }
522
551
  },
523
552
  "hover": {
524
- "box-shadow": "inset 0 0 0 0.125rem #181818",
553
+ "box-shadow": "inset 0 0 0 0.0625rem",
525
554
  "calender-picker-indicator": {
526
- "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>\")"
555
+ "background-image": "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>\")"
527
556
  }
528
557
  },
529
558
  "invalid": {
530
- "box-shadow": "inset 0 0 0 0.0625rem #ec0000",
559
+ "border-color": "#ec0000",
531
560
  "hover": {
532
- "box-shadow": "inset 0 0 0 0.125rem #b70000"
561
+ "border-color": "#b70000",
562
+ "box-shadow": "inset 0 0 0 0.0625rem #b70000"
533
563
  }
534
564
  }
535
565
  },
@@ -562,7 +592,9 @@
562
592
  },
563
593
  "dialog": {
564
594
  "background-color": "#ffffff",
565
- "border": "0.125rem solid #ffffff",
595
+ "border-color": "#ffffff",
596
+ "border-style": "solid",
597
+ "border-width": "0.125rem",
566
598
  "gap": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
567
599
  "inline-size": "calc(100% - 2 * clamp(1.6875rem, 1.5469rem + 0.7031vw, 2.25rem))",
568
600
  "max-block-size": "calc(100dvh - 2 * clamp(1.6875rem, 1.5469rem + 0.7031vw, 2.25rem))",
@@ -644,14 +676,16 @@
644
676
  },
645
677
  "file-input": {
646
678
  "background-color": "#ffffff",
647
- "border": "0.0625rem dashed #181818",
679
+ "border-color": "currentColor",
680
+ "border-style": "dashed",
681
+ "border-width": "0.125rem",
648
682
  "color": "#181818",
649
683
  "cursor": "pointer",
650
684
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
651
685
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
652
686
  "font-weight": "400",
653
687
  "line-height": "1.6667",
654
- "outline-offset": "calc(0.125rem * 2)",
688
+ "outline-offset": "0.25rem",
655
689
  "padding-block": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
656
690
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
657
691
  "disabled": {
@@ -660,23 +694,21 @@
660
694
  },
661
695
  "file-selector-button": {
662
696
  "background-color": "#ffffff",
663
- "box-shadow": "inset 0 0 0 0.125rem #004699",
697
+ "border-color": "currentColor",
698
+ "border-style": "solid",
699
+ "border-width": "0.125rem",
664
700
  "color": "#004699",
665
701
  "cursor": "pointer",
666
702
  "margin-inline-end": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
667
703
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
668
704
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
669
705
  "hover": {
670
- "box-shadow": "inset 0 0 0 0.1875rem #003677",
706
+ "box-shadow": "inset 0 0 0 0.0625rem",
671
707
  "color": "#003677"
672
708
  },
673
709
  "disabled": {
674
- "box-shadow": "inset 0 0 0 0.125rem #767676",
675
710
  "color": "#767676",
676
711
  "cursor": "not-allowed"
677
- },
678
- "forced-color-mode": {
679
- "border": "0.125rem solid"
680
712
  }
681
713
  }
682
714
  },
@@ -754,12 +786,12 @@
754
786
  }
755
787
  },
756
788
  "hint": {
757
- "color": "#767676"
789
+ "font-weight": "400"
758
790
  },
759
791
  "icon-button": {
760
792
  "color": "#004699",
761
793
  "cursor": "pointer",
762
- "outline-offset": "0.125rem",
794
+ "outline-offset": "0.25rem",
763
795
  "hover": {
764
796
  "background-color": "rgb(0 70 153 / 12.5%)",
765
797
  "color": "#003677"
@@ -826,7 +858,7 @@
826
858
  "gap": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
827
859
  "scroller": {
828
860
  "gap": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
829
- "outline-offset": "0.125rem"
861
+ "outline-offset": "0.25rem"
830
862
  },
831
863
  "thumbnails": {
832
864
  "gap": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
@@ -834,7 +866,7 @@
834
866
  "background-color": "transparent",
835
867
  "cursor": "pointer",
836
868
  "opacity": "40%",
837
- "outline-offset": "0.125rem",
869
+ "outline-offset": "0.25rem",
838
870
  "in-view": {
839
871
  "opacity": "100%"
840
872
  },
@@ -848,7 +880,7 @@
848
880
  "aspect-ratio": "16 / 9"
849
881
  },
850
882
  "invalid-form-alert": {
851
- "outline-offset": "0.125rem"
883
+ "outline-offset": "0.25rem"
852
884
  },
853
885
  "label": {
854
886
  "color": "#181818",
@@ -867,7 +899,7 @@
867
899
  "font-weight": "400",
868
900
  "gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
869
901
  "line-height": "1.6667",
870
- "outline-offset": "0.125rem",
902
+ "outline-offset": "0.25rem",
871
903
  "text-decoration-line": "none",
872
904
  "text-decoration-thickness": "0.125rem",
873
905
  "text-underline-offset": "0.3333em",
@@ -903,7 +935,7 @@
903
935
  "font-size": "inherit",
904
936
  "font-weight": "400",
905
937
  "line-height": "inherit",
906
- "outline-offset": "0.125rem",
938
+ "outline-offset": "0.25rem",
907
939
  "text-decoration-thickness": "0.125rem",
908
940
  "text-underline-offset": "0.3333em",
909
941
  "hover": {
@@ -988,7 +1020,7 @@
988
1020
  "font-size": "clamp(0.9643rem, calc(0.9054rem + 0.2946vw), 1.2rem)",
989
1021
  "font-weight": "400",
990
1022
  "line-height": "1.5152",
991
- "outline-offset": "0.125rem",
1023
+ "outline-offset": "0.25rem",
992
1024
  "text-decoration-line": "none",
993
1025
  "text-decoration-thickness": "0.125rem",
994
1026
  "text-underline-offset": "0.3333em",
@@ -1014,12 +1046,13 @@
1014
1046
  },
1015
1047
  "logo-link": {
1016
1048
  "column-gap": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
1017
- "outline-offset": "0.125rem"
1049
+ "outline-offset": "0.25rem"
1018
1050
  },
1019
1051
  "brand-name": {
1020
1052
  "color": "#181818",
1021
1053
  "font-size": "clamp(1.3125rem, calc(1.1719rem + 0.7031vw), 1.875rem)",
1022
1054
  "font-weight": "800",
1055
+ "line-height": "1.2928",
1023
1056
  "text-wrap": "balance"
1024
1057
  },
1025
1058
  "mega-menu": {
@@ -1042,7 +1075,7 @@
1042
1075
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1043
1076
  "font-weight": "400",
1044
1077
  "line-height": "1.6667",
1045
- "outline-offset": "0.125rem",
1078
+ "outline-offset": "0.25rem",
1046
1079
  "padding-block": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
1047
1080
  "hover": {
1048
1081
  "color": "#003677"
@@ -1085,7 +1118,7 @@
1085
1118
  "link": {
1086
1119
  "color": "#004699",
1087
1120
  "gap": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
1088
- "outline-offset": "0.125rem",
1121
+ "outline-offset": "0.25rem",
1089
1122
  "padding-inline": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1090
1123
  "text-decoration-line": "none",
1091
1124
  "text-decoration-thickness": "0.125rem",
@@ -1119,28 +1152,29 @@
1119
1152
  },
1120
1153
  "password-input": {
1121
1154
  "background-color": "#ffffff",
1122
- "box-shadow": "inset 0 0 0 0.0625rem #181818",
1155
+ "border-color": "currentColor",
1156
+ "border-style": "solid",
1157
+ "border-width": "0.125rem",
1123
1158
  "color": "#181818",
1124
1159
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1125
1160
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1126
1161
  "font-weight": "400",
1127
1162
  "line-height": "1.6667",
1128
- "outline-offset": "0.125rem",
1163
+ "outline-offset": "0.25rem",
1129
1164
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1130
1165
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
1131
1166
  "disabled": {
1132
- "background-color": "#ffffff",
1133
- "box-shadow": "inset 0 0 0 0.0625rem #767676",
1134
1167
  "color": "#767676",
1135
1168
  "cursor": "not-allowed"
1136
1169
  },
1137
1170
  "hover": {
1138
- "box-shadow": "inset 0 0 0 0.125rem #181818"
1171
+ "box-shadow": "inset 0 0 0 0.0625rem"
1139
1172
  },
1140
1173
  "invalid": {
1141
- "box-shadow": "inset 0 0 0 0.0625rem #ec0000",
1174
+ "border-color": "#ec0000",
1142
1175
  "hover": {
1143
- "box-shadow": "inset 0 0 0 0.125rem #b70000"
1176
+ "border-color": "#b70000",
1177
+ "box-shadow": "inset 0 0 0 0.0625rem #b70000"
1144
1178
  }
1145
1179
  },
1146
1180
  "placeholder": {
@@ -1155,7 +1189,7 @@
1155
1189
  "font-weight": "400",
1156
1190
  "gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1157
1191
  "line-height": "1.6667",
1158
- "outline-offset": "0.125rem",
1192
+ "outline-offset": "0.25rem",
1159
1193
  "text-decoration-thickness": "0.125rem",
1160
1194
  "text-underline-offset": "0.3333em",
1161
1195
  "checked-indicator": {
@@ -1180,7 +1214,6 @@
1180
1214
  }
1181
1215
  },
1182
1216
  "hover-indicator": {
1183
- "stroke-width": "3px",
1184
1217
  "hover": {
1185
1218
  "stroke": "#003677"
1186
1219
  },
@@ -1193,7 +1226,6 @@
1193
1226
  "circle": {
1194
1227
  "fill": "#ffffff",
1195
1228
  "stroke": "#004699",
1196
- "stroke-width": "2px",
1197
1229
  "disabled": {
1198
1230
  "stroke": "#767676"
1199
1231
  },
@@ -1238,13 +1270,15 @@
1238
1270
  "search-field": {
1239
1271
  "input": {
1240
1272
  "background-color": "#ffffff",
1241
- "box-shadow": "inset 0 0 0 0.0625rem #181818",
1273
+ "border-color": "currentColor",
1274
+ "border-style": "solid",
1275
+ "border-width": "0.125rem",
1242
1276
  "color": "#181818",
1243
1277
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1244
1278
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1245
1279
  "font-weight": "400",
1246
1280
  "line-height": "1.6667",
1247
- "outline-offset": "0.125rem",
1281
+ "outline-offset": "0.25rem",
1248
1282
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1249
1283
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
1250
1284
  "cancel-button": {
@@ -1255,12 +1289,13 @@
1255
1289
  "inline-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)"
1256
1290
  },
1257
1291
  "hover": {
1258
- "box-shadow": "inset 0 0 0 0.125rem #181818"
1292
+ "box-shadow": "inset 0 0 0 0.0625rem"
1259
1293
  },
1260
1294
  "invalid": {
1261
- "box-shadow": "inset 0 0 0 0.0625rem #ec0000",
1295
+ "border-color": "#ec0000",
1262
1296
  "hover": {
1263
- "box-shadow": "inset 0 0 0 0.125rem #b70000"
1297
+ "border-color": "#b70000",
1298
+ "box-shadow": "inset 0 0 0 0.0625rem #b70000"
1264
1299
  }
1265
1300
  },
1266
1301
  "placeholder": {
@@ -1272,28 +1307,31 @@
1272
1307
  "background-color": "#ffffff",
1273
1308
  "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>\")",
1274
1309
  "background-position": "right clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem) center",
1275
- "box-shadow": "inset 0 0 0 0.0625rem #181818",
1310
+ "border-color": "currentColor",
1311
+ "border-style": "solid",
1312
+ "border-width": "0.125rem",
1276
1313
  "color": "#181818",
1277
1314
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1278
1315
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1279
1316
  "font-weight": "400",
1280
1317
  "line-height": "1.6667",
1281
- "outline-offset": "0.125rem",
1318
+ "outline-offset": "0.25rem",
1282
1319
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1283
1320
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem) calc(2 * clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem) + 1em)",
1284
1321
  "disabled": {
1285
- "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>\")",
1286
- "box-shadow": "inset 0 0 0 0.0625rem #767676",
1322
+ "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23767676' fill-rule='evenodd' d='m16 25.757-16-16 2.91-2.9L16 19.937l13.09-13.08 2.91 2.9z'/></svg>\")",
1287
1323
  "color": "#767676",
1288
1324
  "cursor": "not-allowed"
1289
1325
  },
1290
1326
  "hover": {
1291
- "box-shadow": "inset 0 0 0 0.125rem #181818"
1327
+ "box-shadow": "inset 0 0 0 0.0625rem",
1328
+ "background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23003677' fill-rule='evenodd' d='m16 25.757-16-16 2.91-2.9L16 19.937l13.09-13.08 2.91 2.9z'/></svg>\")"
1292
1329
  },
1293
1330
  "invalid": {
1294
- "box-shadow": "inset 0 0 0 0.0625rem #ec0000",
1331
+ "border-color": "#ec0000",
1295
1332
  "hover": {
1296
- "box-shadow": "inset 0 0 0 0.125rem #b70000"
1333
+ "border-color": "#b70000",
1334
+ "box-shadow": "inset 0 0 0 0.0625rem #b70000"
1297
1335
  }
1298
1336
  },
1299
1337
  "option": {
@@ -1309,7 +1347,7 @@
1309
1347
  "font-size": "clamp(0.9643rem, calc(0.9054rem + 0.2946vw), 1.2rem)",
1310
1348
  "font-weight": "400",
1311
1349
  "line-height": "1.5152",
1312
- "outline-offset": "0.125rem",
1350
+ "outline-offset": "0.25rem",
1313
1351
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1314
1352
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
1315
1353
  "hover": {
@@ -1344,7 +1382,7 @@
1344
1382
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1345
1383
  "font-weight": "400",
1346
1384
  "line-height": "1.6667",
1347
- "outline-offset": "0.125rem",
1385
+ "outline-offset": "0.25rem",
1348
1386
  "text-decoration-thickness": "0.125rem",
1349
1387
  "text-underline-offset": "0.3333em",
1350
1388
  "contrast": {
@@ -1374,12 +1412,12 @@
1374
1412
  "switch": {
1375
1413
  "background-color": "#767676",
1376
1414
  "cursor": "pointer",
1377
- "outline-offset": "0.125rem",
1415
+ "outline-offset": "0.25rem",
1378
1416
  "inline-size": "3.5rem",
1379
1417
  "thumb": {
1380
1418
  "background-color": "#ffffff",
1381
- "inline-size": "1.75rem",
1382
1419
  "block-size": "1.75rem",
1420
+ "inline-size": "1.75rem",
1383
1421
  "hover": {
1384
1422
  "box-shadow": "0 0 0 0.125rem #003677",
1385
1423
  "color": "#003677"
@@ -1401,7 +1439,7 @@
1401
1439
  "line-height": "1.6667",
1402
1440
  "link": {
1403
1441
  "color": "#004699",
1404
- "outline-offset": "0.125rem",
1442
+ "outline-offset": "0.25rem",
1405
1443
  "text-decoration-line": "none",
1406
1444
  "text-decoration-thickness": "0.125rem",
1407
1445
  "text-underline-offset": "0.3333em",
@@ -1453,12 +1491,12 @@
1453
1491
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1454
1492
  "font-weight": "400",
1455
1493
  "line-height": "1.6667",
1456
- "outline-offset": "-0.25rem",
1494
+ "outline-offset": "calc(0.25rem * -1)",
1457
1495
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1458
1496
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
1459
1497
  "hover": {
1460
- "color": "#003677",
1461
- "box-shadow": "inset 0 calc(0.125rem * -1)"
1498
+ "box-shadow": "inset 0 calc(0.125rem * -1)",
1499
+ "color": "#003677"
1462
1500
  },
1463
1501
  "selected": {
1464
1502
  "box-shadow": "inset 0 calc(0.25rem * -1)",
@@ -1472,29 +1510,30 @@
1472
1510
  },
1473
1511
  "text-area": {
1474
1512
  "background-color": "#ffffff",
1475
- "box-shadow": "inset 0 0 0 0.0625rem #181818",
1513
+ "border-color": "currentColor",
1514
+ "border-style": "solid",
1515
+ "border-width": "0.125rem",
1476
1516
  "color": "#181818",
1477
1517
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1478
1518
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1479
1519
  "font-weight": "400",
1480
1520
  "line-height": "1.6667",
1481
1521
  "min-block-size": "calc(1.6667 * 1em + 2 * clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem))",
1482
- "outline-offset": "0.125rem",
1522
+ "outline-offset": "0.25rem",
1483
1523
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1484
1524
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
1485
1525
  "disabled": {
1486
- "background-color": "#ffffff",
1487
- "box-shadow": "inset 0 0 0 0.0625rem #767676",
1488
1526
  "color": "#767676",
1489
1527
  "cursor": "not-allowed"
1490
1528
  },
1491
1529
  "hover": {
1492
- "box-shadow": "inset 0 0 0 0.125rem #181818"
1530
+ "box-shadow": "inset 0 0 0 0.0625rem"
1493
1531
  },
1494
1532
  "invalid": {
1495
- "box-shadow": "inset 0 0 0 0.0625rem #ec0000",
1533
+ "border-color": "#ec0000",
1496
1534
  "hover": {
1497
- "box-shadow": "inset 0 0 0 0.125rem #b70000"
1535
+ "border-color": "#b70000",
1536
+ "box-shadow": "inset 0 0 0 0.0625rem #b70000"
1498
1537
  }
1499
1538
  },
1500
1539
  "placeholder": {
@@ -1503,28 +1542,29 @@
1503
1542
  },
1504
1543
  "text-input": {
1505
1544
  "background-color": "#ffffff",
1506
- "box-shadow": "inset 0 0 0 0.0625rem #181818",
1545
+ "border-color": "currentColor",
1546
+ "border-style": "solid",
1547
+ "border-width": "0.125rem",
1507
1548
  "color": "#181818",
1508
1549
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1509
1550
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1510
1551
  "font-weight": "400",
1511
1552
  "line-height": "1.6667",
1512
- "outline-offset": "0.125rem",
1553
+ "outline-offset": "0.25rem",
1513
1554
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1514
1555
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
1515
1556
  "disabled": {
1516
- "background-color": "#ffffff",
1517
- "box-shadow": "inset 0 0 0 0.0625rem #767676",
1518
1557
  "color": "#767676",
1519
1558
  "cursor": "not-allowed"
1520
1559
  },
1521
1560
  "hover": {
1522
- "box-shadow": "inset 0 0 0 0.125rem #181818"
1561
+ "box-shadow": "inset 0 0 0 0.0625rem"
1523
1562
  },
1524
1563
  "invalid": {
1525
- "box-shadow": "inset 0 0 0 0.0625rem #ec0000",
1564
+ "border-color": "#ec0000",
1526
1565
  "hover": {
1527
- "box-shadow": "inset 0 0 0 0.125rem #b70000"
1566
+ "border-color": "#b70000",
1567
+ "box-shadow": "inset 0 0 0 0.0625rem #b70000"
1528
1568
  }
1529
1569
  },
1530
1570
  "placeholder": {
@@ -1533,13 +1573,15 @@
1533
1573
  },
1534
1574
  "time-input": {
1535
1575
  "background-color": "#ffffff",
1536
- "box-shadow": "inset 0 0 0 0.0625rem #181818",
1576
+ "border-color": "currentColor",
1577
+ "border-style": "solid",
1578
+ "border-width": "0.125rem",
1537
1579
  "color": "#181818",
1538
1580
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1539
1581
  "font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
1540
1582
  "font-weight": "400",
1541
1583
  "line-height": "1.6667",
1542
- "outline-offset": "0.125rem",
1584
+ "outline-offset": "0.25rem",
1543
1585
  "padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
1544
1586
  "padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
1545
1587
  "calender-picker-indicator": {
@@ -1547,24 +1589,23 @@
1547
1589
  "cursor": "pointer"
1548
1590
  },
1549
1591
  "disabled": {
1550
- "background-color": "#ffffff",
1551
- "box-shadow": "inset 0 0 0 0.0625rem #767676",
1552
1592
  "color": "#767676",
1553
1593
  "cursor": "not-allowed",
1554
1594
  "calender-picker-indicator": {
1555
- "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>\")"
1595
+ "background-image": "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>\")"
1556
1596
  }
1557
1597
  },
1558
1598
  "hover": {
1559
- "box-shadow": "inset 0 0 0 0.125rem #181818",
1599
+ "box-shadow": "inset 0 0 0 0.0625rem",
1560
1600
  "calender-picker-indicator": {
1561
- "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>\")"
1601
+ "background-image": "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>\")"
1562
1602
  }
1563
1603
  },
1564
1604
  "invalid": {
1565
- "box-shadow": "inset 0 0 0 0.0625rem #ec0000",
1605
+ "border-color": "#ec0000",
1566
1606
  "hover": {
1567
- "box-shadow": "inset 0 0 0 0.125rem #b70000"
1607
+ "border-color": "#b70000",
1608
+ "box-shadow": "inset 0 0 0 0.0625rem #b70000"
1568
1609
  }
1569
1610
  }
1570
1611
  },