@amsterdam/design-system-tokens 0.7.1 → 0.8.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 (34) hide show
  1. package/CHANGELOG.md +27 -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 +145 -64
  8. package/dist/index.d.ts +159 -22
  9. package/dist/index.json +191 -54
  10. package/dist/index.mjs +129 -48
  11. package/dist/index.scss +145 -64
  12. package/dist/index.theme.css +145 -64
  13. package/package.json +1 -1
  14. package/src/brand/ams/border.tokens.json +12 -0
  15. package/src/common/ams/link-appearance.tokens.json +2 -2
  16. package/src/components/ams/accordion.tokens.json +6 -4
  17. package/src/components/ams/alert.tokens.json +1 -1
  18. package/src/components/ams/button.tokens.json +11 -8
  19. package/src/components/ams/checkbox.tokens.json +6 -2
  20. package/src/components/ams/date-input.tokens.json +45 -0
  21. package/src/components/ams/description-list.tokens.json +20 -0
  22. package/src/components/ams/{form-label.tokens.json → label.tokens.json} +1 -1
  23. package/src/components/ams/page-menu.tokens.json +2 -2
  24. package/src/components/ams/radio.tokens.json +4 -1
  25. package/src/components/ams/screen.tokens.json +1 -0
  26. package/src/components/ams/search-field.tokens.json +7 -6
  27. package/src/components/ams/select.tokens.json +41 -0
  28. package/src/components/ams/skip-link.tokens.json +1 -1
  29. package/src/components/ams/table.tokens.json +2 -2
  30. package/src/components/ams/tabs.tokens.json +3 -4
  31. package/src/components/ams/text-area.tokens.json +9 -8
  32. package/src/components/ams/text-input.tokens.json +8 -7
  33. package/src/components/ams/time-input.tokens.json +45 -0
  34. 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,11 +113,6 @@
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
117
  "outline-offset": "2px"
115
118
  },
@@ -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
163
  "outline-offset": "2px"
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",
@@ -323,41 +328,44 @@
323
328
  "disabled": {
324
329
  "cursor": "not-allowed"
325
330
  },
331
+ "forced-color-mode": {
332
+ "border": "0.125rem solid"
333
+ },
326
334
  "primary": {
327
335
  "background-color": "#004699",
328
- "box-shadow": "inset 0 0 0 2px #004699",
336
+ "box-shadow": "inset 0 0 0 0.125rem #004699",
329
337
  "color": "#FFFFFF",
330
338
  "disabled": {
331
339
  "background-color": "#BEBEBE",
332
- "box-shadow": "inset 0 0 0 2px #BEBEBE"
340
+ "box-shadow": "inset 0 0 0 0.125rem #BEBEBE"
333
341
  },
334
342
  "hover": {
335
343
  "background-color": "#102E62",
336
- "box-shadow": "inset 0 0 0 2px #102E62"
344
+ "box-shadow": "inset 0 0 0 0.125rem #102E62"
337
345
  }
338
346
  },
339
347
  "secondary": {
340
348
  "background-color": "#FFFFFF",
341
349
  "color": "#004699",
342
- "box-shadow": "inset 0 0 0 2px #004699",
350
+ "box-shadow": "inset 0 0 0 0.125rem #004699",
343
351
  "hover": {
344
- "box-shadow": "inset 0 0 0 3px #102E62",
352
+ "box-shadow": "inset 0 0 0 0.1875rem #102E62",
345
353
  "color": "#102E62"
346
354
  },
347
355
  "disabled": {
348
356
  "background-color": "#FFFFFF",
349
- "box-shadow": "inset 0 0 0 2px #BEBEBE",
357
+ "box-shadow": "inset 0 0 0 0.125rem #BEBEBE",
350
358
  "color": "#BEBEBE"
351
359
  },
352
360
  "focus": {
353
- "box-shadow": "inset 0 0 0 2px #004699"
361
+ "box-shadow": "inset 0 0 0 0.125rem #004699"
354
362
  }
355
363
  },
356
364
  "tertiary": {
357
365
  "background-color": "transparent",
358
366
  "color": "#004699",
359
367
  "hover": {
360
- "box-shadow": "inset 0 0 0 2px #102E62",
368
+ "box-shadow": "inset 0 0 0 0.125rem #102E62",
361
369
  "color": "#102E62"
362
370
  },
363
371
  "disabled": {
@@ -388,6 +396,7 @@
388
396
  "outline-offset": "2px",
389
397
  "checkmark": {
390
398
  "border-color": "#004699",
399
+ "border-width": "0.125rem",
391
400
  "checked": {
392
401
  "background-color": "#004699",
393
402
  "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 +406,7 @@
397
406
  },
398
407
  "disabled": {
399
408
  "border-color": "#767676",
409
+ "border-width": "0.125rem",
400
410
  "checked": {
401
411
  "background-color": "#767676",
402
412
  "hover": {
@@ -411,7 +421,8 @@
411
421
  }
412
422
  },
413
423
  "hover": {
414
- "border-color": "#102E62"
424
+ "border-color": "#102E62",
425
+ "border-width": "0.1875rem"
415
426
  },
416
427
  "invalid": {
417
428
  "border-color": "#EC0000",
@@ -443,7 +454,8 @@
443
454
  "color": "#767676"
444
455
  },
445
456
  "hover": {
446
- "color": "#102E62"
457
+ "color": "#102E62",
458
+ "text-decoration-thickness": "0.125rem"
447
459
  }
448
460
  },
449
461
  "column": {
@@ -455,6 +467,57 @@
455
467
  "xl": "clamp(2rem, calc(6.25vw + 0.75rem), 7rem)"
456
468
  }
457
469
  },
470
+ "date-input": {
471
+ "background-color": "#FFFFFF",
472
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
473
+ "color": "#000000",
474
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
475
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
476
+ "font-weight": 400,
477
+ "line-height": "1.6",
478
+ "outline-offset": "2px",
479
+ "padding-block": ".5rem",
480
+ "padding-inline": "1.5rem",
481
+ "calender-picker-indicator": {
482
+ "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>\")"
483
+ },
484
+ "disabled": {
485
+ "background-color": "#FFFFFF",
486
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
487
+ "color": "#BEBEBE",
488
+ "calender-picker-indicator": {
489
+ "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>\")"
490
+ }
491
+ },
492
+ "hover": {
493
+ "box-shadow": "inset 0 0 0 0.125rem #000000",
494
+ "calender-picker-indicator": {
495
+ "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>\")"
496
+ }
497
+ },
498
+ "invalid": {
499
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
500
+ "hover": {
501
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
502
+ }
503
+ }
504
+ },
505
+ "description-list": {
506
+ "color": "#000000",
507
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
508
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
509
+ "font-weight": 400,
510
+ "gap": "1rem",
511
+ "inverse-color": "#FFFFFF",
512
+ "line-height": "1.6",
513
+ "row": {
514
+ "gap": "1rem"
515
+ },
516
+ "details": {
517
+ "font-weight": 800,
518
+ "padding-inline-start": "2rem"
519
+ }
520
+ },
458
521
  "dialog": {
459
522
  "background-color": "#FFFFFF",
460
523
  "border": "0",
@@ -491,13 +554,6 @@
491
554
  "color": "#EC0000"
492
555
  }
493
556
  },
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
557
  "gap": {
502
558
  "xs": "clamp(0.25rem, calc(0.78125vw + 0.09375rem), 0.875rem)",
503
559
  "sm": "clamp(0.5rem, calc(1.5625vw + 0.1875rem), 1.75rem)",
@@ -616,6 +672,13 @@
616
672
  "line-height": "1.6"
617
673
  }
618
674
  },
675
+ "label": {
676
+ "color": "#000000",
677
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
678
+ "font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
679
+ "font-weight": 800,
680
+ "line-height": "1.5"
681
+ },
619
682
  "link-list": {
620
683
  "gap": "0.5em",
621
684
  "link": {
@@ -770,8 +833,8 @@
770
833
  "line-height": "clamp(2.432rem, calc(2.683vw + 1.895rem), 4.578rem)"
771
834
  },
772
835
  "page-menu": {
773
- "column-gap": "2.5rem",
774
- "row-gap": "0.5rem",
836
+ "column-gap": "clamp(1rem, calc(3.125vw + 0.375rem), 3.5rem)",
837
+ "row-gap": "clamp(0.25rem, calc(0.78125vw + 0.09375rem), 0.875rem)",
775
838
  "item": {
776
839
  "color": "#004699",
777
840
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
@@ -837,6 +900,7 @@
837
900
  "outline-offset": "2px",
838
901
  "circle": {
839
902
  "border-color": "#004699",
903
+ "border-width": "0.125rem",
840
904
  "checked": {
841
905
  "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
906
  "hover": {
@@ -845,6 +909,7 @@
845
909
  },
846
910
  "disabled": {
847
911
  "border-color": "#767676",
912
+ "border-width": "0.125rem",
848
913
  "checked": {
849
914
  "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
915
  "hover": {
@@ -872,7 +937,8 @@
872
937
  "color": "#767676"
873
938
  },
874
939
  "hover": {
875
- "color": "#102E62"
940
+ "color": "#102E62",
941
+ "text-decoration-thickness": "0.125rem"
876
942
  }
877
943
  },
878
944
  "row": {
@@ -885,6 +951,7 @@
885
951
  }
886
952
  },
887
953
  "screen": {
954
+ "background-color": "#FFFFFF",
888
955
  "wide": {
889
956
  "max-width": "100rem"
890
957
  },
@@ -904,10 +971,11 @@
904
971
  "padding-inline": ".5rem"
905
972
  },
906
973
  "input": {
907
- "box-shadow": "inset 0 0 0 1px #000000",
974
+ "background-color": "#FFFFFF",
975
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
908
976
  "color": "#000000",
909
977
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
910
- "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
978
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
911
979
  "font-weight": 400,
912
980
  "line-height": "1.6",
913
981
  "outline-offset": "2px",
@@ -916,23 +984,56 @@
916
984
  "cancel-button": {
917
985
  "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>\")",
918
986
  "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)"
987
+ "height": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
988
+ "width": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)"
921
989
  },
922
990
  "hover": {
923
- "box-shadow": "inset 0 0 0 2px #000000"
991
+ "box-shadow": "inset 0 0 0 0.125rem #000000"
924
992
  },
925
993
  "placeholder": {
926
994
  "color": "#767676"
927
995
  }
928
996
  }
929
997
  },
998
+ "select": {
999
+ "background-color": "#FFFFFF",
1000
+ "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>\")",
1001
+ "background-position": "right 1rem center",
1002
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
1003
+ "color": "#000000",
1004
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
1005
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1006
+ "font-weight": 400,
1007
+ "line-height": "1.6",
1008
+ "outline-offset": "2px",
1009
+ "padding-block": ".5rem",
1010
+ "padding-inline": "1rem calc(2 * 1rem + 1em)",
1011
+ "disabled": {
1012
+ "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>\")",
1013
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
1014
+ "color": "#BEBEBE"
1015
+ },
1016
+ "hover": {
1017
+ "box-shadow": "inset 0 0 0 0.125rem #000000"
1018
+ },
1019
+ "invalid": {
1020
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1021
+ "hover": {
1022
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1023
+ }
1024
+ },
1025
+ "option": {
1026
+ "disabled": {
1027
+ "color": "#BEBEBE"
1028
+ }
1029
+ }
1030
+ },
930
1031
  "skip-link": {
931
1032
  "background-color": "#004699",
932
1033
  "color": "#FFFFFF",
933
1034
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
934
- "font-weight": 400,
935
1035
  "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
1036
+ "font-weight": 400,
936
1037
  "line-height": "1.6",
937
1038
  "outline-offset": "2px",
938
1039
  "padding-block": ".5rem",
@@ -990,14 +1091,14 @@
990
1091
  "table": {
991
1092
  "color": "#000000",
992
1093
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
993
- "font-weight": 400,
994
1094
  "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1095
+ "font-weight": 400,
995
1096
  "line-height": "1.6",
996
1097
  "caption": {
997
1098
  "font-weight": 800
998
1099
  },
999
1100
  "cell": {
1000
- "border-bottom": "1px solid #E8E8E8",
1101
+ "border-bottom": "0.0625rem solid #E8E8E8",
1001
1102
  "padding-block": "1rem",
1002
1103
  "padding-inline": "1rem"
1003
1104
  },
@@ -1007,16 +1108,15 @@
1007
1108
  },
1008
1109
  "tabs": {
1009
1110
  "list": {
1010
- "border-bottom": ".125rem solid #004699"
1111
+ "background-color": "#FFFFFF",
1112
+ "border-bottom": "0.125rem solid #004699"
1011
1113
  },
1012
1114
  "button": {
1013
- "background-color": "transparent",
1014
- "border": "none",
1015
1115
  "color": "#004699",
1016
1116
  "cursor": "pointer",
1017
1117
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1018
- "font-weight": 400,
1019
1118
  "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1119
+ "font-weight": 400,
1020
1120
  "line-height": "1.6",
1021
1121
  "outline-offset": "-0.25rem",
1022
1122
  "padding-block": ".5rem",
@@ -1036,10 +1136,11 @@
1036
1136
  }
1037
1137
  },
1038
1138
  "text-area": {
1039
- "box-shadow": "inset 0 0 0 1px #000000",
1139
+ "background-color": "#FFFFFF",
1140
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
1040
1141
  "color": "#000000",
1041
1142
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1042
- "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
1143
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1043
1144
  "font-weight": 400,
1044
1145
  "line-height": "1.6",
1045
1146
  "min-height": "calc(1.6 * 1em + 2 * 0.5rem)",
@@ -1048,17 +1149,17 @@
1048
1149
  "padding-inline": "1rem",
1049
1150
  "disabled": {
1050
1151
  "background-color": "#FFFFFF",
1051
- "box-shadow": "inset 0 0 0 1px #BEBEBE",
1152
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
1052
1153
  "color": "#BEBEBE",
1053
1154
  "cursor": "not-allowed"
1054
1155
  },
1055
1156
  "hover": {
1056
- "box-shadow": "inset 0 0 0 2px #000000"
1157
+ "box-shadow": "inset 0 0 0 0.125rem #000000"
1057
1158
  },
1058
1159
  "invalid": {
1059
- "box-shadow": "inset 0 0 0 1px #EC0000",
1160
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1060
1161
  "hover": {
1061
- "box-shadow": "inset 0 0 0 2px #EC0000"
1162
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1062
1163
  }
1063
1164
  },
1064
1165
  "placeholder": {
@@ -1066,10 +1167,11 @@
1066
1167
  }
1067
1168
  },
1068
1169
  "text-input": {
1069
- "box-shadow": "inset 0 0 0 1px #000000",
1170
+ "background-color": "#FFFFFF",
1171
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
1070
1172
  "color": "#000000",
1071
1173
  "font-family": "'Amsterdam Sans', Arial, sans-serif",
1072
- "font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
1174
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1073
1175
  "font-weight": 400,
1074
1176
  "line-height": "1.6",
1075
1177
  "outline-offset": "2px",
@@ -1077,22 +1179,57 @@
1077
1179
  "padding-inline": "1rem",
1078
1180
  "disabled": {
1079
1181
  "background-color": "#FFFFFF",
1080
- "box-shadow": "inset 0 0 0 1px #BEBEBE",
1182
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
1081
1183
  "color": "#BEBEBE"
1082
1184
  },
1083
1185
  "hover": {
1084
- "box-shadow": "inset 0 0 0 2px #000000"
1186
+ "box-shadow": "inset 0 0 0 0.125rem #000000"
1085
1187
  },
1086
1188
  "invalid": {
1087
- "box-shadow": "inset 0 0 0 1px #EC0000",
1189
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1088
1190
  "hover": {
1089
- "box-shadow": "inset 0 0 0 2px #EC0000"
1191
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1090
1192
  }
1091
1193
  },
1092
1194
  "placeholder": {
1093
1195
  "color": "#767676"
1094
1196
  }
1095
1197
  },
1198
+ "time-input": {
1199
+ "background-color": "#FFFFFF",
1200
+ "box-shadow": "inset 0 0 0 0.0625rem #000000",
1201
+ "color": "#000000",
1202
+ "font-family": "'Amsterdam Sans', Arial, sans-serif",
1203
+ "font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
1204
+ "font-weight": 400,
1205
+ "line-height": "1.6",
1206
+ "outline-offset": "2px",
1207
+ "padding-block": ".5rem",
1208
+ "padding-inline": "1rem",
1209
+ "calender-picker-indicator": {
1210
+ "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>\")"
1211
+ },
1212
+ "disabled": {
1213
+ "background-color": "#FFFFFF",
1214
+ "box-shadow": "inset 0 0 0 0.0625rem #BEBEBE",
1215
+ "color": "#BEBEBE",
1216
+ "calender-picker-indicator": {
1217
+ "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>\")"
1218
+ }
1219
+ },
1220
+ "hover": {
1221
+ "box-shadow": "inset 0 0 0 0.125rem #000000",
1222
+ "calender-picker-indicator": {
1223
+ "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>\")"
1224
+ }
1225
+ },
1226
+ "invalid": {
1227
+ "box-shadow": "inset 0 0 0 0.0625rem #EC0000",
1228
+ "hover": {
1229
+ "box-shadow": "inset 0 0 0 0.125rem #EC0000"
1230
+ }
1231
+ }
1232
+ },
1096
1233
  "top-task-link": {
1097
1234
  "description": {
1098
1235
  "color": "#000000",