@utrecht/design-tokens 5.1.0 → 5.1.1

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 (49) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/_mixin-theme.scss +2 -2
  3. package/dist/_mixin.scss +2 -2
  4. package/dist/_variables.scss +2 -2
  5. package/dist/dark/_mixin-theme.scss +2 -2
  6. package/dist/dark/_mixin.scss +2 -2
  7. package/dist/dark/_variables.scss +2 -2
  8. package/dist/dark/index.cjs +2 -2
  9. package/dist/dark/index.css +2 -2
  10. package/dist/dark/index.flat.json +2 -2
  11. package/dist/dark/index.json +8 -8
  12. package/dist/dark/index.mjs +2 -2
  13. package/dist/dark/index.tokens.json +2 -2
  14. package/dist/dark/list.json +8 -8
  15. package/dist/dark/list.mjs +8 -8
  16. package/dist/dark/property.css +1 -2
  17. package/dist/dark/root.css +2 -2
  18. package/dist/dark/theme-prince-xml.css +2 -2
  19. package/dist/dark/theme.css +2 -2
  20. package/dist/dark/tokens.cjs +8 -8
  21. package/dist/dark/tokens.json +8 -8
  22. package/dist/dark/variables.cjs +2 -2
  23. package/dist/dark/variables.css +2 -2
  24. package/dist/dark/variables.json +2 -2
  25. package/dist/dark/variables.less +2 -2
  26. package/dist/dark/variables.mjs +2 -2
  27. package/dist/index.cjs +2 -2
  28. package/dist/index.css +4 -4
  29. package/dist/index.flat.json +2 -2
  30. package/dist/index.json +8 -8
  31. package/dist/index.mjs +2 -2
  32. package/dist/index.tokens.json +2 -2
  33. package/dist/list.json +8 -8
  34. package/dist/list.mjs +8 -8
  35. package/dist/property.css +1 -2
  36. package/dist/root.css +2 -2
  37. package/dist/theme-prince-xml.css +2 -2
  38. package/dist/theme.css +2 -2
  39. package/dist/tokens.cjs +8 -8
  40. package/dist/tokens.json +8 -8
  41. package/dist/variables.cjs +2 -2
  42. package/dist/variables.css +2 -2
  43. package/dist/variables.json +2 -2
  44. package/dist/variables.less +2 -2
  45. package/dist/variables.mjs +2 -2
  46. package/package.json +1 -1
  47. package/src/component/of/progress-indicator.tokens.json +1 -1
  48. package/src/component/utrecht/form-toggle.tokens.json +1 -1
  49. package/src/dark/component/tokens.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @utrecht/design-tokens
2
2
 
3
+ ## 5.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 7e89444: Switch from `hsla()` and `rgba()` to modern syntax to include alpha in `hsl()` and `rgb()`.
8
+
3
9
  ## 5.1.0
4
10
 
5
11
  ### Minor Changes
@@ -4,7 +4,7 @@
4
4
 
5
5
  @mixin utrecht-theme {
6
6
  --signalen-progress-bar-border-radius: 4px;
7
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
7
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
8
8
  --nl-number-badge-padding-inline: 1ex;
9
9
  --nl-number-badge-padding-block: 1ex;
10
10
  --nl-data-badge-border-radius: 0;
@@ -290,7 +290,7 @@
290
290
  --utrecht-form-toggle-border-radius: 10em;
291
291
  --utrecht-form-toggle-border-style: solid;
292
292
  --utrecht-form-toggle-border-color: transparent;
293
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
293
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
294
294
  --utrecht-form-label-font-size: 1em;
295
295
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
296
296
  --utrecht-form-control-block-size: 42px;
package/dist/_mixin.scss CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  @mixin utrecht-theme {
6
6
  --signalen-progress-bar-border-radius: 4px;
7
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
7
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
8
8
  --nl-number-badge-padding-inline: 1ex;
9
9
  --nl-number-badge-padding-block: 1ex;
10
10
  --nl-data-badge-border-radius: 0;
@@ -290,7 +290,7 @@
290
290
  --utrecht-form-toggle-border-radius: 10em;
291
291
  --utrecht-form-toggle-border-style: solid;
292
292
  --utrecht-form-toggle-border-color: transparent;
293
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
293
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
294
294
  --utrecht-form-label-font-size: 1em;
295
295
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
296
296
  --utrecht-form-control-block-size: 42px;
@@ -2,7 +2,7 @@
2
2
  // Do not edit directly, this file was auto-generated.
3
3
 
4
4
  $signalen-progress-bar-border-radius: 4px;
5
- $of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
5
+ $of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
6
6
  $nl-number-badge-padding-inline: 1ex;
7
7
  $nl-number-badge-padding-block: 1ex;
8
8
  $nl-data-badge-border-radius: 0;
@@ -288,7 +288,7 @@ $utrecht-form-toggle-border-width: 2px;
288
288
  $utrecht-form-toggle-border-radius: 10em;
289
289
  $utrecht-form-toggle-border-style: solid;
290
290
  $utrecht-form-toggle-border-color: transparent;
291
- $utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
291
+ $utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
292
292
  $utrecht-form-label-font-size: 1em;
293
293
  $utrecht-form-field-invalid-border-inline-start-width: 3px;
294
294
  $utrecht-form-control-block-size: 42px;
@@ -4,7 +4,7 @@
4
4
 
5
5
  @mixin utrecht-theme--dark {
6
6
  --signalen-progress-bar-border-radius: 4px;
7
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
7
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
8
8
  --nl-number-badge-padding-inline: 1ex;
9
9
  --nl-number-badge-padding-block: 1ex;
10
10
  --nl-data-badge-border-radius: 0;
@@ -291,7 +291,7 @@
291
291
  --utrecht-form-toggle-border-radius: 10em;
292
292
  --utrecht-form-toggle-border-style: solid;
293
293
  --utrecht-form-toggle-border-color: transparent;
294
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
294
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
295
295
  --utrecht-form-label-font-size: 1em;
296
296
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
297
297
  --utrecht-form-control-block-size: 42px;
@@ -4,7 +4,7 @@
4
4
 
5
5
  @mixin utrecht-theme--dark {
6
6
  --signalen-progress-bar-border-radius: 4px;
7
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
7
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
8
8
  --nl-number-badge-padding-inline: 1ex;
9
9
  --nl-number-badge-padding-block: 1ex;
10
10
  --nl-data-badge-border-radius: 0;
@@ -291,7 +291,7 @@
291
291
  --utrecht-form-toggle-border-radius: 10em;
292
292
  --utrecht-form-toggle-border-style: solid;
293
293
  --utrecht-form-toggle-border-color: transparent;
294
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
294
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
295
295
  --utrecht-form-label-font-size: 1em;
296
296
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
297
297
  --utrecht-form-control-block-size: 42px;
@@ -2,7 +2,7 @@
2
2
  // Do not edit directly, this file was auto-generated.
3
3
 
4
4
  $signalen-progress-bar-border-radius: 4px;
5
- $of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
5
+ $of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
6
6
  $nl-number-badge-padding-inline: 1ex;
7
7
  $nl-number-badge-padding-block: 1ex;
8
8
  $nl-data-badge-border-radius: 0;
@@ -289,7 +289,7 @@ $utrecht-form-toggle-border-width: 2px;
289
289
  $utrecht-form-toggle-border-radius: 10em;
290
290
  $utrecht-form-toggle-border-style: solid;
291
291
  $utrecht-form-toggle-border-color: transparent;
292
- $utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
292
+ $utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
293
293
  $utrecht-form-label-font-size: 1em;
294
294
  $utrecht-form-field-invalid-border-inline-start-width: 3px;
295
295
  $utrecht-form-control-block-size: 42px;
@@ -532,7 +532,7 @@ module.exports = {
532
532
  "utrechtFormLabelFontSize": "1em",
533
533
  "utrechtFormLabelCheckboxFontWeight": "400",
534
534
  "utrechtFormLabelRadioFontWeight": "400",
535
- "utrechtFormToggleAccentColor": "hsla(0 0% 48% / 100%)",
535
+ "utrechtFormToggleAccentColor": "hsl(0 0% 48% / 100%)",
536
536
  "utrechtFormToggleBackgroundColor": "hsl(0 0% 100%)",
537
537
  "utrechtFormToggleBorderColor": "transparent",
538
538
  "utrechtFormToggleBorderStyle": "solid",
@@ -1259,7 +1259,7 @@ module.exports = {
1259
1259
  "ofPageFooterBg": "hsl(0 100% 40%)",
1260
1260
  "ofPageFooterFg": "hsl(0 0% 100%)",
1261
1261
  "ofProgressIndicatorBackgroundColor": "hsl(0 0% 15%)",
1262
- "ofProgressIndicatorMobileBoxShadow": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
1262
+ "ofProgressIndicatorMobileBoxShadow": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
1263
1263
  "signalenModalDialogBackgroundColor": "hsl(0 0% 100%)",
1264
1264
  "signalenModalDialogColor": "hsl(0 0% 0%)",
1265
1265
  "signalenProgressBarBorderRadius": "4px"
@@ -9,7 +9,7 @@
9
9
  .utrecht-theme--color-scheme-dark,
10
10
  .utrecht-theme--color-scheme-dark ::backdrop {
11
11
  --signalen-progress-bar-border-radius: 4px;
12
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
12
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
13
13
  --nl-number-badge-padding-inline: 1ex;
14
14
  --nl-number-badge-padding-block: 1ex;
15
15
  --nl-data-badge-border-radius: 0;
@@ -296,7 +296,7 @@
296
296
  --utrecht-form-toggle-border-radius: 10em;
297
297
  --utrecht-form-toggle-border-style: solid;
298
298
  --utrecht-form-toggle-border-color: transparent;
299
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
299
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
300
300
  --utrecht-form-label-font-size: 1em;
301
301
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
302
302
  --utrecht-form-control-block-size: 42px;
@@ -108,7 +108,7 @@
108
108
  "ofPageFooterBg": "hsl(0 100% 40%)",
109
109
  "ofPageFooterFg": "hsl(0 0% 100%)",
110
110
  "ofProgressIndicatorBackgroundColor": "hsl(0 0% 15%)",
111
- "ofProgressIndicatorMobileBoxShadow": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
111
+ "ofProgressIndicatorMobileBoxShadow": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
112
112
  "signalenModalDialogBackgroundColor": "hsl(0 0% 100%)",
113
113
  "signalenModalDialogColor": "hsl(0 0% 0%)",
114
114
  "signalenProgressBarBorderRadius": "4px",
@@ -640,7 +640,7 @@
640
640
  "utrechtFormLabelFontSize": "1em",
641
641
  "utrechtFormLabelFontWeight": "700",
642
642
  "utrechtFormLabelRadioFontWeight": "400",
643
- "utrechtFormToggleAccentColor": "hsla(0 0% 48% / 100%)",
643
+ "utrechtFormToggleAccentColor": "hsl(0 0% 48% / 100%)",
644
644
  "utrechtFormToggleBackgroundColor": "hsl(0 0% 100%)",
645
645
  "utrechtFormToggleBorderColor": "transparent",
646
646
  "utrechtFormToggleBorderRadius": "10em",
@@ -2419,11 +2419,11 @@
2419
2419
  ]
2420
2420
  },
2421
2421
  {
2422
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
2422
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
2423
2423
  "filePath": "src/component/of/progress-indicator.tokens.json",
2424
2424
  "isSource": true,
2425
2425
  "original": {
2426
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)"
2426
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)"
2427
2427
  },
2428
2428
  "name": "ofProgressIndicatorMobileBoxShadow",
2429
2429
  "attributes": {},
@@ -17980,11 +17980,11 @@
17980
17980
  ]
17981
17981
  },
17982
17982
  {
17983
- "value": "hsla(0 0% 48% / 100%)",
17983
+ "value": "hsl(0 0% 48% / 100%)",
17984
17984
  "filePath": "src/dark/component/tokens.json",
17985
17985
  "isSource": true,
17986
17986
  "original": {
17987
- "value": "hsla(0 0% 48% / 100%)"
17987
+ "value": "hsl(0 0% 48% / 100%)"
17988
17988
  },
17989
17989
  "name": "utrechtFormToggleAccentColor",
17990
17990
  "attributes": {},
@@ -26289,7 +26289,7 @@
26289
26289
  {
26290
26290
  "$extensions": {
26291
26291
  "nl.nldesignsystem.css.property": {
26292
- "syntax": "<url> | *",
26292
+ "syntax": "*",
26293
26293
  "inherits": true
26294
26294
  },
26295
26295
  "nl.nldesignsystem.figma.supports-token": false
@@ -26301,7 +26301,7 @@
26301
26301
  "original": {
26302
26302
  "$extensions": {
26303
26303
  "nl.nldesignsystem.css.property": {
26304
- "syntax": "<url> | *",
26304
+ "syntax": "*",
26305
26305
  "inherits": true
26306
26306
  },
26307
26307
  "nl.nldesignsystem.figma.supports-token": false
@@ -30624,7 +30624,7 @@
30624
30624
  {
30625
30625
  "$extensions": {
30626
30626
  "nl.nldesignsystem.css.property": {
30627
- "syntax": "<>",
30627
+ "syntax": "<color>",
30628
30628
  "inherits": true
30629
30629
  },
30630
30630
  "nl.nldesignsystem.figma.supports-token": false
@@ -30636,7 +30636,7 @@
30636
30636
  "original": {
30637
30637
  "$extensions": {
30638
30638
  "nl.nldesignsystem.css.property": {
30639
- "syntax": "<>",
30639
+ "syntax": "<color>",
30640
30640
  "inherits": true
30641
30641
  },
30642
30642
  "nl.nldesignsystem.figma.supports-token": false
@@ -531,7 +531,7 @@ export const utrechtFormLabelFontWeight = "700";
531
531
  export const utrechtFormLabelFontSize = "1em";
532
532
  export const utrechtFormLabelCheckboxFontWeight = "400";
533
533
  export const utrechtFormLabelRadioFontWeight = "400";
534
- export const utrechtFormToggleAccentColor = "hsla(0 0% 48% / 100%)";
534
+ export const utrechtFormToggleAccentColor = "hsl(0 0% 48% / 100%)";
535
535
  export const utrechtFormToggleBackgroundColor = "hsl(0 0% 100%)";
536
536
  export const utrechtFormToggleBorderColor = "transparent";
537
537
  export const utrechtFormToggleBorderStyle = "solid";
@@ -1258,7 +1258,7 @@ export const ofLayoutBg = "hsl(0 0% 15%)";
1258
1258
  export const ofPageFooterBg = "hsl(0 100% 40%)";
1259
1259
  export const ofPageFooterFg = "hsl(0 0% 100%)";
1260
1260
  export const ofProgressIndicatorBackgroundColor = "hsl(0 0% 15%)";
1261
- export const ofProgressIndicatorMobileBoxShadow = "0px 0px 2px 0px rgba(0 0 0 / 20%)";
1261
+ export const ofProgressIndicatorMobileBoxShadow = "0px 0px 2px 0px rgb(0 0 0 / 20%)";
1262
1262
  export const signalenModalDialogBackgroundColor = "hsl(0 0% 100%)";
1263
1263
  export const signalenModalDialogColor = "hsl(0 0% 0%)";
1264
1264
  export const signalenProgressBarBorderRadius = "4px";
@@ -3922,7 +3922,7 @@
3922
3922
  }
3923
3923
  },
3924
3924
  "form-toggle": {
3925
- "accent-color": "hsla(0 0% 48% / 100%)",
3925
+ "accent-color": "hsl(0 0% 48% / 100%)",
3926
3926
  "background-color": "hsl(0 0% 100%)",
3927
3927
  "border-color": "transparent",
3928
3928
  "border-style": "solid",
@@ -9308,7 +9308,7 @@
9308
9308
  "progress-indicator": {
9309
9309
  "background-color": "hsl(0 0% 15%)",
9310
9310
  "mobile": {
9311
- "box-shadow": "0px 0px 2px 0px rgba(0 0 0 / 20%)"
9311
+ "box-shadow": "0px 0px 2px 0px rgb(0 0 0 / 20%)"
9312
9312
  }
9313
9313
  }
9314
9314
  },
@@ -2419,11 +2419,11 @@
2419
2419
  ]
2420
2420
  },
2421
2421
  {
2422
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
2422
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
2423
2423
  "filePath": "src/component/of/progress-indicator.tokens.json",
2424
2424
  "isSource": true,
2425
2425
  "original": {
2426
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)"
2426
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)"
2427
2427
  },
2428
2428
  "name": "ofProgressIndicatorMobileBoxShadow",
2429
2429
  "attributes": {},
@@ -17980,11 +17980,11 @@
17980
17980
  ]
17981
17981
  },
17982
17982
  {
17983
- "value": "hsla(0 0% 48% / 100%)",
17983
+ "value": "hsl(0 0% 48% / 100%)",
17984
17984
  "filePath": "src/dark/component/tokens.json",
17985
17985
  "isSource": true,
17986
17986
  "original": {
17987
- "value": "hsla(0 0% 48% / 100%)"
17987
+ "value": "hsl(0 0% 48% / 100%)"
17988
17988
  },
17989
17989
  "name": "utrechtFormToggleAccentColor",
17990
17990
  "attributes": {},
@@ -26289,7 +26289,7 @@
26289
26289
  {
26290
26290
  "$extensions": {
26291
26291
  "nl.nldesignsystem.css.property": {
26292
- "syntax": "<url> | *",
26292
+ "syntax": "*",
26293
26293
  "inherits": true
26294
26294
  },
26295
26295
  "nl.nldesignsystem.figma.supports-token": false
@@ -26301,7 +26301,7 @@
26301
26301
  "original": {
26302
26302
  "$extensions": {
26303
26303
  "nl.nldesignsystem.css.property": {
26304
- "syntax": "<url> | *",
26304
+ "syntax": "*",
26305
26305
  "inherits": true
26306
26306
  },
26307
26307
  "nl.nldesignsystem.figma.supports-token": false
@@ -30624,7 +30624,7 @@
30624
30624
  {
30625
30625
  "$extensions": {
30626
30626
  "nl.nldesignsystem.css.property": {
30627
- "syntax": "<>",
30627
+ "syntax": "<color>",
30628
30628
  "inherits": true
30629
30629
  },
30630
30630
  "nl.nldesignsystem.figma.supports-token": false
@@ -30636,7 +30636,7 @@
30636
30636
  "original": {
30637
30637
  "$extensions": {
30638
30638
  "nl.nldesignsystem.css.property": {
30639
- "syntax": "<>",
30639
+ "syntax": "<color>",
30640
30640
  "inherits": true
30641
30641
  },
30642
30642
  "nl.nldesignsystem.figma.supports-token": false
@@ -2419,11 +2419,11 @@ export default [
2419
2419
  ]
2420
2420
  },
2421
2421
  {
2422
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
2422
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
2423
2423
  "filePath": "src/component/of/progress-indicator.tokens.json",
2424
2424
  "isSource": true,
2425
2425
  "original": {
2426
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)"
2426
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)"
2427
2427
  },
2428
2428
  "name": "ofProgressIndicatorMobileBoxShadow",
2429
2429
  "attributes": {},
@@ -17980,11 +17980,11 @@ export default [
17980
17980
  ]
17981
17981
  },
17982
17982
  {
17983
- "value": "hsla(0 0% 48% / 100%)",
17983
+ "value": "hsl(0 0% 48% / 100%)",
17984
17984
  "filePath": "src/dark/component/tokens.json",
17985
17985
  "isSource": true,
17986
17986
  "original": {
17987
- "value": "hsla(0 0% 48% / 100%)"
17987
+ "value": "hsl(0 0% 48% / 100%)"
17988
17988
  },
17989
17989
  "name": "utrechtFormToggleAccentColor",
17990
17990
  "attributes": {},
@@ -26289,7 +26289,7 @@ export default [
26289
26289
  {
26290
26290
  "$extensions": {
26291
26291
  "nl.nldesignsystem.css.property": {
26292
- "syntax": "<url> | *",
26292
+ "syntax": "*",
26293
26293
  "inherits": true
26294
26294
  },
26295
26295
  "nl.nldesignsystem.figma.supports-token": false
@@ -26301,7 +26301,7 @@ export default [
26301
26301
  "original": {
26302
26302
  "$extensions": {
26303
26303
  "nl.nldesignsystem.css.property": {
26304
- "syntax": "<url> | *",
26304
+ "syntax": "*",
26305
26305
  "inherits": true
26306
26306
  },
26307
26307
  "nl.nldesignsystem.figma.supports-token": false
@@ -30624,7 +30624,7 @@ export default [
30624
30624
  {
30625
30625
  "$extensions": {
30626
30626
  "nl.nldesignsystem.css.property": {
30627
- "syntax": "<>",
30627
+ "syntax": "<color>",
30628
30628
  "inherits": true
30629
30629
  },
30630
30630
  "nl.nldesignsystem.figma.supports-token": false
@@ -30636,7 +30636,7 @@ export default [
30636
30636
  "original": {
30637
30637
  "$extensions": {
30638
30638
  "nl.nldesignsystem.css.property": {
30639
- "syntax": "<>",
30639
+ "syntax": "<color>",
30640
30640
  "inherits": true
30641
30641
  },
30642
30642
  "nl.nldesignsystem.figma.supports-token": false
@@ -563,7 +563,6 @@
563
563
  @property --utrecht-page-content-padding-block-end { syntax: '<length>'; inherits: true; }
564
564
  @property --utrecht-page-content-padding-block-start { syntax: '<length>'; inherits: true; }
565
565
  @property --utrecht-page-footer-background-color { syntax: '<color>'; inherits: true; }
566
- @property --utrecht-page-footer-background-image { syntax: '<url> | *'; inherits: true; }
567
566
  @property --utrecht-page-footer-color { syntax: '<color>'; inherits: true; }
568
567
  @property --utrecht-page-footer-content-padding-block-end { syntax: '<length>'; inherits: true; }
569
568
  @property --utrecht-page-footer-content-padding-block-start { syntax: '<length>'; inherits: true; }
@@ -675,7 +674,7 @@
675
674
  @property --utrecht-search-bar-input-background-position-x { syntax: '<length>'; inherits: true; }
676
675
  @property --utrecht-search-bar-input-background-position-y { syntax: '<length>'; inherits: true; }
677
676
  @property --utrecht-search-bar-input-background-size { syntax: '<length>'; inherits: true; }
678
- @property --utrecht-search-bar-input-border-color { syntax: '<>'; inherits: true; }
677
+ @property --utrecht-search-bar-input-border-color { syntax: '<color>'; inherits: true; }
679
678
  @property --utrecht-search-bar-input-padding-inline-start { syntax: '<length>'; inherits: true; }
680
679
  @property --utrecht-search-bar-list-item-is-active-background-color { syntax: '<color>'; inherits: true; }
681
680
  @property --utrecht-search-bar-list-item-is-active-color { syntax: '<color>'; inherits: true; }
@@ -282,7 +282,7 @@
282
282
  --utrecht-form-toggle-border-style: solid;
283
283
  --utrecht-form-toggle-border-radius: 10em;
284
284
  --utrecht-form-toggle-border-color: transparent;
285
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
285
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
286
286
  --utrecht-form-label-font-size: 1em;
287
287
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
288
288
  --utrecht-form-control-read-only-border-color: transparent;
@@ -442,7 +442,7 @@
442
442
  --utrecht-accordion-button-border-color: transparent;
443
443
  --utrecht-accordion-button-active-border-color: transparent;
444
444
  --signalen-progress-bar-border-radius: 4px;
445
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
445
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
446
446
  --nl-number-badge-padding-inline: 1ex;
447
447
  --nl-number-badge-padding-block: 1ex;
448
448
  --nl-data-badge-border-radius: 0;
@@ -4,7 +4,7 @@
4
4
 
5
5
  .utrecht-theme {
6
6
  --signalen-progress-bar-border-radius: 4px;
7
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
7
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
8
8
  --nl-number-badge-padding-inline: 1ex;
9
9
  --nl-number-badge-padding-block: 1ex;
10
10
  --nl-data-badge-border-radius: 0;
@@ -291,7 +291,7 @@
291
291
  --utrecht-form-toggle-border-radius: 10em;
292
292
  --utrecht-form-toggle-border-style: solid;
293
293
  --utrecht-form-toggle-border-color: transparent;
294
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
294
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
295
295
  --utrecht-form-label-font-size: 1em;
296
296
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
297
297
  --utrecht-form-control-block-size: 42px;
@@ -282,7 +282,7 @@
282
282
  --utrecht-form-toggle-border-style: solid;
283
283
  --utrecht-form-toggle-border-radius: 10em;
284
284
  --utrecht-form-toggle-border-color: transparent;
285
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
285
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
286
286
  --utrecht-form-label-font-size: 1em;
287
287
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
288
288
  --utrecht-form-control-read-only-border-color: transparent;
@@ -442,7 +442,7 @@
442
442
  --utrecht-accordion-button-border-color: transparent;
443
443
  --utrecht-accordion-button-active-border-color: transparent;
444
444
  --signalen-progress-bar-border-radius: 4px;
445
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
445
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
446
446
  --nl-number-badge-padding-inline: 1ex;
447
447
  --nl-number-badge-padding-block: 1ex;
448
448
  --nl-data-badge-border-radius: 0;
@@ -19605,11 +19605,11 @@ module.exports = {
19605
19605
  },
19606
19606
  "form-toggle": {
19607
19607
  "accent-color": {
19608
- "value": "hsla(0 0% 48% / 100%)",
19608
+ "value": "hsl(0 0% 48% / 100%)",
19609
19609
  "filePath": "src/dark/component/tokens.json",
19610
19610
  "isSource": true,
19611
19611
  "original": {
19612
- "value": "hsla(0 0% 48% / 100%)"
19612
+ "value": "hsl(0 0% 48% / 100%)"
19613
19613
  },
19614
19614
  "name": "accent-color",
19615
19615
  "attributes": {},
@@ -29539,7 +29539,7 @@ module.exports = {
29539
29539
  "background-image": {
29540
29540
  "$extensions": {
29541
29541
  "nl.nldesignsystem.css.property": {
29542
- "syntax": "<url> | *",
29542
+ "syntax": "*",
29543
29543
  "inherits": true
29544
29544
  },
29545
29545
  "nl.nldesignsystem.figma.supports-token": false
@@ -29551,7 +29551,7 @@ module.exports = {
29551
29551
  "original": {
29552
29552
  "$extensions": {
29553
29553
  "nl.nldesignsystem.css.property": {
29554
- "syntax": "<url> | *",
29554
+ "syntax": "*",
29555
29555
  "inherits": true
29556
29556
  },
29557
29557
  "nl.nldesignsystem.figma.supports-token": false
@@ -34305,7 +34305,7 @@ module.exports = {
34305
34305
  "border-color": {
34306
34306
  "$extensions": {
34307
34307
  "nl.nldesignsystem.css.property": {
34308
- "syntax": "<>",
34308
+ "syntax": "<color>",
34309
34309
  "inherits": true
34310
34310
  },
34311
34311
  "nl.nldesignsystem.figma.supports-token": false
@@ -34317,7 +34317,7 @@ module.exports = {
34317
34317
  "original": {
34318
34318
  "$extensions": {
34319
34319
  "nl.nldesignsystem.css.property": {
34320
- "syntax": "<>",
34320
+ "syntax": "<color>",
34321
34321
  "inherits": true
34322
34322
  },
34323
34323
  "nl.nldesignsystem.figma.supports-token": false
@@ -45059,11 +45059,11 @@ module.exports = {
45059
45059
  },
45060
45060
  "mobile": {
45061
45061
  "box-shadow": {
45062
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
45062
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
45063
45063
  "filePath": "src/component/of/progress-indicator.tokens.json",
45064
45064
  "isSource": true,
45065
45065
  "original": {
45066
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)"
45066
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)"
45067
45067
  },
45068
45068
  "name": "box-shadow",
45069
45069
  "attributes": {},
@@ -19601,11 +19601,11 @@
19601
19601
  },
19602
19602
  "form-toggle": {
19603
19603
  "accent-color": {
19604
- "value": "hsla(0 0% 48% / 100%)",
19604
+ "value": "hsl(0 0% 48% / 100%)",
19605
19605
  "filePath": "src/dark/component/tokens.json",
19606
19606
  "isSource": true,
19607
19607
  "original": {
19608
- "value": "hsla(0 0% 48% / 100%)"
19608
+ "value": "hsl(0 0% 48% / 100%)"
19609
19609
  },
19610
19610
  "name": "utrechtFormToggleAccentColor",
19611
19611
  "attributes": {},
@@ -29535,7 +29535,7 @@
29535
29535
  "background-image": {
29536
29536
  "$extensions": {
29537
29537
  "nl.nldesignsystem.css.property": {
29538
- "syntax": "<url> | *",
29538
+ "syntax": "*",
29539
29539
  "inherits": true
29540
29540
  },
29541
29541
  "nl.nldesignsystem.figma.supports-token": false
@@ -29547,7 +29547,7 @@
29547
29547
  "original": {
29548
29548
  "$extensions": {
29549
29549
  "nl.nldesignsystem.css.property": {
29550
- "syntax": "<url> | *",
29550
+ "syntax": "*",
29551
29551
  "inherits": true
29552
29552
  },
29553
29553
  "nl.nldesignsystem.figma.supports-token": false
@@ -34301,7 +34301,7 @@
34301
34301
  "border-color": {
34302
34302
  "$extensions": {
34303
34303
  "nl.nldesignsystem.css.property": {
34304
- "syntax": "<>",
34304
+ "syntax": "<color>",
34305
34305
  "inherits": true
34306
34306
  },
34307
34307
  "nl.nldesignsystem.figma.supports-token": false
@@ -34313,7 +34313,7 @@
34313
34313
  "original": {
34314
34314
  "$extensions": {
34315
34315
  "nl.nldesignsystem.css.property": {
34316
- "syntax": "<>",
34316
+ "syntax": "<color>",
34317
34317
  "inherits": true
34318
34318
  },
34319
34319
  "nl.nldesignsystem.figma.supports-token": false
@@ -45055,11 +45055,11 @@
45055
45055
  },
45056
45056
  "mobile": {
45057
45057
  "box-shadow": {
45058
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
45058
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
45059
45059
  "filePath": "src/component/of/progress-indicator.tokens.json",
45060
45060
  "isSource": true,
45061
45061
  "original": {
45062
- "value": "0px 0px 2px 0px rgba(0 0 0 / 20%)"
45062
+ "value": "0px 0px 2px 0px rgb(0 0 0 / 20%)"
45063
45063
  },
45064
45064
  "name": "ofProgressIndicatorMobileBoxShadow",
45065
45065
  "attributes": {},
@@ -532,7 +532,7 @@ module.exports = {
532
532
  "utrechtFormLabelFontSize": "1em",
533
533
  "utrechtFormLabelCheckboxFontWeight": "400",
534
534
  "utrechtFormLabelRadioFontWeight": "400",
535
- "utrechtFormToggleAccentColor": "hsla(0 0% 48% / 100%)",
535
+ "utrechtFormToggleAccentColor": "hsl(0 0% 48% / 100%)",
536
536
  "utrechtFormToggleBackgroundColor": "hsl(0 0% 100%)",
537
537
  "utrechtFormToggleBorderColor": "transparent",
538
538
  "utrechtFormToggleBorderStyle": "solid",
@@ -1259,7 +1259,7 @@ module.exports = {
1259
1259
  "ofPageFooterBg": "hsl(0 100% 40%)",
1260
1260
  "ofPageFooterFg": "hsl(0 0% 100%)",
1261
1261
  "ofProgressIndicatorBackgroundColor": "hsl(0 0% 15%)",
1262
- "ofProgressIndicatorMobileBoxShadow": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
1262
+ "ofProgressIndicatorMobileBoxShadow": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
1263
1263
  "signalenModalDialogBackgroundColor": "hsl(0 0% 100%)",
1264
1264
  "signalenModalDialogColor": "hsl(0 0% 0%)",
1265
1265
  "signalenProgressBarBorderRadius": "4px"
@@ -282,7 +282,7 @@
282
282
  --utrecht-form-toggle-border-style: solid;
283
283
  --utrecht-form-toggle-border-radius: 10em;
284
284
  --utrecht-form-toggle-border-color: transparent;
285
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
285
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
286
286
  --utrecht-form-label-font-size: 1em;
287
287
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
288
288
  --utrecht-form-control-read-only-border-color: transparent;
@@ -442,7 +442,7 @@
442
442
  --utrecht-accordion-button-border-color: transparent;
443
443
  --utrecht-accordion-button-active-border-color: transparent;
444
444
  --signalen-progress-bar-border-radius: 4px;
445
- --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
445
+ --of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 20%);
446
446
  --nl-number-badge-padding-inline: 1ex;
447
447
  --nl-number-badge-padding-block: 1ex;
448
448
  --nl-data-badge-border-radius: 0;