@utrecht/design-tokens 2.1.1 → 2.3.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 (61) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/_mixin-theme.scss +3 -5
  3. package/dist/_mixin.scss +3 -5
  4. package/dist/_variables.scss +3 -5
  5. package/dist/dark/_mixin-theme.scss +3 -5
  6. package/dist/dark/_mixin.scss +3 -5
  7. package/dist/dark/_variables.scss +3 -5
  8. package/dist/dark/index.cjs +3 -5
  9. package/dist/dark/index.css +3 -5
  10. package/dist/dark/index.d.ts +2 -6
  11. package/dist/dark/index.flat.json +1 -3
  12. package/dist/dark/index.json +26 -40
  13. package/dist/dark/index.mjs +3 -5
  14. package/dist/dark/index.tokens.json +441 -14
  15. package/dist/dark/list.d.ts +14 -0
  16. package/dist/dark/list.json +26 -40
  17. package/dist/dark/list.mjs +30694 -0
  18. package/dist/dark/property.css +2 -0
  19. package/dist/dark/root.css +1 -3
  20. package/dist/dark/theme-prince-xml.css +3 -5
  21. package/dist/dark/theme.css +1 -3
  22. package/dist/dark/tokens.cjs +512 -97
  23. package/dist/dark/tokens.d.ts +239 -13
  24. package/dist/dark/tokens.json +514 -99
  25. package/dist/dark/variables.cjs +3 -5
  26. package/dist/dark/variables.css +1 -3
  27. package/dist/dark/variables.d.ts +2 -6
  28. package/dist/dark/variables.json +1 -3
  29. package/dist/dark/variables.less +3 -5
  30. package/dist/dark/variables.mjs +3 -5
  31. package/dist/index.cjs +3 -5
  32. package/dist/index.css +84 -10
  33. package/dist/index.d.ts +2 -6
  34. package/dist/index.flat.json +1 -3
  35. package/dist/index.json +26 -40
  36. package/dist/index.mjs +3 -5
  37. package/dist/index.tokens.json +441 -14
  38. package/dist/list.d.ts +14 -0
  39. package/dist/list.json +26 -40
  40. package/dist/list.mjs +31811 -0
  41. package/dist/property.css +2 -0
  42. package/dist/root.css +1 -3
  43. package/dist/theme-prince-xml.css +3 -5
  44. package/dist/theme.css +1 -3
  45. package/dist/tokens.cjs +512 -97
  46. package/dist/tokens.d.ts +239 -13
  47. package/dist/tokens.json +514 -99
  48. package/dist/variables.cjs +3 -5
  49. package/dist/variables.css +1 -3
  50. package/dist/variables.d.ts +2 -6
  51. package/dist/variables.json +1 -3
  52. package/dist/variables.less +3 -5
  53. package/dist/variables.mjs +3 -5
  54. package/package.json +1 -1
  55. package/src/brand/utrecht/typography.tokens.json +0 -2
  56. package/src/component/utrecht/blockquote.tokens.json +1 -1
  57. package/src/css-property-formatter.mjs +2 -1
  58. package/src/index.scss +79 -0
  59. package/src/json-list-formatter.js +2 -1
  60. package/style-dictionary-build.mjs +3 -1
  61. package/style-dictionary-config.mjs +27 -0
@@ -2090,6 +2090,7 @@ module.exports = {
2090
2090
  }
2091
2091
  }
2092
2092
  },
2093
+ "alternate-lang-nav": {},
2093
2094
  "article": {
2094
2095
  "max-inline-size": {
2095
2096
  "$extensions": {
@@ -3310,7 +3311,7 @@ module.exports = {
3310
3311
  }
3311
3312
  },
3312
3313
  "type": "fontSize",
3313
- "value": "0.75rem",
3314
+ "value": "0.875rem",
3314
3315
  "filePath": "src/component/utrecht/blockquote.tokens.json",
3315
3316
  "isSource": true,
3316
3317
  "original": {
@@ -3325,7 +3326,7 @@ module.exports = {
3325
3326
  }
3326
3327
  },
3327
3328
  "type": "fontSize",
3328
- "value": "{utrecht.typography.scale.xs.font-size}"
3329
+ "value": "{utrecht.typography.scale.sm.font-size}"
3329
3330
  },
3330
3331
  "name": "font-size",
3331
3332
  "attributes": {},
@@ -3390,6 +3391,51 @@ module.exports = {
3390
3391
  ]
3391
3392
  }
3392
3393
  },
3394
+ "body": {
3395
+ "font-family": {
3396
+ "$extensions": {
3397
+ "nl.nldesignsystem.css.property": {
3398
+ "syntax": "*",
3399
+ "inherits": true
3400
+ },
3401
+ "nl.nldesignsystem.figma.supports-token": true
3402
+ },
3403
+ "type": "fontFamilies"
3404
+ },
3405
+ "font-size": {
3406
+ "$extensions": {
3407
+ "nl.nldesignsystem.css.property": {
3408
+ "syntax": "<length>",
3409
+ "inherits": true
3410
+ },
3411
+ "nl.nldesignsystem.figma.supports-token": true
3412
+ },
3413
+ "type": "fontSizes"
3414
+ },
3415
+ "font-weight": {
3416
+ "$extensions": {
3417
+ "nl.nldesignsystem.css.property": {
3418
+ "syntax": "<number>",
3419
+ "inherits": true
3420
+ },
3421
+ "nl.nldesignsystem.figma.supports-token": true
3422
+ },
3423
+ "type": "fontWeights"
3424
+ },
3425
+ "line-height": {
3426
+ "$extensions": {
3427
+ "nl.nldesignsystem.css.property": {
3428
+ "syntax": [
3429
+ "<length>",
3430
+ "<number>"
3431
+ ],
3432
+ "inherits": true
3433
+ },
3434
+ "nl.nldesignsystem.figma.supports-token": true
3435
+ },
3436
+ "type": "lineHeights"
3437
+ }
3438
+ },
3393
3439
  "breadcrumb-nav": {
3394
3440
  "min-block-size": {
3395
3441
  "$extensions": {
@@ -10978,6 +11024,20 @@ module.exports = {
10978
11024
  }
10979
11025
  }
10980
11026
  },
11027
+ "combobox": {
11028
+ "popover": {
11029
+ "z-index": {
11030
+ "$extensions": {
11031
+ "nl.nldesignsystem.css.property": {
11032
+ "syntax": "<number>",
11033
+ "inherits": true
11034
+ },
11035
+ "nl.nldesignsystem.figma.supports-token": false
11036
+ },
11037
+ "type": "other"
11038
+ }
11039
+ }
11040
+ },
10981
11041
  "action": {
10982
11042
  "activate": {
10983
11043
  "cursor": {
@@ -19901,6 +19961,7 @@ module.exports = {
19901
19961
  ]
19902
19962
  }
19903
19963
  },
19964
+ "html-content": {},
19904
19965
  "iban-data": {},
19905
19966
  "icon": {
19906
19967
  "color": {
@@ -21707,7 +21768,25 @@ module.exports = {
21707
21768
  ]
21708
21769
  }
21709
21770
  },
21710
- "selected": {
21771
+ "disabled": {
21772
+ "background-color": {
21773
+ "$extensions": {
21774
+ "nl.nldesignsystem.css.property": {
21775
+ "syntax": "<color>",
21776
+ "inherits": true
21777
+ }
21778
+ }
21779
+ },
21780
+ "color": {
21781
+ "$extensions": {
21782
+ "nl.nldesignsystem.css.property": {
21783
+ "syntax": "<color>",
21784
+ "inherits": true
21785
+ }
21786
+ }
21787
+ }
21788
+ },
21789
+ "hover": {
21711
21790
  "background-color": {
21712
21791
  "$extensions": {
21713
21792
  "nl.nldesignsystem.css.property": {
@@ -21715,7 +21794,7 @@ module.exports = {
21715
21794
  "inherits": true
21716
21795
  }
21717
21796
  },
21718
- "value": "hsl(0 0% 95%)",
21797
+ "value": "hsl(211 60% 90%)",
21719
21798
  "filePath": "src/component/utrecht/listbox.tokens.json",
21720
21799
  "isSource": true,
21721
21800
  "original": {
@@ -21725,7 +21804,7 @@ module.exports = {
21725
21804
  "inherits": true
21726
21805
  }
21727
21806
  },
21728
- "value": "{utrecht.color.grey.95}"
21807
+ "value": "{utrecht.color.blue.90}"
21729
21808
  },
21730
21809
  "name": "background-color",
21731
21810
  "attributes": {},
@@ -21733,7 +21812,7 @@ module.exports = {
21733
21812
  "utrecht",
21734
21813
  "listbox",
21735
21814
  "option",
21736
- "selected",
21815
+ "hover",
21737
21816
  "background-color"
21738
21817
  ]
21739
21818
  },
@@ -21762,55 +21841,115 @@ module.exports = {
21762
21841
  "utrecht",
21763
21842
  "listbox",
21764
21843
  "option",
21765
- "selected",
21844
+ "hover",
21766
21845
  "color"
21767
21846
  ]
21768
21847
  }
21769
21848
  },
21770
- "icon": {
21771
- "size": {
21849
+ "selected": {
21850
+ "background-color": {
21772
21851
  "$extensions": {
21773
21852
  "nl.nldesignsystem.css.property": {
21774
- "syntax": "<length>",
21853
+ "syntax": "<color>",
21775
21854
  "inherits": true
21776
21855
  }
21777
- }
21778
- }
21779
- },
21780
- "hover": {
21781
- "color": {
21782
- "value": "hsl(0 0% 0%)",
21856
+ },
21857
+ "value": "hsl(0 0% 95%)",
21783
21858
  "filePath": "src/component/utrecht/listbox.tokens.json",
21784
21859
  "isSource": true,
21785
21860
  "original": {
21786
- "value": "{utrecht.color.black}"
21861
+ "$extensions": {
21862
+ "nl.nldesignsystem.css.property": {
21863
+ "syntax": "<color>",
21864
+ "inherits": true
21865
+ }
21866
+ },
21867
+ "value": "{utrecht.color.grey.95}"
21787
21868
  },
21788
- "name": "color",
21869
+ "name": "background-color",
21789
21870
  "attributes": {},
21790
21871
  "path": [
21791
21872
  "utrecht",
21792
21873
  "listbox",
21793
21874
  "option",
21794
- "hover",
21795
- "color"
21875
+ "selected",
21876
+ "background-color"
21796
21877
  ]
21797
21878
  },
21798
- "background-color": {
21799
- "value": "hsl(211 60% 90%)",
21879
+ "color": {
21880
+ "$extensions": {
21881
+ "nl.nldesignsystem.css.property": {
21882
+ "syntax": "<color>",
21883
+ "inherits": true
21884
+ }
21885
+ },
21886
+ "value": "hsl(0 0% 0%)",
21800
21887
  "filePath": "src/component/utrecht/listbox.tokens.json",
21801
21888
  "isSource": true,
21802
21889
  "original": {
21803
- "value": "{utrecht.color.blue.90}"
21890
+ "$extensions": {
21891
+ "nl.nldesignsystem.css.property": {
21892
+ "syntax": "<color>",
21893
+ "inherits": true
21894
+ }
21895
+ },
21896
+ "value": "{utrecht.color.black}"
21804
21897
  },
21805
- "name": "background-color",
21898
+ "name": "color",
21806
21899
  "attributes": {},
21807
21900
  "path": [
21808
21901
  "utrecht",
21809
21902
  "listbox",
21810
21903
  "option",
21811
- "hover",
21812
- "background-color"
21904
+ "selected",
21905
+ "color"
21813
21906
  ]
21907
+ },
21908
+ "disabled": {
21909
+ "background-color": {
21910
+ "$extensions": {
21911
+ "nl.nldesignsystem.css.property": {
21912
+ "syntax": "<color>",
21913
+ "inherits": true
21914
+ }
21915
+ }
21916
+ },
21917
+ "color": {
21918
+ "$extensions": {
21919
+ "nl.nldesignsystem.css.property": {
21920
+ "syntax": "<color>",
21921
+ "inherits": true
21922
+ }
21923
+ }
21924
+ }
21925
+ },
21926
+ "hover": {
21927
+ "background-color": {
21928
+ "$extensions": {
21929
+ "nl.nldesignsystem.css.property": {
21930
+ "syntax": "<color>",
21931
+ "inherits": true
21932
+ }
21933
+ }
21934
+ },
21935
+ "color": {
21936
+ "$extensions": {
21937
+ "nl.nldesignsystem.css.property": {
21938
+ "syntax": "<color>",
21939
+ "inherits": true
21940
+ }
21941
+ }
21942
+ }
21943
+ }
21944
+ },
21945
+ "icon": {
21946
+ "size": {
21947
+ "$extensions": {
21948
+ "nl.nldesignsystem.css.property": {
21949
+ "syntax": "<length>",
21950
+ "inherits": true
21951
+ }
21952
+ }
21814
21953
  }
21815
21954
  }
21816
21955
  },
@@ -23165,6 +23304,26 @@ module.exports = {
23165
23304
  ]
23166
23305
  },
23167
23306
  "content": {
23307
+ "background-color": {
23308
+ "$extensions": {
23309
+ "nl.nldesignsystem.css.property": {
23310
+ "syntax": "<color>",
23311
+ "inherits": true
23312
+ },
23313
+ "nl.nldesignsystem.figma.supports-token": false
23314
+ },
23315
+ "type": "color"
23316
+ },
23317
+ "color": {
23318
+ "$extensions": {
23319
+ "nl.nldesignsystem.css.property": {
23320
+ "syntax": "<color>",
23321
+ "inherits": true
23322
+ },
23323
+ "nl.nldesignsystem.figma.supports-token": false
23324
+ },
23325
+ "type": "color"
23326
+ },
23168
23327
  "max-inline-size": {
23169
23328
  "$extensions": {
23170
23329
  "nl.nldesignsystem.css.property": {
@@ -24428,6 +24587,90 @@ module.exports = {
24428
24587
  }
24429
24588
  }
24430
24589
  },
24590
+ "page-body": {
24591
+ "background-color": {
24592
+ "$extensions": {
24593
+ "nl.nldesignsystem.css.property": {
24594
+ "syntax": "<color>",
24595
+ "inherits": true
24596
+ },
24597
+ "nl.nldesignsystem.figma.supports-token": false
24598
+ },
24599
+ "type": "color"
24600
+ },
24601
+ "color": {
24602
+ "$extensions": {
24603
+ "nl.nldesignsystem.css.property": {
24604
+ "syntax": "<color>",
24605
+ "inherits": true
24606
+ },
24607
+ "nl.nldesignsystem.figma.supports-token": false
24608
+ },
24609
+ "type": "color"
24610
+ },
24611
+ "content": {
24612
+ "background-color": {
24613
+ "$extensions": {
24614
+ "nl.nldesignsystem.css.property": {
24615
+ "syntax": "<color>",
24616
+ "inherits": true
24617
+ },
24618
+ "nl.nldesignsystem.figma.supports-token": false
24619
+ },
24620
+ "type": "color"
24621
+ },
24622
+ "color": {
24623
+ "$extensions": {
24624
+ "nl.nldesignsystem.css.property": {
24625
+ "syntax": "<color>",
24626
+ "inherits": true
24627
+ },
24628
+ "nl.nldesignsystem.figma.supports-token": false
24629
+ },
24630
+ "type": "color"
24631
+ },
24632
+ "padding-block-start": {
24633
+ "$extensions": {
24634
+ "nl.nldesignsystem.css.property": {
24635
+ "syntax": "<length>",
24636
+ "inherits": true
24637
+ },
24638
+ "nl.nldesignsystem.figma.supports-token": false
24639
+ },
24640
+ "type": "spacing"
24641
+ },
24642
+ "padding-block-end": {
24643
+ "$extensions": {
24644
+ "nl.nldesignsystem.css.property": {
24645
+ "syntax": "<length>",
24646
+ "inherits": true
24647
+ },
24648
+ "nl.nldesignsystem.figma.supports-token": false
24649
+ },
24650
+ "type": "spacing"
24651
+ },
24652
+ "padding-inline-start": {
24653
+ "$extensions": {
24654
+ "nl.nldesignsystem.css.property": {
24655
+ "syntax": "<length>",
24656
+ "inherits": true
24657
+ },
24658
+ "nl.nldesignsystem.figma.supports-token": false
24659
+ },
24660
+ "type": "spacing"
24661
+ },
24662
+ "padding-inine-end": {
24663
+ "$extensions": {
24664
+ "nl.nldesignsystem.css.property": {
24665
+ "syntax": "<length>",
24666
+ "inherits": true
24667
+ },
24668
+ "nl.nldesignsystem.figma.supports-token": false
24669
+ },
24670
+ "type": "spacing"
24671
+ }
24672
+ }
24673
+ },
24431
24674
  "page-content": {
24432
24675
  "padding-block-start": {
24433
24676
  "$extensions": {
@@ -24721,50 +24964,112 @@ module.exports = {
24721
24964
  "type": "dimension",
24722
24965
  "value": "{utrecht.space.block.3xl}"
24723
24966
  },
24724
- "name": "padding-block-end",
24967
+ "name": "padding-block-end",
24968
+ "attributes": {},
24969
+ "path": [
24970
+ "utrecht",
24971
+ "page-footer",
24972
+ "padding-block-end"
24973
+ ]
24974
+ },
24975
+ "padding-block-start": {
24976
+ "$extensions": {
24977
+ "nl.nldesignsystem.css.property": {
24978
+ "syntax": "<length>",
24979
+ "inherits": true
24980
+ },
24981
+ "nl.nldesignsystem.figma.supports-token": false,
24982
+ "studio.tokens": {
24983
+ "originalType": "spacing"
24984
+ }
24985
+ },
24986
+ "type": "dimension",
24987
+ "value": "48px",
24988
+ "filePath": "src/component/utrecht/page-footer.tokens.json",
24989
+ "isSource": true,
24990
+ "original": {
24991
+ "$extensions": {
24992
+ "nl.nldesignsystem.css.property": {
24993
+ "syntax": "<length>",
24994
+ "inherits": true
24995
+ },
24996
+ "nl.nldesignsystem.figma.supports-token": false,
24997
+ "studio.tokens": {
24998
+ "originalType": "spacing"
24999
+ }
25000
+ },
25001
+ "type": "dimension",
25002
+ "value": "{utrecht.space.block.3xl}"
25003
+ },
25004
+ "name": "padding-block-start",
24725
25005
  "attributes": {},
24726
25006
  "path": [
24727
25007
  "utrecht",
24728
25008
  "page-footer",
24729
- "padding-block-end"
25009
+ "padding-block-start"
24730
25010
  ]
24731
25011
  },
24732
- "padding-block-start": {
24733
- "$extensions": {
24734
- "nl.nldesignsystem.css.property": {
24735
- "syntax": "<length>",
24736
- "inherits": true
25012
+ "content": {
25013
+ "color": {
25014
+ "$extensions": {
25015
+ "nl.nldesignsystem.css.property": {
25016
+ "syntax": "<color>",
25017
+ "inherits": true
25018
+ },
25019
+ "nl.nldesignsystem.figma.supports-token": false
24737
25020
  },
24738
- "nl.nldesignsystem.figma.supports-token": false,
24739
- "studio.tokens": {
24740
- "originalType": "spacing"
24741
- }
25021
+ "type": "color"
24742
25022
  },
24743
- "type": "dimension",
24744
- "value": "48px",
24745
- "filePath": "src/component/utrecht/page-footer.tokens.json",
24746
- "isSource": true,
24747
- "original": {
25023
+ "background-color": {
25024
+ "$extensions": {
25025
+ "nl.nldesignsystem.css.property": {
25026
+ "syntax": "<color>",
25027
+ "inherits": true
25028
+ },
25029
+ "nl.nldesignsystem.figma.supports-token": false
25030
+ },
25031
+ "type": "color"
25032
+ },
25033
+ "padding-inline-end": {
24748
25034
  "$extensions": {
24749
25035
  "nl.nldesignsystem.css.property": {
24750
25036
  "syntax": "<length>",
24751
25037
  "inherits": true
24752
25038
  },
24753
- "nl.nldesignsystem.figma.supports-token": false,
24754
- "studio.tokens": {
24755
- "originalType": "spacing"
24756
- }
25039
+ "nl.nldesignsystem.figma.supports-token": false
24757
25040
  },
24758
- "type": "dimension",
24759
- "value": "{utrecht.space.block.3xl}"
25041
+ "type": "spacing"
24760
25042
  },
24761
- "name": "padding-block-start",
24762
- "attributes": {},
24763
- "path": [
24764
- "utrecht",
24765
- "page-footer",
24766
- "padding-block-start"
24767
- ]
25043
+ "padding-inline-start": {
25044
+ "$extensions": {
25045
+ "nl.nldesignsystem.css.property": {
25046
+ "syntax": "<length>",
25047
+ "inherits": true
25048
+ },
25049
+ "nl.nldesignsystem.figma.supports-token": false
25050
+ },
25051
+ "type": "spacing"
25052
+ },
25053
+ "padding-block-end": {
25054
+ "$extensions": {
25055
+ "nl.nldesignsystem.css.property": {
25056
+ "syntax": "<length>",
25057
+ "inherits": true
25058
+ },
25059
+ "nl.nldesignsystem.figma.supports-token": false
25060
+ },
25061
+ "type": "spacing"
25062
+ },
25063
+ "padding-block-start": {
25064
+ "$extensions": {
25065
+ "nl.nldesignsystem.css.property": {
25066
+ "syntax": "<length>",
25067
+ "inherits": true
25068
+ },
25069
+ "nl.nldesignsystem.figma.supports-token": false
25070
+ },
25071
+ "type": "spacing"
25072
+ }
24768
25073
  }
24769
25074
  },
24770
25075
  "page-header": {
@@ -24778,6 +25083,16 @@ module.exports = {
24778
25083
  },
24779
25084
  "type": "color"
24780
25085
  },
25086
+ "border-block-end-color": {
25087
+ "$extensions": {
25088
+ "nl.nldesignsystem.css.property": {
25089
+ "syntax": "<color>",
25090
+ "inherits": true
25091
+ },
25092
+ "nl.nldesignsystem.figma.supports-token": false
25093
+ },
25094
+ "type": "color"
25095
+ },
24781
25096
  "color": {
24782
25097
  "$extensions": {
24783
25098
  "nl.nldesignsystem.css.property": {
@@ -24935,8 +25250,71 @@ module.exports = {
24935
25250
  "page-header",
24936
25251
  "padding-inline-end"
24937
25252
  ]
25253
+ },
25254
+ "content": {
25255
+ "background-color": {
25256
+ "$extensions": {
25257
+ "nl.nldesignsystem.css.property": {
25258
+ "syntax": "<color>",
25259
+ "inherits": true
25260
+ },
25261
+ "nl.nldesignsystem.figma.supports-token": false
25262
+ },
25263
+ "type": "color"
25264
+ },
25265
+ "color": {
25266
+ "$extensions": {
25267
+ "nl.nldesignsystem.css.property": {
25268
+ "syntax": "<color>",
25269
+ "inherits": true
25270
+ },
25271
+ "nl.nldesignsystem.figma.supports-token": false
25272
+ },
25273
+ "type": "color"
25274
+ },
25275
+ "padding-block-start": {
25276
+ "$extensions": {
25277
+ "nl.nldesignsystem.css.property": {
25278
+ "syntax": "<length>",
25279
+ "inherits": true
25280
+ },
25281
+ "nl.nldesignsystem.figma.supports-token": false
25282
+ },
25283
+ "type": "spacing"
25284
+ },
25285
+ "padding-block-end": {
25286
+ "$extensions": {
25287
+ "nl.nldesignsystem.css.property": {
25288
+ "syntax": "<length>",
25289
+ "inherits": true
25290
+ },
25291
+ "nl.nldesignsystem.figma.supports-token": false
25292
+ },
25293
+ "type": "spacing"
25294
+ },
25295
+ "padding-inline-start": {
25296
+ "$extensions": {
25297
+ "nl.nldesignsystem.css.property": {
25298
+ "syntax": "<length>",
25299
+ "inherits": true
25300
+ },
25301
+ "nl.nldesignsystem.figma.supports-token": false
25302
+ },
25303
+ "type": "spacing"
25304
+ },
25305
+ "padding-inline-end": {
25306
+ "$extensions": {
25307
+ "nl.nldesignsystem.css.property": {
25308
+ "syntax": "<length>",
25309
+ "inherits": true
25310
+ },
25311
+ "nl.nldesignsystem.figma.supports-token": false
25312
+ },
25313
+ "type": "spacing"
25314
+ }
24938
25315
  }
24939
25316
  },
25317
+ "page-layout": {},
24940
25318
  "page": {
24941
25319
  "background-color": {
24942
25320
  "value": "hsl(0 0% 15%)",
@@ -28495,6 +28873,38 @@ module.exports = {
28495
28873
  }
28496
28874
  }
28497
28875
  },
28876
+ "root": {
28877
+ "background-color": {
28878
+ "$extensions": {
28879
+ "nl.nldesignsystem.css.property": {
28880
+ "syntax": "<color>",
28881
+ "inherits": true
28882
+ },
28883
+ "nl.nldesignsystem.figma.supports-token": false
28884
+ },
28885
+ "type": "color"
28886
+ },
28887
+ "color": {
28888
+ "$extensions": {
28889
+ "nl.nldesignsystem.css.property": {
28890
+ "syntax": "<color>",
28891
+ "inherits": true
28892
+ },
28893
+ "nl.nldesignsystem.figma.supports-token": false
28894
+ },
28895
+ "type": "color"
28896
+ },
28897
+ "font-family": {
28898
+ "$extensions": {
28899
+ "nl.nldesignsystem.css.property": {
28900
+ "syntax": "*",
28901
+ "inherits": true
28902
+ },
28903
+ "nl.nldesignsystem.figma.supports-token": false
28904
+ },
28905
+ "type": "fontFamilies"
28906
+ }
28907
+ },
28498
28908
  "search-bar": {
28499
28909
  "button": {
28500
28910
  "background-color": {
@@ -29890,6 +30300,53 @@ module.exports = {
29890
30300
  "type": "color"
29891
30301
  }
29892
30302
  },
30303
+ "hover": {
30304
+ "background-color": {
30305
+ "$extensions": {
30306
+ "nl.nldesignsystem.css.property": {
30307
+ "syntax": "<color>",
30308
+ "inherits": true
30309
+ },
30310
+ "nl.nldesignsystem.fallback": [
30311
+ "utrecht.form-control.hover.background-color",
30312
+ "utrecht.select.background-color",
30313
+ "utrecht.form-control.background-color"
30314
+ ],
30315
+ "nl.nldesignsystem.figma.supports-token": true
30316
+ },
30317
+ "type": "color"
30318
+ },
30319
+ "border-color": {
30320
+ "$extensions": {
30321
+ "nl.nldesignsystem.css.property": {
30322
+ "syntax": "<color>",
30323
+ "inherits": true
30324
+ },
30325
+ "nl.nldesignsystem.fallback": [
30326
+ "utrecht.form-control.hover.border-color",
30327
+ "utrecht.select.border-color",
30328
+ "utrecht.form-control.border-color"
30329
+ ],
30330
+ "nl.nldesignsystem.figma.supports-token": true
30331
+ },
30332
+ "type": "color"
30333
+ },
30334
+ "color": {
30335
+ "$extensions": {
30336
+ "nl.nldesignsystem.css.property": {
30337
+ "syntax": "<color>",
30338
+ "inherits": true
30339
+ },
30340
+ "nl.nldesignsystem.fallback": [
30341
+ "utrecht.form-control.hover.color",
30342
+ "utrecht.select.color",
30343
+ "utrecht.form-control.color"
30344
+ ],
30345
+ "nl.nldesignsystem.figma.supports-token": true
30346
+ },
30347
+ "type": "color"
30348
+ }
30349
+ },
29893
30350
  "focus": {
29894
30351
  "background-color": {
29895
30352
  "$extensions": {
@@ -35293,48 +35750,6 @@ module.exports = {
35293
35750
  }
35294
35751
  },
35295
35752
  "scale": {
35296
- "2xs": {
35297
- "font-size": {
35298
- "value": "0.5rem",
35299
- "comment": "8px",
35300
- "filePath": "src/brand/utrecht/typography.tokens.json",
35301
- "isSource": true,
35302
- "original": {
35303
- "value": "8px",
35304
- "comment": "8px"
35305
- },
35306
- "name": "font-size",
35307
- "attributes": {},
35308
- "path": [
35309
- "utrecht",
35310
- "typography",
35311
- "scale",
35312
- "2xs",
35313
- "font-size"
35314
- ]
35315
- }
35316
- },
35317
- "xs": {
35318
- "font-size": {
35319
- "value": "0.75rem",
35320
- "comment": "12px",
35321
- "filePath": "src/brand/utrecht/typography.tokens.json",
35322
- "isSource": true,
35323
- "original": {
35324
- "value": "12px",
35325
- "comment": "12px"
35326
- },
35327
- "name": "font-size",
35328
- "attributes": {},
35329
- "path": [
35330
- "utrecht",
35331
- "typography",
35332
- "scale",
35333
- "xs",
35334
- "font-size"
35335
- ]
35336
- }
35337
- },
35338
35753
  "sm": {
35339
35754
  "font-size": {
35340
35755
  "value": "0.875rem",