@utrecht/design-tokens 5.0.3 → 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 (56) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/_mixin-theme.scss +7 -4
  3. package/dist/_mixin.scss +7 -4
  4. package/dist/_variables.scss +7 -4
  5. package/dist/dark/_mixin-theme.scss +7 -4
  6. package/dist/dark/_mixin.scss +7 -4
  7. package/dist/dark/_variables.scss +7 -4
  8. package/dist/dark/index.cjs +7 -4
  9. package/dist/dark/index.css +7 -4
  10. package/dist/dark/index.d.ts +3 -0
  11. package/dist/dark/index.flat.json +7 -4
  12. package/dist/dark/index.json +141 -12
  13. package/dist/dark/index.mjs +7 -4
  14. package/dist/dark/index.tokens.json +14 -9
  15. package/dist/dark/list.json +141 -12
  16. package/dist/dark/list.mjs +141 -12
  17. package/dist/dark/property.css +3 -2
  18. package/dist/dark/root.css +7 -4
  19. package/dist/dark/theme-prince-xml.css +7 -4
  20. package/dist/dark/theme.css +7 -4
  21. package/dist/dark/tokens.cjs +146 -15
  22. package/dist/dark/tokens.d.ts +5 -2
  23. package/dist/dark/tokens.json +146 -15
  24. package/dist/dark/variables.cjs +7 -4
  25. package/dist/dark/variables.css +7 -4
  26. package/dist/dark/variables.d.ts +3 -0
  27. package/dist/dark/variables.json +7 -4
  28. package/dist/dark/variables.less +7 -4
  29. package/dist/dark/variables.mjs +7 -4
  30. package/dist/index.cjs +7 -4
  31. package/dist/index.css +14 -8
  32. package/dist/index.d.ts +3 -0
  33. package/dist/index.flat.json +7 -4
  34. package/dist/index.json +141 -12
  35. package/dist/index.mjs +7 -4
  36. package/dist/index.tokens.json +14 -9
  37. package/dist/list.json +141 -12
  38. package/dist/list.mjs +141 -12
  39. package/dist/property.css +3 -2
  40. package/dist/root.css +7 -4
  41. package/dist/theme-prince-xml.css +7 -4
  42. package/dist/theme.css +7 -4
  43. package/dist/tokens.cjs +146 -15
  44. package/dist/tokens.d.ts +5 -2
  45. package/dist/tokens.json +146 -15
  46. package/dist/variables.cjs +7 -4
  47. package/dist/variables.css +7 -4
  48. package/dist/variables.d.ts +3 -0
  49. package/dist/variables.json +7 -4
  50. package/dist/variables.less +7 -4
  51. package/dist/variables.mjs +7 -4
  52. package/package.json +1 -1
  53. package/src/component/of/progress-indicator.tokens.json +1 -1
  54. package/src/component/utrecht/form-toggle.tokens.json +1 -1
  55. package/src/component/utrecht/root.tokens.json +6 -3
  56. package/src/dark/component/tokens.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
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
+
9
+ ## 5.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - cd0d8e6: Add design tokens for Root component, copied from Body component.
14
+
3
15
  ## 5.0.3
4
16
 
5
17
  ### Patch 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;
@@ -135,6 +135,7 @@
135
135
  --utrecht-search-bar-input-background-position-x: .5em;
136
136
  --utrecht-search-bar-button-hover-scale: 1;
137
137
  --utrecht-search-bar-button-hover-background-color: hsl(359 65% 58%);
138
+ --utrecht-root-line-height: 1.4;
138
139
  --utrecht-root-font-size-adjust: 0.54;
139
140
  --utrecht-rich-text-confidant-margin-block-end: 0;
140
141
  --utrecht-radio-button-border-radius: 0;
@@ -289,7 +290,7 @@
289
290
  --utrecht-form-toggle-border-radius: 10em;
290
291
  --utrecht-form-toggle-border-style: solid;
291
292
  --utrecht-form-toggle-border-color: transparent;
292
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
293
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
293
294
  --utrecht-form-label-font-size: 1em;
294
295
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
295
296
  --utrecht-form-control-block-size: 42px;
@@ -609,8 +610,10 @@
609
610
  --utrecht-search-bar-button-color: var(--utrecht-color-white);
610
611
  --utrecht-search-bar-button-border-color: var(--utrecht-color-red-40);
611
612
  --utrecht-search-bar-button-background-color: var(--utrecht-color-red-40);
612
- --utrecht-root-color: var(--utrecht-color-grey-10);
613
- --utrecht-root-background-color: var(--utrecht-color-grey-95);
613
+ --utrecht-root-font-size: var(--utrecht-typography-scale-md-font-size);
614
+ --utrecht-root-font-family: var(--utrecht-typography-sans-serif-font-family);
615
+ --utrecht-root-color: var(--utrecht-color-black);
616
+ --utrecht-root-background-color: var(--utrecht-color-white);
614
617
  --utrecht-rich-text-best-friend-margin-block-end: var(--utrecht-space-block-xs);
615
618
  --utrecht-rich-text-friend-margin-block-end: var(--utrecht-space-block-md);
616
619
  --utrecht-rich-text-acquaintance-margin-block-end: var(--utrecht-space-block-xl);
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;
@@ -135,6 +135,7 @@
135
135
  --utrecht-search-bar-input-background-position-x: .5em;
136
136
  --utrecht-search-bar-button-hover-scale: 1;
137
137
  --utrecht-search-bar-button-hover-background-color: hsl(359 65% 58%);
138
+ --utrecht-root-line-height: 1.4;
138
139
  --utrecht-root-font-size-adjust: 0.54;
139
140
  --utrecht-rich-text-confidant-margin-block-end: 0;
140
141
  --utrecht-radio-button-border-radius: 0;
@@ -289,7 +290,7 @@
289
290
  --utrecht-form-toggle-border-radius: 10em;
290
291
  --utrecht-form-toggle-border-style: solid;
291
292
  --utrecht-form-toggle-border-color: transparent;
292
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
293
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
293
294
  --utrecht-form-label-font-size: 1em;
294
295
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
295
296
  --utrecht-form-control-block-size: 42px;
@@ -609,8 +610,10 @@
609
610
  --utrecht-search-bar-button-color: var(--utrecht-color-white);
610
611
  --utrecht-search-bar-button-border-color: var(--utrecht-color-red-40);
611
612
  --utrecht-search-bar-button-background-color: var(--utrecht-color-red-40);
612
- --utrecht-root-color: var(--utrecht-color-grey-10);
613
- --utrecht-root-background-color: var(--utrecht-color-grey-95);
613
+ --utrecht-root-font-size: var(--utrecht-typography-scale-md-font-size);
614
+ --utrecht-root-font-family: var(--utrecht-typography-sans-serif-font-family);
615
+ --utrecht-root-color: var(--utrecht-color-black);
616
+ --utrecht-root-background-color: var(--utrecht-color-white);
614
617
  --utrecht-rich-text-best-friend-margin-block-end: var(--utrecht-space-block-xs);
615
618
  --utrecht-rich-text-friend-margin-block-end: var(--utrecht-space-block-md);
616
619
  --utrecht-rich-text-acquaintance-margin-block-end: var(--utrecht-space-block-xl);
@@ -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;
@@ -133,6 +133,7 @@ $utrecht-search-bar-input-background-position-y: 50%;
133
133
  $utrecht-search-bar-input-background-position-x: .5em;
134
134
  $utrecht-search-bar-button-hover-scale: 1;
135
135
  $utrecht-search-bar-button-hover-background-color: hsl(359 65% 58%);
136
+ $utrecht-root-line-height: 1.4;
136
137
  $utrecht-root-font-size-adjust: 0.54;
137
138
  $utrecht-rich-text-confidant-margin-block-end: 0;
138
139
  $utrecht-radio-button-border-radius: 0;
@@ -287,7 +288,7 @@ $utrecht-form-toggle-border-width: 2px;
287
288
  $utrecht-form-toggle-border-radius: 10em;
288
289
  $utrecht-form-toggle-border-style: solid;
289
290
  $utrecht-form-toggle-border-color: transparent;
290
- $utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
291
+ $utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
291
292
  $utrecht-form-label-font-size: 1em;
292
293
  $utrecht-form-field-invalid-border-inline-start-width: 3px;
293
294
  $utrecht-form-control-block-size: 42px;
@@ -607,8 +608,10 @@ $utrecht-search-bar-button-font-size: $utrecht-typography-scale-sm-font-size;
607
608
  $utrecht-search-bar-button-color: $utrecht-color-white;
608
609
  $utrecht-search-bar-button-border-color: $utrecht-color-red-40;
609
610
  $utrecht-search-bar-button-background-color: $utrecht-color-red-40;
610
- $utrecht-root-color: $utrecht-color-grey-10;
611
- $utrecht-root-background-color: $utrecht-color-grey-95;
611
+ $utrecht-root-font-size: $utrecht-typography-scale-md-font-size;
612
+ $utrecht-root-font-family: $utrecht-typography-sans-serif-font-family;
613
+ $utrecht-root-color: $utrecht-color-black;
614
+ $utrecht-root-background-color: $utrecht-color-white;
612
615
  $utrecht-rich-text-best-friend-margin-block-end: $utrecht-space-block-xs;
613
616
  $utrecht-rich-text-friend-margin-block-end: $utrecht-space-block-md;
614
617
  $utrecht-rich-text-acquaintance-margin-block-end: $utrecht-space-block-xl;
@@ -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;
@@ -135,6 +135,7 @@
135
135
  --utrecht-search-bar-input-background-position-x: .5em;
136
136
  --utrecht-search-bar-button-hover-scale: 1;
137
137
  --utrecht-search-bar-button-hover-background-color: hsl(359 65% 58%);
138
+ --utrecht-root-line-height: 1.4;
138
139
  --utrecht-root-font-size-adjust: 0.54;
139
140
  --utrecht-rich-text-confidant-margin-block-end: 0;
140
141
  --utrecht-radio-button-border-radius: 0;
@@ -290,7 +291,7 @@
290
291
  --utrecht-form-toggle-border-radius: 10em;
291
292
  --utrecht-form-toggle-border-style: solid;
292
293
  --utrecht-form-toggle-border-color: transparent;
293
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
294
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
294
295
  --utrecht-form-label-font-size: 1em;
295
296
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
296
297
  --utrecht-form-control-block-size: 42px;
@@ -613,8 +614,10 @@
613
614
  --utrecht-search-bar-button-color: var(--utrecht-color-white);
614
615
  --utrecht-search-bar-button-border-color: var(--utrecht-color-red-40);
615
616
  --utrecht-search-bar-button-background-color: var(--utrecht-color-red-40);
616
- --utrecht-root-color: var(--utrecht-color-grey-10);
617
- --utrecht-root-background-color: var(--utrecht-color-grey-95);
617
+ --utrecht-root-font-size: var(--utrecht-typography-scale-md-font-size);
618
+ --utrecht-root-font-family: var(--utrecht-typography-sans-serif-font-family);
619
+ --utrecht-root-color: var(--utrecht-color-black);
620
+ --utrecht-root-background-color: var(--utrecht-color-white);
618
621
  --utrecht-rich-text-best-friend-margin-block-end: var(--utrecht-space-block-xs);
619
622
  --utrecht-rich-text-friend-margin-block-end: var(--utrecht-space-block-md);
620
623
  --utrecht-rich-text-acquaintance-margin-block-end: var(--utrecht-space-block-xl);
@@ -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;
@@ -135,6 +135,7 @@
135
135
  --utrecht-search-bar-input-background-position-x: .5em;
136
136
  --utrecht-search-bar-button-hover-scale: 1;
137
137
  --utrecht-search-bar-button-hover-background-color: hsl(359 65% 58%);
138
+ --utrecht-root-line-height: 1.4;
138
139
  --utrecht-root-font-size-adjust: 0.54;
139
140
  --utrecht-rich-text-confidant-margin-block-end: 0;
140
141
  --utrecht-radio-button-border-radius: 0;
@@ -290,7 +291,7 @@
290
291
  --utrecht-form-toggle-border-radius: 10em;
291
292
  --utrecht-form-toggle-border-style: solid;
292
293
  --utrecht-form-toggle-border-color: transparent;
293
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
294
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
294
295
  --utrecht-form-label-font-size: 1em;
295
296
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
296
297
  --utrecht-form-control-block-size: 42px;
@@ -613,8 +614,10 @@
613
614
  --utrecht-search-bar-button-color: var(--utrecht-color-white);
614
615
  --utrecht-search-bar-button-border-color: var(--utrecht-color-red-40);
615
616
  --utrecht-search-bar-button-background-color: var(--utrecht-color-red-40);
616
- --utrecht-root-color: var(--utrecht-color-grey-10);
617
- --utrecht-root-background-color: var(--utrecht-color-grey-95);
617
+ --utrecht-root-font-size: var(--utrecht-typography-scale-md-font-size);
618
+ --utrecht-root-font-family: var(--utrecht-typography-sans-serif-font-family);
619
+ --utrecht-root-color: var(--utrecht-color-black);
620
+ --utrecht-root-background-color: var(--utrecht-color-white);
618
621
  --utrecht-rich-text-best-friend-margin-block-end: var(--utrecht-space-block-xs);
619
622
  --utrecht-rich-text-friend-margin-block-end: var(--utrecht-space-block-md);
620
623
  --utrecht-rich-text-acquaintance-margin-block-end: var(--utrecht-space-block-xl);
@@ -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;
@@ -133,6 +133,7 @@ $utrecht-search-bar-input-background-position-y: 50%;
133
133
  $utrecht-search-bar-input-background-position-x: .5em;
134
134
  $utrecht-search-bar-button-hover-scale: 1;
135
135
  $utrecht-search-bar-button-hover-background-color: hsl(359 65% 58%);
136
+ $utrecht-root-line-height: 1.4;
136
137
  $utrecht-root-font-size-adjust: 0.54;
137
138
  $utrecht-rich-text-confidant-margin-block-end: 0;
138
139
  $utrecht-radio-button-border-radius: 0;
@@ -288,7 +289,7 @@ $utrecht-form-toggle-border-width: 2px;
288
289
  $utrecht-form-toggle-border-radius: 10em;
289
290
  $utrecht-form-toggle-border-style: solid;
290
291
  $utrecht-form-toggle-border-color: transparent;
291
- $utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
292
+ $utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
292
293
  $utrecht-form-label-font-size: 1em;
293
294
  $utrecht-form-field-invalid-border-inline-start-width: 3px;
294
295
  $utrecht-form-control-block-size: 42px;
@@ -611,8 +612,10 @@ $utrecht-search-bar-button-font-size: $utrecht-typography-scale-sm-font-size;
611
612
  $utrecht-search-bar-button-color: $utrecht-color-white;
612
613
  $utrecht-search-bar-button-border-color: $utrecht-color-red-40;
613
614
  $utrecht-search-bar-button-background-color: $utrecht-color-red-40;
614
- $utrecht-root-color: $utrecht-color-grey-10;
615
- $utrecht-root-background-color: $utrecht-color-grey-95;
615
+ $utrecht-root-font-size: $utrecht-typography-scale-md-font-size;
616
+ $utrecht-root-font-family: $utrecht-typography-sans-serif-font-family;
617
+ $utrecht-root-color: $utrecht-color-black;
618
+ $utrecht-root-background-color: $utrecht-color-white;
616
619
  $utrecht-rich-text-best-friend-margin-block-end: $utrecht-space-block-xs;
617
620
  $utrecht-rich-text-friend-margin-block-end: $utrecht-space-block-md;
618
621
  $utrecht-rich-text-acquaintance-margin-block-end: $utrecht-space-block-xl;
@@ -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",
@@ -903,9 +903,12 @@ module.exports = {
903
903
  "utrechtRichTextFriendMarginBlockEnd": "16px",
904
904
  "utrechtRichTextBestFriendMarginBlockEnd": "8px",
905
905
  "utrechtRichTextConfidantMarginBlockEnd": 0,
906
- "utrechtRootBackgroundColor": "hsl(0 0% 95%)",
907
- "utrechtRootColor": "hsl(0 0% 10%)",
906
+ "utrechtRootBackgroundColor": "hsl(0 0% 100%)",
907
+ "utrechtRootColor": "hsl(0 0% 0%)",
908
+ "utrechtRootFontFamily": "\"Noto Sans Variable\", \"Arial\", sans-serif",
908
909
  "utrechtRootFontSizeAdjust": "0.54",
910
+ "utrechtRootFontSize": "1rem",
911
+ "utrechtRootLineHeight": "1.4",
909
912
  "utrechtSearchBarButtonBackgroundColor": "hsl(0 100% 40%)",
910
913
  "utrechtSearchBarButtonBorderColor": "hsl(0 100% 40%)",
911
914
  "utrechtSearchBarButtonColor": "hsl(0 0% 100%)",
@@ -1256,7 +1259,7 @@ module.exports = {
1256
1259
  "ofPageFooterBg": "hsl(0 100% 40%)",
1257
1260
  "ofPageFooterFg": "hsl(0 0% 100%)",
1258
1261
  "ofProgressIndicatorBackgroundColor": "hsl(0 0% 15%)",
1259
- "ofProgressIndicatorMobileBoxShadow": "0px 0px 2px 0px rgba(0 0 0 / 20%)",
1262
+ "ofProgressIndicatorMobileBoxShadow": "0px 0px 2px 0px rgb(0 0 0 / 20%)",
1260
1263
  "signalenModalDialogBackgroundColor": "hsl(0 0% 100%)",
1261
1264
  "signalenModalDialogColor": "hsl(0 0% 0%)",
1262
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;
@@ -140,6 +140,7 @@
140
140
  --utrecht-search-bar-input-background-position-x: .5em;
141
141
  --utrecht-search-bar-button-hover-scale: 1;
142
142
  --utrecht-search-bar-button-hover-background-color: hsl(359 65% 58%);
143
+ --utrecht-root-line-height: 1.4;
143
144
  --utrecht-root-font-size-adjust: 0.54;
144
145
  --utrecht-rich-text-confidant-margin-block-end: 0;
145
146
  --utrecht-radio-button-border-radius: 0;
@@ -295,7 +296,7 @@
295
296
  --utrecht-form-toggle-border-radius: 10em;
296
297
  --utrecht-form-toggle-border-style: solid;
297
298
  --utrecht-form-toggle-border-color: transparent;
298
- --utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
299
+ --utrecht-form-toggle-accent-color: hsl(0 0% 48% / 100%);
299
300
  --utrecht-form-label-font-size: 1em;
300
301
  --utrecht-form-field-invalid-border-inline-start-width: 3px;
301
302
  --utrecht-form-control-block-size: 42px;
@@ -618,8 +619,10 @@
618
619
  --utrecht-search-bar-button-color: var(--utrecht-color-white);
619
620
  --utrecht-search-bar-button-border-color: var(--utrecht-color-red-40);
620
621
  --utrecht-search-bar-button-background-color: var(--utrecht-color-red-40);
621
- --utrecht-root-color: var(--utrecht-color-grey-10);
622
- --utrecht-root-background-color: var(--utrecht-color-grey-95);
622
+ --utrecht-root-font-size: var(--utrecht-typography-scale-md-font-size);
623
+ --utrecht-root-font-family: var(--utrecht-typography-sans-serif-font-family);
624
+ --utrecht-root-color: var(--utrecht-color-black);
625
+ --utrecht-root-background-color: var(--utrecht-color-white);
623
626
  --utrecht-rich-text-best-friend-margin-block-end: var(--utrecht-space-block-xs);
624
627
  --utrecht-rich-text-friend-margin-block-end: var(--utrecht-space-block-md);
625
628
  --utrecht-rich-text-acquaintance-margin-block-end: var(--utrecht-space-block-xl);
@@ -971,7 +971,10 @@ export const utrechtRichTextBestFriendMarginBlockEnd : string;
971
971
  export const utrechtRichTextConfidantMarginBlockEnd : string;
972
972
  export const utrechtRootBackgroundColor : string;
973
973
  export const utrechtRootColor : string;
974
+ export const utrechtRootFontFamily : string;
974
975
  export const utrechtRootFontSizeAdjust : string;
976
+ export const utrechtRootFontSize : string;
977
+ export const utrechtRootLineHeight : string;
975
978
  export const utrechtSearchBarButtonBackgroundColor : string;
976
979
  export const utrechtSearchBarButtonBorderColor : string;
977
980
  export const utrechtSearchBarButtonColor : string;
@@ -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",
@@ -1004,9 +1004,12 @@
1004
1004
  "utrechtRichTextConfidantMarginBlockEnd": 0,
1005
1005
  "utrechtRichTextFriendMarginBlockEnd": "16px",
1006
1006
  "utrechtRichTextStrangerMarginBlockEnd": "32px",
1007
- "utrechtRootBackgroundColor": "hsl(0 0% 95%)",
1008
- "utrechtRootColor": "hsl(0 0% 10%)",
1007
+ "utrechtRootBackgroundColor": "hsl(0 0% 100%)",
1008
+ "utrechtRootColor": "hsl(0 0% 0%)",
1009
+ "utrechtRootFontFamily": "\"Noto Sans Variable\", \"Arial\", sans-serif",
1010
+ "utrechtRootFontSize": "1rem",
1009
1011
  "utrechtRootFontSizeAdjust": "0.54",
1012
+ "utrechtRootLineHeight": "1.4",
1010
1013
  "utrechtSearchBarButtonBackgroundColor": "hsl(0 100% 40%)",
1011
1014
  "utrechtSearchBarButtonBorderColor": "hsl(0 100% 40%)",
1012
1015
  "utrechtSearchBarButtonColor": "hsl(0 0% 100%)",
@@ -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": {},
@@ -5439,7 +5439,9 @@
5439
5439
  "syntax": "*",
5440
5440
  "inherits": true
5441
5441
  },
5442
+ "nl.nldesignsystem.deprecated": true,
5442
5443
  "nl.nldesignsystem.figma.supports-token": true,
5444
+ "nl.nldesignsystem.redirect": "utrecht.root.font-family",
5443
5445
  "studio.tokens": {
5444
5446
  "originalType": "fontFamilies"
5445
5447
  }
@@ -5454,7 +5456,9 @@
5454
5456
  "syntax": "*",
5455
5457
  "inherits": true
5456
5458
  },
5459
+ "nl.nldesignsystem.deprecated": true,
5457
5460
  "nl.nldesignsystem.figma.supports-token": true,
5461
+ "nl.nldesignsystem.redirect": "utrecht.root.font-family",
5458
5462
  "studio.tokens": {
5459
5463
  "originalType": "fontFamilies"
5460
5464
  }
@@ -5476,7 +5480,9 @@
5476
5480
  "syntax": "<length>",
5477
5481
  "inherits": true
5478
5482
  },
5483
+ "nl.nldesignsystem.deprecated": true,
5479
5484
  "nl.nldesignsystem.figma.supports-token": true,
5485
+ "nl.nldesignsystem.redirect": "utrecht.root.font-size",
5480
5486
  "studio.tokens": {
5481
5487
  "originalType": "fontSizes"
5482
5488
  }
@@ -5491,7 +5497,9 @@
5491
5497
  "syntax": "<length>",
5492
5498
  "inherits": true
5493
5499
  },
5500
+ "nl.nldesignsystem.deprecated": true,
5494
5501
  "nl.nldesignsystem.figma.supports-token": true,
5502
+ "nl.nldesignsystem.redirect": "utrecht.root.font-size",
5495
5503
  "studio.tokens": {
5496
5504
  "originalType": "fontSizes"
5497
5505
  }
@@ -5516,7 +5524,9 @@
5516
5524
  ],
5517
5525
  "inherits": true
5518
5526
  },
5527
+ "nl.nldesignsystem.deprecated": true,
5519
5528
  "nl.nldesignsystem.figma.supports-token": true,
5529
+ "nl.nldesignsystem.redirect": "utrecht.root.font-family",
5520
5530
  "studio.tokens": {
5521
5531
  "originalType": "lineHeights"
5522
5532
  }
@@ -5534,7 +5544,9 @@
5534
5544
  ],
5535
5545
  "inherits": true
5536
5546
  },
5547
+ "nl.nldesignsystem.deprecated": true,
5537
5548
  "nl.nldesignsystem.figma.supports-token": true,
5549
+ "nl.nldesignsystem.redirect": "utrecht.root.font-family",
5538
5550
  "studio.tokens": {
5539
5551
  "originalType": "lineHeights"
5540
5552
  }
@@ -17968,11 +17980,11 @@
17968
17980
  ]
17969
17981
  },
17970
17982
  {
17971
- "value": "hsla(0 0% 48% / 100%)",
17983
+ "value": "hsl(0 0% 48% / 100%)",
17972
17984
  "filePath": "src/dark/component/tokens.json",
17973
17985
  "isSource": true,
17974
17986
  "original": {
17975
- "value": "hsla(0 0% 48% / 100%)"
17987
+ "value": "hsl(0 0% 48% / 100%)"
17976
17988
  },
17977
17989
  "name": "utrechtFormToggleAccentColor",
17978
17990
  "attributes": {},
@@ -26277,7 +26289,7 @@
26277
26289
  {
26278
26290
  "$extensions": {
26279
26291
  "nl.nldesignsystem.css.property": {
26280
- "syntax": "<url> | *",
26292
+ "syntax": "*",
26281
26293
  "inherits": true
26282
26294
  },
26283
26295
  "nl.nldesignsystem.figma.supports-token": false
@@ -26289,7 +26301,7 @@
26289
26301
  "original": {
26290
26302
  "$extensions": {
26291
26303
  "nl.nldesignsystem.css.property": {
26292
- "syntax": "<url> | *",
26304
+ "syntax": "*",
26293
26305
  "inherits": true
26294
26306
  },
26295
26307
  "nl.nldesignsystem.figma.supports-token": false
@@ -29890,7 +29902,7 @@
29890
29902
  "nl.nldesignsystem.figma.supports-token": false
29891
29903
  },
29892
29904
  "type": "color",
29893
- "value": "hsl(0 0% 95%)",
29905
+ "value": "hsl(0 0% 100%)",
29894
29906
  "filePath": "src/component/utrecht/root.tokens.json",
29895
29907
  "isSource": true,
29896
29908
  "original": {
@@ -29902,7 +29914,7 @@
29902
29914
  "nl.nldesignsystem.figma.supports-token": false
29903
29915
  },
29904
29916
  "type": "color",
29905
- "value": "{utrecht.color.grey.95}"
29917
+ "value": "{utrecht.color.white}"
29906
29918
  },
29907
29919
  "name": "utrechtRootBackgroundColor",
29908
29920
  "attributes": {},
@@ -29921,7 +29933,7 @@
29921
29933
  "nl.nldesignsystem.figma.supports-token": false
29922
29934
  },
29923
29935
  "type": "color",
29924
- "value": "hsl(0 0% 10%)",
29936
+ "value": "hsl(0 0% 0%)",
29925
29937
  "filePath": "src/component/utrecht/root.tokens.json",
29926
29938
  "isSource": true,
29927
29939
  "original": {
@@ -29933,7 +29945,7 @@
29933
29945
  "nl.nldesignsystem.figma.supports-token": false
29934
29946
  },
29935
29947
  "type": "color",
29936
- "value": "{utrecht.color.grey.10}"
29948
+ "value": "{utrecht.color.black}"
29937
29949
  },
29938
29950
  "name": "utrechtRootColor",
29939
29951
  "attributes": {},
@@ -29943,6 +29955,80 @@
29943
29955
  "color"
29944
29956
  ]
29945
29957
  },
29958
+ {
29959
+ "$extensions": {
29960
+ "nl.nldesignsystem.css.property": {
29961
+ "syntax": "*",
29962
+ "inherits": true
29963
+ },
29964
+ "nl.nldesignsystem.figma.supports-token": false,
29965
+ "studio.tokens": {
29966
+ "originalType": "fontFamilies"
29967
+ }
29968
+ },
29969
+ "type": "fontFamily",
29970
+ "value": "\"Noto Sans Variable\", \"Arial\", sans-serif",
29971
+ "filePath": "src/component/utrecht/root.tokens.json",
29972
+ "isSource": true,
29973
+ "original": {
29974
+ "$extensions": {
29975
+ "nl.nldesignsystem.css.property": {
29976
+ "syntax": "*",
29977
+ "inherits": true
29978
+ },
29979
+ "nl.nldesignsystem.figma.supports-token": false,
29980
+ "studio.tokens": {
29981
+ "originalType": "fontFamilies"
29982
+ }
29983
+ },
29984
+ "type": "fontFamily",
29985
+ "value": "{utrecht.typography.sans-serif.font-family}"
29986
+ },
29987
+ "name": "utrechtRootFontFamily",
29988
+ "attributes": {},
29989
+ "path": [
29990
+ "utrecht",
29991
+ "root",
29992
+ "font-family"
29993
+ ]
29994
+ },
29995
+ {
29996
+ "$extensions": {
29997
+ "nl.nldesignsystem.css.property": {
29998
+ "syntax": "<length>",
29999
+ "inherits": true
30000
+ },
30001
+ "nl.nldesignsystem.figma.supports-token": false,
30002
+ "studio.tokens": {
30003
+ "originalType": "fontSizes"
30004
+ }
30005
+ },
30006
+ "type": "fontSize",
30007
+ "value": "1rem",
30008
+ "filePath": "src/component/utrecht/root.tokens.json",
30009
+ "isSource": true,
30010
+ "original": {
30011
+ "$extensions": {
30012
+ "nl.nldesignsystem.css.property": {
30013
+ "syntax": "<length>",
30014
+ "inherits": true
30015
+ },
30016
+ "nl.nldesignsystem.figma.supports-token": false,
30017
+ "studio.tokens": {
30018
+ "originalType": "fontSizes"
30019
+ }
30020
+ },
30021
+ "type": "fontSize",
30022
+ "value": "{utrecht.typography.scale.md.font-size}"
30023
+ },
30024
+ "name": "utrechtRootFontSize",
30025
+ "attributes": {},
30026
+ "path": [
30027
+ "utrecht",
30028
+ "root",
30029
+ "font-size"
30030
+ ]
30031
+ },
29946
30032
  {
29947
30033
  "$extensions": {
29948
30034
  "nl.nldesignsystem.css.property": {
@@ -29974,6 +30060,49 @@
29974
30060
  "font-size-adjust"
29975
30061
  ]
29976
30062
  },
30063
+ {
30064
+ "$extensions": {
30065
+ "nl.nldesignsystem.css.property": {
30066
+ "syntax": [
30067
+ "<length>",
30068
+ "<number>"
30069
+ ],
30070
+ "inherits": true
30071
+ },
30072
+ "nl.nldesignsystem.figma.supports-token": false,
30073
+ "studio.tokens": {
30074
+ "originalType": "lineHeights"
30075
+ }
30076
+ },
30077
+ "type": "lineHeight",
30078
+ "value": "1.4",
30079
+ "filePath": "src/component/utrecht/root.tokens.json",
30080
+ "isSource": true,
30081
+ "original": {
30082
+ "$extensions": {
30083
+ "nl.nldesignsystem.css.property": {
30084
+ "syntax": [
30085
+ "<length>",
30086
+ "<number>"
30087
+ ],
30088
+ "inherits": true
30089
+ },
30090
+ "nl.nldesignsystem.figma.supports-token": false,
30091
+ "studio.tokens": {
30092
+ "originalType": "lineHeights"
30093
+ }
30094
+ },
30095
+ "type": "lineHeight",
30096
+ "value": "1.4"
30097
+ },
30098
+ "name": "utrechtRootLineHeight",
30099
+ "attributes": {},
30100
+ "path": [
30101
+ "utrecht",
30102
+ "root",
30103
+ "line-height"
30104
+ ]
30105
+ },
29977
30106
  {
29978
30107
  "$extensions": {
29979
30108
  "nl.nldesignsystem.css.property": {
@@ -30495,7 +30624,7 @@
30495
30624
  {
30496
30625
  "$extensions": {
30497
30626
  "nl.nldesignsystem.css.property": {
30498
- "syntax": "<>",
30627
+ "syntax": "<color>",
30499
30628
  "inherits": true
30500
30629
  },
30501
30630
  "nl.nldesignsystem.figma.supports-token": false
@@ -30507,7 +30636,7 @@
30507
30636
  "original": {
30508
30637
  "$extensions": {
30509
30638
  "nl.nldesignsystem.css.property": {
30510
- "syntax": "<>",
30639
+ "syntax": "<color>",
30511
30640
  "inherits": true
30512
30641
  },
30513
30642
  "nl.nldesignsystem.figma.supports-token": false