@utrecht/design-tokens 2.1.0 → 2.2.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.
- package/.stylelintrc.json +5 -1
- package/CHANGELOG.md +14 -0
- package/config.json +8 -0
- package/dist/_mixin-theme.scss +34 -37
- package/dist/_mixin.scss +1009 -0
- package/dist/_variables.scss +34 -37
- package/dist/background-image-icon.css +0 -1
- package/dist/dark/_mixin-theme.scss +34 -37
- package/dist/dark/_mixin.scss +1020 -0
- package/dist/dark/_variables.scss +1017 -0
- package/dist/dark/index.cjs +1020 -0
- package/dist/dark/index.css +34 -37
- package/dist/dark/index.d.ts +1139 -0
- package/dist/dark/index.flat.json +1016 -0
- package/dist/dark/index.json +30694 -0
- package/dist/dark/index.mjs +1018 -0
- package/dist/dark/index.tokens.json +7885 -0
- package/dist/dark/list.json +30694 -0
- package/dist/dark/property.css +705 -0
- package/dist/dark/root.css +538 -541
- package/dist/dark/theme-prince-xml.css +1020 -0
- package/dist/dark/theme.css +1020 -0
- package/dist/dark/tokens.cjs +37567 -0
- package/dist/dark/tokens.d.ts +4842 -0
- package/dist/dark/tokens.json +37563 -0
- package/dist/dark/variables.cjs +1020 -0
- package/dist/dark/variables.css +1020 -0
- package/dist/dark/variables.d.ts +1139 -0
- package/dist/dark/variables.json +1016 -0
- package/dist/dark/variables.less +1017 -0
- package/dist/dark/variables.mjs +1018 -0
- package/dist/index.cjs +29 -32
- package/dist/index.css +149 -82
- package/dist/index.d.ts +18 -25
- package/dist/index.flat.json +591 -593
- package/dist/index.json +4577 -7587
- package/dist/index.mjs +31 -34
- package/dist/index.tokens.json +385 -71
- package/dist/list.json +31811 -0
- package/dist/property.css +770 -0
- package/dist/root.css +529 -532
- package/dist/theme-prince-xml.css +34 -37
- package/dist/theme.css +529 -532
- package/dist/tokens.cjs +6297 -8992
- package/dist/tokens.d.ts +208 -60
- package/dist/tokens.json +38705 -0
- package/dist/variables.cjs +1009 -0
- package/dist/variables.css +1009 -0
- package/dist/variables.d.ts +1128 -0
- package/dist/variables.json +1005 -0
- package/dist/variables.less +34 -37
- package/dist/variables.mjs +1007 -0
- package/package.json +6 -5
- package/src/background-image-icon.scss +0 -1
- package/src/brand/utrecht/typography.tokens.json +7 -9
- package/src/component/of/progress-indicator.tokens.json +1 -1
- package/src/component/utrecht/backdrop.tokens.json +1 -1
- package/src/component/utrecht/blockquote.tokens.json +3 -3
- package/src/component/utrecht/button.tokens.json +1 -3
- package/src/component/utrecht/code-block.tokens.json +2 -2
- package/src/component/utrecht/figure.tokens.json +2 -2
- package/src/component/utrecht/form-fieldset.tokens.json +2 -2
- package/src/component/utrecht/form-toggle.tokens.json +1 -1
- package/src/component/utrecht/link.tokens.json +3 -1
- package/src/component/utrecht/pagination.tokens.json +1 -1
- package/src/component/utrecht/skip-link.tokens.json +4 -2
- package/src/component/utrecht/table.tokens.json +1 -1
- package/src/component/utrecht/toptask-link.tokens.json +1 -1
- package/src/css-property-formatter.mjs +46 -0
- package/src/dark/component/tokens.json +1 -1
- package/src/index.scss +81 -5
- package/style-dictionary-build-dark.mjs +64 -0
- package/style-dictionary-build.mjs +41 -0
- package/style-dictionary-config.mjs +261 -0
- package/dist/figma-tokens.json +0 -40396
- package/src/css-property-formatter.js +0 -35
- package/src/style-dictionary-config-dark.js +0 -56
- package/src/style-dictionary-config.js +0 -63
- package/style-dictionary.config.json +0 -143
package/.stylelintrc.json
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../../.stylelintrc.json",
|
|
3
3
|
"rules": {
|
|
4
|
-
"
|
|
4
|
+
"comment-empty-line-before": null,
|
|
5
|
+
"order/properties-alphabetical-order": null,
|
|
6
|
+
"custom-property-pattern": null,
|
|
7
|
+
"no-duplicate-selectors": null,
|
|
8
|
+
"color-hex-length": "long"
|
|
5
9
|
}
|
|
6
10
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @utrecht/design-tokens
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fb0a096: Add `utrecht-theme--viewport-scale` class name to `dist/index.css` for responsive scales.
|
|
8
|
+
|
|
9
|
+
## 2.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 7fc1efc: Fix `propery.css` output. (The file was empty.)
|
|
14
|
+
- 7fc1efc: No longer include `::backdrop` selectors, those are no longer needed in evergreen browsers.'
|
|
15
|
+
- 3185cc0: Convert all `px` `font-size` design tokens to `rem`.
|
|
16
|
+
|
|
3
17
|
## 2.1.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/config.json
ADDED
package/dist/_mixin-theme.scss
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Do not edit directly
|
|
3
|
-
* Generated on Tue, 01 Oct 2024 19:52:18 GMT
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
3
|
*/
|
|
5
4
|
|
|
6
5
|
@mixin utrecht-theme {
|
|
7
|
-
--of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0
|
|
6
|
+
--of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
|
|
8
7
|
--denhaag-process-steps-sub-step-marker-size: 12px;
|
|
9
8
|
--denhaag-process-steps-step-marker-size: 28px;
|
|
10
9
|
--utrecht-toptask-nav-link-grid-max-inline-size: 240px;
|
|
@@ -33,8 +32,6 @@
|
|
|
33
32
|
--utrecht-typography-scale-lg-font-size: 1.125rem; /* 18px */
|
|
34
33
|
--utrecht-typography-scale-md-font-size: 1rem; /* 16px */
|
|
35
34
|
--utrecht-typography-scale-sm-font-size: 0.875rem; /* 14px */
|
|
36
|
-
--utrecht-typography-scale-xs-font-size: 0.75rem; /* 12px */
|
|
37
|
-
--utrecht-typography-scale-2xs-font-size: 0.5rem; /* 8px */
|
|
38
35
|
--utrecht-typography-sans-serif-font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "Arial", sans-serif;
|
|
39
36
|
--utrecht-icon-scale-4xl: 48px;
|
|
40
37
|
--utrecht-icon-scale-3xl: 36px; /* Formaat voor toptaks iconen */
|
|
@@ -99,7 +96,6 @@
|
|
|
99
96
|
--utrecht-toptask-link-min-inline-size: 15rem;
|
|
100
97
|
--utrecht-toptask-link-min-block-size: 8.25rem;
|
|
101
98
|
--utrecht-toptask-link-line-height: 1.2;
|
|
102
|
-
--utrecht-toptask-link-font-size: 1rem;
|
|
103
99
|
--utrecht-textbox-border-bottom-width: 3px;
|
|
104
100
|
--utrecht-textarea-border-bottom-width: 3px;
|
|
105
101
|
--utrecht-textarea-border-block-end-width: 3px;
|
|
@@ -108,12 +104,11 @@
|
|
|
108
104
|
--utrecht-table-cell-padding-inline-end: 0.4em;
|
|
109
105
|
--utrecht-table-cell-padding-block-start: 0.5em;
|
|
110
106
|
--utrecht-table-cell-padding-block-end: 0.5em;
|
|
111
|
-
--utrecht-table-cell-line-height:
|
|
107
|
+
--utrecht-table-cell-line-height: 1.5rem;
|
|
112
108
|
--utrecht-table-footer-sticky-border-block-start-width: 2px;
|
|
113
109
|
--utrecht-table-header-sticky-border-block-end-width: 2px;
|
|
114
110
|
--utrecht-table-caption-margin-block-end: 1em;
|
|
115
111
|
--utrecht-table-caption-text-align: start;
|
|
116
|
-
--utrecht-table-caption-font-size: 1.125em;
|
|
117
112
|
--utrecht-table-margin-block-end: 0;
|
|
118
113
|
--utrecht-separator-block-size: 8px;
|
|
119
114
|
--utrecht-select-border-block-end-width: 3px;
|
|
@@ -152,7 +147,6 @@
|
|
|
152
147
|
--utrecht-pagination-page-link-background-color: transparent;
|
|
153
148
|
--utrecht-pagination-margin-block-end: 1em;
|
|
154
149
|
--utrecht-pagination-margin-block-start: 0;
|
|
155
|
-
--utrecht-pagination-font-size: 14px;
|
|
156
150
|
--utrecht-page-padding-inline-start: 2em;
|
|
157
151
|
--utrecht-page-padding-block-end: 1em;
|
|
158
152
|
--utrecht-page-padding-inline-end: 2em;
|
|
@@ -178,9 +172,9 @@
|
|
|
178
172
|
--utrecht-number-badge-padding-block: 1ex; /* Default block padding for badge components */
|
|
179
173
|
--utrecht-topnav-link-focus-text-decoration: none;
|
|
180
174
|
--utrecht-topnav-link-focus-border-type: dotted;
|
|
181
|
-
--utrecht-mapcontrolbutton-focus-text-decoration: none;
|
|
182
|
-
--utrecht-mapcontrolbutton-margin-inline-end: 0;
|
|
183
175
|
--utrecht-mapcontrolbutton-margin-inline-start: 0;
|
|
176
|
+
--utrecht-mapcontrolbutton-margin-inline-end: 0;
|
|
177
|
+
--utrecht-mapcontrolbutton-focus-text-decoration: none;
|
|
184
178
|
--utrecht-mapcontrolbutton-border-radius: 2px;
|
|
185
179
|
--utrecht-map-marker-icon-size: 30px;
|
|
186
180
|
--utrecht-map-marker-box-shadow-color: rgb(0 0 0 / 20%);
|
|
@@ -197,7 +191,7 @@
|
|
|
197
191
|
--utrecht-link-icon-size: 1.2em;
|
|
198
192
|
--utrecht-link-hover-text-decoration-thickness: 3px;
|
|
199
193
|
--utrecht-link-hover-text-decoration: underline;
|
|
200
|
-
--utrecht-link-focus-text-decoration: none;
|
|
194
|
+
--utrecht-link-focus-visible-text-decoration: none;
|
|
201
195
|
--utrecht-link-text-underline-offset: 3px;
|
|
202
196
|
--utrecht-link-text-decoration: underline;
|
|
203
197
|
--utrecht-link-social-hover-transform-scale: 1.1;
|
|
@@ -234,10 +228,8 @@
|
|
|
234
228
|
--utrecht-form-toggle-border-radius: 10em;
|
|
235
229
|
--utrecht-form-toggle-border-style: solid;
|
|
236
230
|
--utrecht-form-toggle-border-color: transparent;
|
|
237
|
-
--utrecht-form-toggle-accent-color: hsla(0
|
|
231
|
+
--utrecht-form-toggle-accent-color: hsla(0 0% 48% / 100%);
|
|
238
232
|
--utrecht-form-label-font-size: 1em;
|
|
239
|
-
--utrecht-form-fieldset-legend-line-height: 1.4;
|
|
240
|
-
--utrecht-form-fieldset-legend-font-size: 1rem;
|
|
241
233
|
--utrecht-form-field-invalid-border-inline-start-width: 3px;
|
|
242
234
|
--utrecht-form-control-block-size: 42px;
|
|
243
235
|
--utrecht-form-control-read-only-border-color: transparent;
|
|
@@ -248,8 +240,6 @@
|
|
|
248
240
|
--utrecht-form-control-max-inline-size: 28em;
|
|
249
241
|
--utrecht-form-control-border-radius: 0;
|
|
250
242
|
--utrecht-focus-outline-style: dotted;
|
|
251
|
-
--utrecht-figure-caption-line-height: 20px;
|
|
252
|
-
--utrecht-figure-caption-font-size: 14px;
|
|
253
243
|
--utrecht-figure-caption-color: #727272;
|
|
254
244
|
--utrecht-drawer-max-inline-size: 320px;
|
|
255
245
|
--utrecht-drawer-max-block-size: 240px;
|
|
@@ -312,20 +302,18 @@
|
|
|
312
302
|
--utrecht-space-block-2xs: 4px; /* Extra Small 2 */
|
|
313
303
|
--utrecht-space-block-3xs: 2px; /* Extra Small 3 */
|
|
314
304
|
--utrecht-pointer-target-min-size: 44px;
|
|
315
|
-
--utrecht-action-inert-cursor: default;
|
|
316
|
-
--utrecht-action-activate-cursor: pointer;
|
|
317
305
|
--utrecht-action-submit-cursor: pointer;
|
|
318
306
|
--utrecht-action-navigate-cursor: pointer;
|
|
307
|
+
--utrecht-action-inert-cursor: default;
|
|
319
308
|
--utrecht-action-disabled-cursor: not-allowed;
|
|
320
309
|
--utrecht-action-busy-cursor: wait;
|
|
310
|
+
--utrecht-action-activate-cursor: pointer;
|
|
321
311
|
--utrecht-column-layout-column-width: 350px;
|
|
322
312
|
--utrecht-column-layout-column-rule-width: 2px;
|
|
323
313
|
--utrecht-code-block-padding-inline-end: 20px;
|
|
324
314
|
--utrecht-code-block-padding-inline-start: 20px;
|
|
325
315
|
--utrecht-code-block-padding-block-end: 20px;
|
|
326
316
|
--utrecht-code-block-padding-block-start: 20px;
|
|
327
|
-
--utrecht-code-block-line-height: 24px;
|
|
328
|
-
--utrecht-code-block-font-size: 16px;
|
|
329
317
|
--utrecht-checkbox-margin-block-start: 0;
|
|
330
318
|
--utrecht-checkbox-focus-border-width: 2px;
|
|
331
319
|
--utrecht-checkbox-size: 24px;
|
|
@@ -345,7 +333,7 @@
|
|
|
345
333
|
--utrecht-calendar-table-days-item-day-border-color: transparent;
|
|
346
334
|
--utrecht-calendar-table-days-item-day-border-width: 2px;
|
|
347
335
|
--utrecht-calendar-table-days-item-day-size: 44px;
|
|
348
|
-
--utrecht-calendar-table-weeks-item-line-height:
|
|
336
|
+
--utrecht-calendar-table-weeks-item-line-height: 1.5rem;
|
|
349
337
|
--utrecht-calendar-table-weeks-item-padding-block-end: 10px;
|
|
350
338
|
--utrecht-calendar-table-weeks-item-padding-block-start: 4px;
|
|
351
339
|
--utrecht-calendar-table-weeks-item-width: 44px;
|
|
@@ -374,15 +362,13 @@
|
|
|
374
362
|
--utrecht-breadcrumb-nav-min-block-size: 34px;
|
|
375
363
|
--utrecht-blockquote-margin-block-end: 1.6em;
|
|
376
364
|
--utrecht-blockquote-margin-block-start: 1.6em;
|
|
377
|
-
--utrecht-blockquote-content-font-size: 1.125rem;
|
|
378
|
-
--utrecht-blockquote-attribution-font-size: 0.75rem;
|
|
379
365
|
--utrecht-blockquote-margin-inline-end: 1.6em;
|
|
380
366
|
--utrecht-blockquote-margin-inline-start: 1.6em;
|
|
381
367
|
--utrecht-badge-border-radius: 0; /* Default corner radius for badge components */
|
|
382
368
|
--utrecht-badge-counter-padding-inline: 1ex; /* Default inline padding color for badge components */
|
|
383
369
|
--utrecht-badge-counter-padding-block: 1ex; /* Default block padding for badge components */
|
|
384
370
|
--utrecht-backdrop-reduced-transparency-opacity: 0.98;
|
|
385
|
-
--utrecht-backdrop-fade-in-animation-duration:
|
|
371
|
+
--utrecht-backdrop-fade-in-animation-duration: 400ms;
|
|
386
372
|
--utrecht-backdrop-opacity: 0.8;
|
|
387
373
|
--utrecht-article-max-inline-size: 780px;
|
|
388
374
|
--utrecht-alert-icon-inset-block-start: 6px;
|
|
@@ -443,6 +429,7 @@
|
|
|
443
429
|
--utrecht-toptask-link-padding-inline-end: var(--utrecht-space-inline-xl);
|
|
444
430
|
--utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
|
|
445
431
|
--utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
|
|
432
|
+
--utrecht-toptask-link-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
446
433
|
--utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
|
|
447
434
|
--utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
|
|
448
435
|
--utrecht-table-row-alternate-even-background-color: var(--utrecht-color-grey-95);
|
|
@@ -461,6 +448,7 @@
|
|
|
461
448
|
--utrecht-table-header-border-block-end-width: var(--utrecht-border-width-md);
|
|
462
449
|
--utrecht-table-header-border-block-end-color: var(--utrecht-color-red-40);
|
|
463
450
|
--utrecht-table-header-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
451
|
+
--utrecht-table-caption-font-size: var(--utrecht-typography-scale-lg-font-size);
|
|
464
452
|
--utrecht-table-caption-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
465
453
|
--utrecht-table-margin-block-start: var(--utrecht-space-block-md);
|
|
466
454
|
--utrecht-surface-color: var(--utrecht-color-grey-10);
|
|
@@ -475,7 +463,7 @@
|
|
|
475
463
|
--utrecht-spotlight-section-padding-block-start: var(--utrecht-space-block-md);
|
|
476
464
|
--utrecht-spotlight-section-color: var(--utrecht-color-black);
|
|
477
465
|
--utrecht-spotlight-section-background-color: var(--utrecht-color-grey-90);
|
|
478
|
-
--utrecht-skip-link-focus-text-decoration: var(--utrecht-link-focus-text-decoration);
|
|
466
|
+
--utrecht-skip-link-focus-visible-text-decoration: var(--utrecht-link-focus-visible-text-decoration);
|
|
479
467
|
--utrecht-skip-link-text-decoration: var(--utrecht-link-text-decoration);
|
|
480
468
|
--utrecht-separator-margin-block-start: var(--utrecht-space-block-md);
|
|
481
469
|
--utrecht-separator-margin-block-end: var(--utrecht-space-block-md);
|
|
@@ -544,6 +532,7 @@
|
|
|
544
532
|
--utrecht-pagination-page-link-current-background-color: var(--utrecht-color-blue-35);
|
|
545
533
|
--utrecht-pagination-page-link-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
546
534
|
--utrecht-pagination-page-link-color: var(--utrecht-color-blue-35);
|
|
535
|
+
--utrecht-pagination-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
547
536
|
--utrecht-page-color: var(--utrecht-color-black);
|
|
548
537
|
--utrecht-page-background-color: var(--utrecht-color-white);
|
|
549
538
|
--utrecht-page-footer-padding-block-start: var(--utrecht-space-block-3xl);
|
|
@@ -555,7 +544,7 @@
|
|
|
555
544
|
--utrecht-page-footer-color: var(--utrecht-color-white);
|
|
556
545
|
--utrecht-number-badge-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
557
546
|
--utrecht-number-badge-color: var(--utrecht-color-white); /* Default text color for badge components */
|
|
558
|
-
--utrecht-number-badge-background-color: var(--utrecht-color-red-40);
|
|
547
|
+
--utrecht-number-badge-background-color: var(--utrecht-color-red-40);
|
|
559
548
|
--utrecht-topnav-link-hover-background-color: var(--utrecht-color-black);
|
|
560
549
|
--utrecht-topnav-link-focus-outline-color: var(--utrecht-color-black);
|
|
561
550
|
--utrecht-topnav-link-focus-background-color: var(--utrecht-color-yellow-80);
|
|
@@ -583,6 +572,12 @@
|
|
|
583
572
|
--utrecht-nav-bar-background-color: var(--utrecht-color-white);
|
|
584
573
|
--utrecht-mark-color: var(--utrecht-color-black);
|
|
585
574
|
--utrecht-mark-background-color: var(--utrecht-color-yellow-60);
|
|
575
|
+
--utrecht-mapcontrolbutton-padding-inline-start: var(--utrecht-space-inline-2xs);
|
|
576
|
+
--utrecht-mapcontrolbutton-padding-inline-end: var(--utrecht-space-inline-2xs);
|
|
577
|
+
--utrecht-mapcontrolbutton-padding-block-start: var(--utrecht-space-block-2xs);
|
|
578
|
+
--utrecht-mapcontrolbutton-padding-block-end: var(--utrecht-space-block-2xs);
|
|
579
|
+
--utrecht-mapcontrolbutton-margin-block-start: var(--utrecht-space-row-xs);
|
|
580
|
+
--utrecht-mapcontrolbutton-margin-block-end: var(--utrecht-space-row-xs);
|
|
586
581
|
--utrecht-mapcontrolbutton-label-margin-inline-end: var(--utrecht-space-inline-xs);
|
|
587
582
|
--utrecht-mapcontrolbutton-label-margin-inline-start: var(--utrecht-space-inline-xs);
|
|
588
583
|
--utrecht-mapcontrolbutton-hover-color: var(--utrecht-color-white);
|
|
@@ -591,12 +586,6 @@
|
|
|
591
586
|
--utrecht-mapcontrolbutton-disabled-color: var(--utrecht-color-grey-80);
|
|
592
587
|
--utrecht-mapcontrolbutton-disabled-border-color: var(--utrecht-color-grey-80);
|
|
593
588
|
--utrecht-mapcontrolbutton-disabled-background-color: var(--utrecht-color-grey-90);
|
|
594
|
-
--utrecht-mapcontrolbutton-padding-inline-end: var(--utrecht-space-inline-2xs);
|
|
595
|
-
--utrecht-mapcontrolbutton-padding-inline-start: var(--utrecht-space-inline-2xs);
|
|
596
|
-
--utrecht-mapcontrolbutton-padding-block-end: var(--utrecht-space-block-2xs);
|
|
597
|
-
--utrecht-mapcontrolbutton-padding-block-start: var(--utrecht-space-block-2xs);
|
|
598
|
-
--utrecht-mapcontrolbutton-margin-block-end: var(--utrecht-space-row-xs);
|
|
599
|
-
--utrecht-mapcontrolbutton-margin-block-start: var(--utrecht-space-row-xs);
|
|
600
589
|
--utrecht-mapcontrolbutton-min-inline-size: var(--utrecht-space-block-2xl);
|
|
601
590
|
--utrecht-mapcontrolbutton-min-block-size: var(--utrecht-space-block-2xl);
|
|
602
591
|
--utrecht-mapcontrolbutton-color: var(--utrecht-color-grey-40);
|
|
@@ -612,10 +601,10 @@
|
|
|
612
601
|
--utrecht-listbox-option-group-title-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
613
602
|
--utrecht-listbox-option-group-title-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
614
603
|
--utrecht-listbox-option-group-margin-block-end: var(--utrecht-space-inline-xs);
|
|
615
|
-
--utrecht-listbox-option-hover-background-color: var(--utrecht-color-blue-90);
|
|
616
|
-
--utrecht-listbox-option-hover-color: var(--utrecht-color-black);
|
|
617
604
|
--utrecht-listbox-option-selected-color: var(--utrecht-color-black);
|
|
618
605
|
--utrecht-listbox-option-selected-background-color: var(--utrecht-color-grey-95);
|
|
606
|
+
--utrecht-listbox-option-hover-color: var(--utrecht-color-black);
|
|
607
|
+
--utrecht-listbox-option-hover-background-color: var(--utrecht-color-blue-90);
|
|
619
608
|
--utrecht-listbox-option-active-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
620
609
|
--utrecht-listbox-option-active-color: var(--utrecht-color-black);
|
|
621
610
|
--utrecht-listbox-option-active-background-color: var(--utrecht-color-grey-95);
|
|
@@ -677,7 +666,9 @@
|
|
|
677
666
|
--utrecht-form-fieldset-legend-disabled-color: var(--utrecht-color-grey-40);
|
|
678
667
|
--utrecht-form-fieldset-legend-margin-block-start: var(--utrecht-space-block-xl);
|
|
679
668
|
--utrecht-form-fieldset-legend-margin-block-end: var(--utrecht-space-block-sm);
|
|
669
|
+
--utrecht-form-fieldset-legend-line-height: var(--utrecht-typography-line-height-md);
|
|
680
670
|
--utrecht-form-fieldset-legend-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
671
|
+
--utrecht-form-fieldset-legend-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
681
672
|
--utrecht-form-fieldset-section-color: var(--utrecht-color-black);
|
|
682
673
|
--utrecht-form-fieldset-section-background-color: var(--utrecht-color-grey-80);
|
|
683
674
|
--utrecht-form-fieldset-margin-block-start: var(--utrecht-space-block-2xs);
|
|
@@ -702,6 +693,8 @@
|
|
|
702
693
|
--utrecht-focus-outline-width: var(--utrecht-border-width-md);
|
|
703
694
|
--utrecht-focus-outline-color: var(--utrecht-color-black);
|
|
704
695
|
--utrecht-focus-background-color: var(--utrecht-color-yellow-60);
|
|
696
|
+
--utrecht-figure-caption-line-height: var(--utrecht-typography-line-height-md);
|
|
697
|
+
--utrecht-figure-caption-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
705
698
|
--utrecht-emphasis-strong-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
706
699
|
--utrecht-drawer-padding-inline-end: var(--utrecht-space-inline-md);
|
|
707
700
|
--utrecht-drawer-padding-inline-start: var(--utrecht-space-inline-md);
|
|
@@ -737,6 +730,8 @@
|
|
|
737
730
|
--utrecht-column-layout-column-rule-color: var(--utrecht-color-grey-80);
|
|
738
731
|
--utrecht-code-block-margin-block-end: var(--utrecht-space-block-lg);
|
|
739
732
|
--utrecht-code-block-margin-block-start: var(--utrecht-space-block-lg);
|
|
733
|
+
--utrecht-code-block-line-height: var(--utrecht-typography-line-height-md);
|
|
734
|
+
--utrecht-code-block-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
740
735
|
--utrecht-code-block-color: var(--utrecht-color-black);
|
|
741
736
|
--utrecht-code-block-background-color: var(--utrecht-color-grey-95);
|
|
742
737
|
--utrecht-checkbox-indeterminate-background-color: var(--utrecht-color-blue-40);
|
|
@@ -840,7 +835,6 @@
|
|
|
840
835
|
--utrecht-button-disabled-color: var(--utrecht-color-grey-80);
|
|
841
836
|
--utrecht-button-disabled-border-color: var(--utrecht-color-grey-80);
|
|
842
837
|
--utrecht-button-disabled-background-color: var(--utrecht-color-grey-90);
|
|
843
|
-
--utrecht-button-icon-gap: var(--utrecht-space-text-xs);
|
|
844
838
|
--utrecht-button-active-color: var(--utrecht-color-white);
|
|
845
839
|
--utrecht-button-active-background-color: var(--utrecht-color-grey-40);
|
|
846
840
|
--utrecht-button-padding-inline-end: var(--utrecht-space-inline-md);
|
|
@@ -851,6 +845,7 @@
|
|
|
851
845
|
--utrecht-button-margin-block-start: var(--utrecht-space-row-xs);
|
|
852
846
|
--utrecht-button-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
853
847
|
--utrecht-button-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
848
|
+
--utrecht-button-column-gap: var(--utrecht-space-text-xs);
|
|
854
849
|
--utrecht-button-color: var(--utrecht-color-grey-40);
|
|
855
850
|
--utrecht-button-border-color: var(--utrecht-color-grey-40);
|
|
856
851
|
--utrecht-button-background-color: var(--utrecht-color-white);
|
|
@@ -869,6 +864,8 @@
|
|
|
869
864
|
--utrecht-breadcrumb-nav-item-padding-block-end: var(--utrecht-space-block-xs);
|
|
870
865
|
--utrecht-breadcrumb-nav-item-padding-block-start: var(--utrecht-space-block-xs);
|
|
871
866
|
--utrecht-breadcrumb-nav-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
867
|
+
--utrecht-blockquote-caption-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
868
|
+
--utrecht-blockquote-content-font-size: var(--utrecht-typography-scale-lg-font-size);
|
|
872
869
|
--utrecht-blockquote-content-color: var(--utrecht-color-red-40);
|
|
873
870
|
--utrecht-badge-font-style: var(--utrecht-typography-font-style-normal);
|
|
874
871
|
--utrecht-badge-padding-inline: var(--utrecht-space-inline-sm); /* Default inline padding color for badge components */
|
|
@@ -946,7 +943,7 @@
|
|
|
946
943
|
--utrecht-radio-button-border-color: var(--utrecht-form-control-border-color);
|
|
947
944
|
--utrecht-radio-button-background-color: var(--utrecht-form-control-background-color);
|
|
948
945
|
--utrecht-paragraph-lead-color: var(--utrecht-document-color);
|
|
949
|
-
--utrecht-number-badge-border-radius: var(--utrecht-number-badge-font-size);
|
|
946
|
+
--utrecht-number-badge-border-radius: var(--utrecht-number-badge-font-size);
|
|
950
947
|
--utrecht-listbox-border-width: var(--utrecht-form-control-border-width);
|
|
951
948
|
--utrecht-listbox-border-color: var(--utrecht-form-control-border-color);
|
|
952
949
|
--utrecht-link-visited-color: var(--utrecht-link-color);
|