@utrecht/design-tokens 2.3.0 → 2.5.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/CHANGELOG.md +21 -0
- package/dist/_mixin-theme.scss +165 -76
- package/dist/_mixin.scss +165 -76
- package/dist/_variables.scss +165 -76
- package/dist/dark/_mixin-theme.scss +165 -76
- package/dist/dark/_mixin.scss +165 -76
- package/dist/dark/_variables.scss +165 -76
- package/dist/dark/index.cjs +104 -15
- package/dist/dark/index.css +165 -76
- package/dist/dark/index.d.ts +97 -8
- package/dist/dark/index.flat.json +102 -13
- package/dist/dark/index.json +11111 -9439
- package/dist/dark/index.mjs +103 -14
- package/dist/dark/index.tokens.json +369 -248
- package/dist/dark/list.json +11111 -9439
- package/dist/dark/list.mjs +11111 -9439
- package/dist/dark/property.css +19 -7
- package/dist/dark/root.css +164 -75
- package/dist/dark/theme-prince-xml.css +165 -76
- package/dist/dark/theme.css +164 -75
- package/dist/dark/tokens.cjs +2051 -347
- package/dist/dark/tokens.d.ts +255 -126
- package/dist/dark/tokens.json +2051 -347
- package/dist/dark/variables.cjs +104 -15
- package/dist/dark/variables.css +164 -75
- package/dist/dark/variables.d.ts +97 -8
- package/dist/dark/variables.json +102 -13
- package/dist/dark/variables.less +165 -76
- package/dist/dark/variables.mjs +103 -14
- package/dist/index.cjs +104 -15
- package/dist/index.css +330 -152
- package/dist/index.d.ts +97 -8
- package/dist/index.flat.json +102 -13
- package/dist/index.json +2175 -503
- package/dist/index.mjs +103 -14
- package/dist/index.tokens.json +369 -248
- package/dist/list.json +2175 -503
- package/dist/list.mjs +2175 -503
- package/dist/property.css +19 -7
- package/dist/root.css +164 -75
- package/dist/theme-prince-xml.css +165 -76
- package/dist/theme.css +164 -75
- package/dist/tokens.cjs +2051 -347
- package/dist/tokens.d.ts +255 -126
- package/dist/tokens.json +2051 -347
- package/dist/variables.cjs +104 -15
- package/dist/variables.css +164 -75
- package/dist/variables.d.ts +97 -8
- package/dist/variables.json +102 -13
- package/dist/variables.less +165 -76
- package/dist/variables.mjs +103 -14
- package/package.json +1 -1
- package/src/component/nl/code-block.tokens.json +13 -0
- package/src/component/nl/code.tokens.json +11 -0
- package/src/component/nl/data-badge.tokens.json +22 -0
- package/src/component/nl/heading.tokens.json +48 -0
- package/src/component/nl/mark.tokens.json +8 -0
- package/src/component/nl/number-badge.tokens.json +23 -0
- package/src/component/nl/paragraph.tokens.json +20 -0
- package/src/component/nl/skip-link.tokens.json +16 -0
- package/src/component/signalen/signalen.tokens.json +17 -0
- package/src/component/utrecht/badge.tokens.json +5 -5
- package/src/component/utrecht/body.tokens.json +11 -0
- package/src/component/utrecht/code-block.tokens.json +9 -9
- package/src/component/utrecht/heading-1.tokens.json +4 -4
- package/src/component/utrecht/heading-2.tokens.json +4 -4
- package/src/component/utrecht/heading-3.tokens.json +4 -4
- package/src/component/utrecht/heading-4.tokens.json +4 -4
- package/src/component/utrecht/heading-5.tokens.json +4 -4
- package/src/component/utrecht/heading-6.tokens.json +4 -4
- package/src/component/utrecht/link-list.tokens.json +3 -0
- package/src/component/utrecht/mark.tokens.json +2 -2
- package/src/component/utrecht/nav-bar.tokens.json +0 -2
- package/src/component/utrecht/number-badge.tokens.json +6 -6
- package/src/component/utrecht/page-body.tokens.json +19 -0
- package/src/component/utrecht/page-footer.tokens.json +6 -4
- package/src/component/utrecht/page-header.tokens.json +14 -4
- package/src/component/utrecht/page.tokens.json +2 -2
- package/src/component/utrecht/paragraph.tokens.json +8 -8
- package/src/component/utrecht/root.tokens.json +8 -0
- package/src/component/utrecht/skip-link.tokens.json +10 -10
- package/project.json +0 -25
- package/src/component/utrecht/badge-data.tokens.json +0 -8
package/dist/dark/index.css
CHANGED
|
@@ -8,7 +8,14 @@
|
|
|
8
8
|
*/
|
|
9
9
|
.utrecht-theme--color-scheme-dark,
|
|
10
10
|
.utrecht-theme--color-scheme-dark ::backdrop {
|
|
11
|
+
--signalen-progress-bar-border-radius: 4px;
|
|
11
12
|
--of-progress-indicator-mobile-box-shadow: 0px 0px 2px 0px rgba(0 0 0 / 20%);
|
|
13
|
+
--nl-number-badge-padding-inline: 1ex;
|
|
14
|
+
--nl-number-badge-padding-block: 1ex;
|
|
15
|
+
--nl-data-badge-border-radius: 0;
|
|
16
|
+
--nl-code-block-padding-inline: 20px;
|
|
17
|
+
--nl-code-block-padding-block: 20px;
|
|
18
|
+
--nl-code-block-font-family: "Monaco";
|
|
12
19
|
--denhaag-process-steps-sub-step-marker-size: 12px;
|
|
13
20
|
--denhaag-process-steps-step-marker-size: 28px;
|
|
14
21
|
--utrecht-toptask-nav-link-grid-max-inline-size: 240px;
|
|
@@ -152,19 +159,35 @@
|
|
|
152
159
|
--utrecht-pagination-page-link-background-color: transparent;
|
|
153
160
|
--utrecht-pagination-margin-block-end: 1em;
|
|
154
161
|
--utrecht-pagination-margin-block-start: 0;
|
|
155
|
-
--utrecht-page-padding-inline-start:
|
|
162
|
+
--utrecht-page-padding-inline-start: 0;
|
|
156
163
|
--utrecht-page-padding-block-end: 1em;
|
|
157
|
-
--utrecht-page-padding-inline-end:
|
|
164
|
+
--utrecht-page-padding-inline-end: 0;
|
|
158
165
|
--utrecht-page-padding-block-start: 1.8em;
|
|
159
166
|
--utrecht-page-max-inline-size: 1184px;
|
|
160
167
|
--utrecht-page-margin-inline-end: 2em;
|
|
161
168
|
--utrecht-page-margin-inline-start: 2em;
|
|
162
|
-
--utrecht-page-header-padding-inline
|
|
163
|
-
--utrecht-page-header-
|
|
164
|
-
--utrecht-page-header-padding-
|
|
165
|
-
--utrecht-page-header-padding-
|
|
169
|
+
--utrecht-page-header-content-padding-inline: 2em;
|
|
170
|
+
--utrecht-page-header-content-max-inline-size: 1184px;
|
|
171
|
+
--utrecht-page-header-content-padding-inline-end: 2.4em;
|
|
172
|
+
--utrecht-page-header-content-padding-inline-start: 2em;
|
|
173
|
+
--utrecht-page-header-content-padding-block-end: 1em;
|
|
174
|
+
--utrecht-page-header-content-padding-block-start: 1.8em;
|
|
175
|
+
--utrecht-page-header-padding-inline-end: 0;
|
|
176
|
+
--utrecht-page-header-padding-inline-start: 0;
|
|
177
|
+
--utrecht-page-header-padding-block-end: 0;
|
|
178
|
+
--utrecht-page-header-padding-block-start: 0;
|
|
179
|
+
--utrecht-page-footer-content-max-inline-size: 1184px;
|
|
166
180
|
--utrecht-page-content-padding-block-end: 2em;
|
|
167
181
|
--utrecht-page-content-padding-block-start: 2em;
|
|
182
|
+
--utrecht-page-body-padding-block-start: 0;
|
|
183
|
+
--utrecht-page-body-padding-block-end: 0;
|
|
184
|
+
--utrecht-page-body-padding-inline-start: 0;
|
|
185
|
+
--utrecht-page-body-padding-inline-end: 0;
|
|
186
|
+
--utrecht-page-body-content-padding-inline-end: 2.4em;
|
|
187
|
+
--utrecht-page-body-content-max-inline-size: 1184px;
|
|
188
|
+
--utrecht-page-body-content-padding-inline-start: 2em;
|
|
189
|
+
--utrecht-page-body-content-padding-block-end: 1em;
|
|
190
|
+
--utrecht-page-body-content-padding-block-start: 0;
|
|
168
191
|
--utrecht-ordered-list-item-padding-inline-start: 0;
|
|
169
192
|
--utrecht-ordered-list-item-margin-block-end: 0.25em;
|
|
170
193
|
--utrecht-ordered-list-item-margin-block-start: 0.25em;
|
|
@@ -173,8 +196,6 @@
|
|
|
173
196
|
--utrecht-ordered-list-margin-block-start: 0;
|
|
174
197
|
--utrecht-number-data-negative-color: red;
|
|
175
198
|
--utrecht-number-data-positive-color: green;
|
|
176
|
-
--utrecht-number-badge-padding-inline: 1ex; /* Default inline padding color for badge components */
|
|
177
|
-
--utrecht-number-badge-padding-block: 1ex; /* Default block padding for badge components */
|
|
178
199
|
--utrecht-topnav-link-focus-text-decoration: none;
|
|
179
200
|
--utrecht-topnav-link-focus-border-type: dotted;
|
|
180
201
|
--utrecht-mapcontrolbutton-margin-inline-start: 0;
|
|
@@ -203,6 +224,7 @@
|
|
|
203
224
|
--utrecht-link-social-icon-size: 26px;
|
|
204
225
|
--utrecht-link-social-size: 40px;
|
|
205
226
|
--utrecht-link-social-border-width: 2px;
|
|
227
|
+
--utrecht-link-list-icon-inset-block-start: 0.15em;
|
|
206
228
|
--utrecht-link-list-icon-size: 14px;
|
|
207
229
|
--utrecht-link-list-link-text-decoration: none;
|
|
208
230
|
--utrecht-icon-baseline-inset-block-start: 0.125em;
|
|
@@ -316,10 +338,6 @@
|
|
|
316
338
|
--utrecht-action-activate-cursor: pointer;
|
|
317
339
|
--utrecht-column-layout-column-width: 350px;
|
|
318
340
|
--utrecht-column-layout-column-rule-width: 2px;
|
|
319
|
-
--utrecht-code-block-padding-inline-end: 20px;
|
|
320
|
-
--utrecht-code-block-padding-inline-start: 20px;
|
|
321
|
-
--utrecht-code-block-padding-block-end: 20px;
|
|
322
|
-
--utrecht-code-block-padding-block-start: 20px;
|
|
323
341
|
--utrecht-checkbox-margin-block-start: 0;
|
|
324
342
|
--utrecht-checkbox-focus-border-width: 2px;
|
|
325
343
|
--utrecht-checkbox-size: 24px;
|
|
@@ -366,11 +384,11 @@
|
|
|
366
384
|
--utrecht-breadcrumb-nav-link-hover-text-decoration: underline;
|
|
367
385
|
--utrecht-breadcrumb-nav-link-focus-text-decoration: underline;
|
|
368
386
|
--utrecht-breadcrumb-nav-min-block-size: 34px;
|
|
387
|
+
--utrecht-body-line-height: 1.4;
|
|
369
388
|
--utrecht-blockquote-margin-block-end: 1.6em;
|
|
370
389
|
--utrecht-blockquote-margin-block-start: 1.6em;
|
|
371
390
|
--utrecht-blockquote-margin-inline-end: 1.6em;
|
|
372
391
|
--utrecht-blockquote-margin-inline-start: 1.6em;
|
|
373
|
-
--utrecht-badge-border-radius: 0; /* Default corner radius for badge components */
|
|
374
392
|
--utrecht-badge-counter-padding-inline: 1ex; /* Default inline padding color for badge components */
|
|
375
393
|
--utrecht-badge-counter-padding-block: 1ex; /* Default block padding for badge components */
|
|
376
394
|
--utrecht-backdrop-reduced-transparency-opacity: 0.98;
|
|
@@ -388,6 +406,53 @@
|
|
|
388
406
|
--utrecht-accordion-button-icon-size: 24px;
|
|
389
407
|
--utrecht-accordion-button-hover-background-color: inherit;
|
|
390
408
|
--utrecht-accordion-button-border-width: 0;
|
|
409
|
+
--nl-skip-link-focus-visible-text-decoration: var(--utrecht-link-focus-visible-text-decoration);
|
|
410
|
+
--nl-skip-link-text-decoration: var(--utrecht-link-text-decoration);
|
|
411
|
+
--nl-paragraph-small-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
412
|
+
--nl-paragraph-lead-line-height: var(--utrecht-typography-line-height-md);
|
|
413
|
+
--nl-paragraph-lead-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
414
|
+
--nl-paragraph-lead-font-size: var(--utrecht-typography-scale-xl-font-size);
|
|
415
|
+
--nl-paragraph-line-height: var(--utrecht-typography-line-height-md);
|
|
416
|
+
--nl-paragraph-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
417
|
+
--nl-paragraph-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
418
|
+
--nl-paragraph-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
419
|
+
--nl-number-badge-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
420
|
+
--nl-number-badge-color: var(--utrecht-color-white);
|
|
421
|
+
--nl-number-badge-background-color: var(--utrecht-color-red-40);
|
|
422
|
+
--nl-mark-color: var(--utrecht-color-black);
|
|
423
|
+
--nl-mark-background-color: var(--utrecht-color-yellow-60);
|
|
424
|
+
--nl-heading-level-6-line-height: var(--utrecht-typography-line-height-md);
|
|
425
|
+
--nl-heading-level-6-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
426
|
+
--nl-heading-level-6-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
427
|
+
--nl-heading-level-6-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
428
|
+
--nl-heading-level-5-line-height: var(--utrecht-typography-line-height-md);
|
|
429
|
+
--nl-heading-level-5-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
430
|
+
--nl-heading-level-5-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
431
|
+
--nl-heading-level-5-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
432
|
+
--nl-heading-level-4-line-height: var(--utrecht-typography-line-height-md);
|
|
433
|
+
--nl-heading-level-4-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
434
|
+
--nl-heading-level-4-font-size: var(--utrecht-typography-scale-lg-font-size);
|
|
435
|
+
--nl-heading-level-4-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
436
|
+
--nl-heading-level-3-line-height: var(--utrecht-typography-line-height-sm);
|
|
437
|
+
--nl-heading-level-3-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
438
|
+
--nl-heading-level-3-font-size: var(--utrecht-typography-scale-xl-font-size);
|
|
439
|
+
--nl-heading-level-3-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
440
|
+
--nl-heading-level-2-line-height: var(--utrecht-typography-line-height-sm);
|
|
441
|
+
--nl-heading-level-2-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
442
|
+
--nl-heading-level-2-font-size: var(--utrecht-typography-scale-xl-font-size);
|
|
443
|
+
--nl-heading-level-2-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
444
|
+
--nl-heading-level-1-line-height: var(--utrecht-typography-line-height-sm);
|
|
445
|
+
--nl-heading-level-1-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
446
|
+
--nl-heading-level-1-font-size: var(--utrecht-typography-scale-4xl-font-size);
|
|
447
|
+
--nl-heading-level-1-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
448
|
+
--nl-data-badge-padding-inline: var(--utrecht-space-inline-sm);
|
|
449
|
+
--nl-data-badge-padding-block: var(--utrecht-space-block-xs);
|
|
450
|
+
--nl-data-badge-color: var(--utrecht-color-white);
|
|
451
|
+
--nl-data-badge-background-color: var(--utrecht-color-grey-30);
|
|
452
|
+
--nl-code-block-line-height: var(--utrecht-typography-line-height-md);
|
|
453
|
+
--nl-code-block-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
454
|
+
--nl-code-block-color: var(--utrecht-color-black);
|
|
455
|
+
--nl-code-block-background-color: var(--utrecht-color-grey-95);
|
|
391
456
|
--denhaag-process-steps-sub-step-heading-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
392
457
|
--denhaag-process-steps-sub-step-heading-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
393
458
|
--denhaag-process-steps-sub-step-heading-color: var(--utrecht-color-grey-15);
|
|
@@ -473,8 +538,6 @@
|
|
|
473
538
|
--utrecht-spotlight-section-padding-block-start: var(--utrecht-space-block-md);
|
|
474
539
|
--utrecht-spotlight-section-color: var(--utrecht-color-grey-15);
|
|
475
540
|
--utrecht-spotlight-section-background-color: var(--utrecht-color-grey-20);
|
|
476
|
-
--utrecht-skip-link-focus-visible-text-decoration: var(--utrecht-link-focus-visible-text-decoration);
|
|
477
|
-
--utrecht-skip-link-text-decoration: var(--utrecht-link-text-decoration);
|
|
478
541
|
--utrecht-separator-margin-block-start: var(--utrecht-space-block-md);
|
|
479
542
|
--utrecht-separator-margin-block-end: var(--utrecht-space-block-md);
|
|
480
543
|
--utrecht-separator-color: var(--utrecht-color-grey-90);
|
|
@@ -498,11 +561,12 @@
|
|
|
498
561
|
--utrecht-search-bar-button-color: var(--utrecht-color-white);
|
|
499
562
|
--utrecht-search-bar-button-border-color: var(--utrecht-color-red-40);
|
|
500
563
|
--utrecht-search-bar-button-background-color: var(--utrecht-color-red-40);
|
|
564
|
+
--utrecht-root-color: var(--utrecht-color-grey-10);
|
|
565
|
+
--utrecht-root-background-color: var(--utrecht-color-grey-95);
|
|
501
566
|
--utrecht-rich-text-best-friend-margin-block-end: var(--utrecht-space-block-2xs);
|
|
502
567
|
--utrecht-rich-text-friend-margin-block-end: var(--utrecht-space-block-xs);
|
|
503
568
|
--utrecht-rich-text-acquaintance-margin-block-end: var(--utrecht-space-block-md);
|
|
504
569
|
--utrecht-rich-text-stranger-margin-block-end: var(--utrecht-space-block-2xl);
|
|
505
|
-
--utrecht-radio-button-color: var(--utrecht-color-white);
|
|
506
570
|
--utrecht-radio-button-disabled-color: var(--utrecht-color-white);
|
|
507
571
|
--utrecht-radio-button-disabled-border-color: var(--utrecht-color-grey-80);
|
|
508
572
|
--utrecht-radio-button-disabled-background-color: var(--utrecht-color-grey-80);
|
|
@@ -516,17 +580,11 @@
|
|
|
516
580
|
--utrecht-radio-button-checked-border-color: var(--utrecht-color-blue-40);
|
|
517
581
|
--utrecht-radio-button-checked-background-color: var(--utrecht-color-blue-40);
|
|
518
582
|
--utrecht-radio-button-active-background-color: var(--utrecht-color-blue-80);
|
|
583
|
+
--utrecht-radio-button-color: var(--utrecht-color-white);
|
|
519
584
|
--utrecht-pre-heading-margin-block-start: var(--utrecht-space-row-2xl);
|
|
520
585
|
--utrecht-pre-heading-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
521
586
|
--utrecht-paragraph-small-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
522
|
-
--utrecht-paragraph-lead-line-height: var(--utrecht-typography-line-height-md);
|
|
523
|
-
--utrecht-paragraph-lead-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
524
|
-
--utrecht-paragraph-lead-font-size: var(--utrecht-typography-scale-xl-font-size);
|
|
525
587
|
--utrecht-paragraph-margin-block-start: var(--utrecht-space-block-md);
|
|
526
|
-
--utrecht-paragraph-line-height: var(--utrecht-typography-line-height-md);
|
|
527
|
-
--utrecht-paragraph-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
528
|
-
--utrecht-paragraph-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
529
|
-
--utrecht-paragraph-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
530
588
|
--utrecht-pagination-relative-link-hover-color: var(--utrecht-color-white);
|
|
531
589
|
--utrecht-pagination-relative-link-hover-border-color: var(--utrecht-color-blue-35);
|
|
532
590
|
--utrecht-pagination-relative-link-hover-background-color: var(--utrecht-color-blue-35);
|
|
@@ -545,16 +603,18 @@
|
|
|
545
603
|
--utrecht-pagination-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
546
604
|
--utrecht-page-color: var(--utrecht-color-grey-95);
|
|
547
605
|
--utrecht-page-background-color: var(--utrecht-color-grey-15);
|
|
548
|
-
--utrecht-page-
|
|
549
|
-
--utrecht-page-
|
|
550
|
-
--utrecht-page-footer-padding-inline
|
|
551
|
-
--utrecht-page-footer-padding-
|
|
606
|
+
--utrecht-page-header-content-color: var(--utrecht-color-black);
|
|
607
|
+
--utrecht-page-header-content-background-color: var(--utrecht-color-white);
|
|
608
|
+
--utrecht-page-footer-content-padding-inline: var(--utrecht-space-inline-2xl);
|
|
609
|
+
--utrecht-page-footer-content-padding-block-start: var(--utrecht-space-block-3xl);
|
|
610
|
+
--utrecht-page-footer-content-padding-block-end: var(--utrecht-space-block-3xl);
|
|
552
611
|
--utrecht-page-footer-background-image: linear-gradient(45deg, var(--utrecht-color-red-40), var(--utrecht-color-red-40) 50%, #d63433 50%);
|
|
553
612
|
--utrecht-page-footer-background-color: var(--utrecht-color-red-40);
|
|
554
613
|
--utrecht-page-footer-color: var(--utrecht-color-white);
|
|
555
|
-
--utrecht-
|
|
556
|
-
--utrecht-
|
|
557
|
-
--utrecht-number-badge-
|
|
614
|
+
--utrecht-page-body-content-color: var(--utrecht-color-black);
|
|
615
|
+
--utrecht-page-body-content-background-color: var(--utrecht-color-white);
|
|
616
|
+
--utrecht-number-badge-padding-inline: var(--nl-number-badge-padding-inline); /* Default inline padding color for badge components */
|
|
617
|
+
--utrecht-number-badge-padding-block: var(--nl-number-badge-padding-block); /* Default block padding for badge components */
|
|
558
618
|
--utrecht-topnav-link-hover-background-color: var(--utrecht-color-black);
|
|
559
619
|
--utrecht-topnav-link-focus-outline-color: var(--utrecht-color-black);
|
|
560
620
|
--utrecht-topnav-link-focus-background-color: var(--utrecht-color-yellow-80);
|
|
@@ -578,10 +638,6 @@
|
|
|
578
638
|
--utrecht-nav-bar-link-padding-block-start: var(--utrecht-space-block-xs);
|
|
579
639
|
--utrecht-nav-bar-link-padding-block-end: var(--utrecht-space-block-xs);
|
|
580
640
|
--utrecht-nav-bar-content-max-inline-size: var(--utrecht-page-max-inline-size);
|
|
581
|
-
--utrecht-nav-bar-color: var(--utrecht-color-black);
|
|
582
|
-
--utrecht-nav-bar-background-color: var(--utrecht-color-white);
|
|
583
|
-
--utrecht-mark-color: var(--utrecht-color-black);
|
|
584
|
-
--utrecht-mark-background-color: var(--utrecht-color-yellow-60);
|
|
585
641
|
--utrecht-mapcontrolbutton-padding-inline-start: var(--utrecht-space-inline-2xs);
|
|
586
642
|
--utrecht-mapcontrolbutton-padding-inline-end: var(--utrecht-space-inline-2xs);
|
|
587
643
|
--utrecht-mapcontrolbutton-padding-block-start: var(--utrecht-space-block-2xs);
|
|
@@ -638,30 +694,6 @@
|
|
|
638
694
|
--utrecht-index-char-nav-margin-block-end: var(--utrecht-space-block-md);
|
|
639
695
|
--utrecht-index-char-nav-margin-block-start: var(--utrecht-space-block-lg);
|
|
640
696
|
--utrecht-heading-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
641
|
-
--utrecht-heading-6-line-height: var(--utrecht-typography-line-height-md);
|
|
642
|
-
--utrecht-heading-6-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
643
|
-
--utrecht-heading-6-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
644
|
-
--utrecht-heading-6-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
645
|
-
--utrecht-heading-5-line-height: var(--utrecht-typography-line-height-md);
|
|
646
|
-
--utrecht-heading-5-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
647
|
-
--utrecht-heading-5-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
648
|
-
--utrecht-heading-5-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
649
|
-
--utrecht-heading-4-line-height: var(--utrecht-typography-line-height-md);
|
|
650
|
-
--utrecht-heading-4-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
651
|
-
--utrecht-heading-4-font-size: var(--utrecht-typography-scale-lg-font-size);
|
|
652
|
-
--utrecht-heading-4-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
653
|
-
--utrecht-heading-3-line-height: var(--utrecht-typography-line-height-sm);
|
|
654
|
-
--utrecht-heading-3-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
655
|
-
--utrecht-heading-3-font-size: var(--utrecht-typography-scale-xl-font-size);
|
|
656
|
-
--utrecht-heading-3-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
657
|
-
--utrecht-heading-2-line-height: var(--utrecht-typography-line-height-sm);
|
|
658
|
-
--utrecht-heading-2-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
659
|
-
--utrecht-heading-2-font-size: var(--utrecht-typography-scale-xl-font-size);
|
|
660
|
-
--utrecht-heading-2-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
661
|
-
--utrecht-heading-1-line-height: var(--utrecht-typography-line-height-sm);
|
|
662
|
-
--utrecht-heading-1-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
663
|
-
--utrecht-heading-1-font-size: var(--utrecht-typography-scale-4xl-font-size);
|
|
664
|
-
--utrecht-heading-1-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
665
697
|
--utrecht-form-toggle-focus-border-color: var(--utrecht-color-black);
|
|
666
698
|
--utrecht-form-toggle-checked-accent-color: var(--utrecht-color-blue-35);
|
|
667
699
|
--utrecht-form-toggle-thumb-disabled-background-color: var(--utrecht-color-white);
|
|
@@ -737,12 +769,13 @@
|
|
|
737
769
|
--utrecht-feedback-danger-color: var(--utrecht-color-red-40);
|
|
738
770
|
--utrecht-column-layout-gap: var(--utrecht-space-column-md);
|
|
739
771
|
--utrecht-column-layout-column-rule-color: var(--utrecht-color-grey-80);
|
|
772
|
+
--utrecht-code-block-padding-inline-end: var(--nl-code-block-padding-inline);
|
|
773
|
+
--utrecht-code-block-padding-inline-start: var(--nl-code-block-padding-inline);
|
|
774
|
+
--utrecht-code-block-padding-block-end: var(--nl-code-block-padding-block);
|
|
775
|
+
--utrecht-code-block-padding-block-start: var(--nl-code-block-padding-block);
|
|
740
776
|
--utrecht-code-block-margin-block-end: var(--utrecht-space-block-lg);
|
|
741
777
|
--utrecht-code-block-margin-block-start: var(--utrecht-space-block-lg);
|
|
742
|
-
--utrecht-code-block-
|
|
743
|
-
--utrecht-code-block-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
744
|
-
--utrecht-code-block-color: var(--utrecht-color-black);
|
|
745
|
-
--utrecht-code-block-background-color: var(--utrecht-color-grey-95);
|
|
778
|
+
--utrecht-code-block-font-family: var(--nl-code-block-font-family);
|
|
746
779
|
--utrecht-checkbox-indeterminate-background-color: var(--utrecht-color-blue-40);
|
|
747
780
|
--utrecht-checkbox-checked-background-color: var(--utrecht-color-blue-40);
|
|
748
781
|
--utrecht-checkbox-checked-border-color: var(--utrecht-color-blue-40);
|
|
@@ -870,14 +903,15 @@
|
|
|
870
903
|
--utrecht-breadcrumb-nav-item-padding-block-end: var(--utrecht-space-block-xs);
|
|
871
904
|
--utrecht-breadcrumb-nav-item-padding-block-start: var(--utrecht-space-block-xs);
|
|
872
905
|
--utrecht-breadcrumb-nav-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
906
|
+
--utrecht-body-color: var(--utrecht-color-black);
|
|
907
|
+
--utrecht-body-background-color: var(--utrecht-color-white);
|
|
908
|
+
--utrecht-body-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
909
|
+
--utrecht-body-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
873
910
|
--utrecht-blockquote-caption-font-size: var(--utrecht-typography-scale-sm-font-size);
|
|
874
911
|
--utrecht-blockquote-content-font-size: var(--utrecht-typography-scale-lg-font-size);
|
|
875
912
|
--utrecht-blockquote-content-color: var(--utrecht-color-red-40);
|
|
876
913
|
--utrecht-badge-font-style: var(--utrecht-typography-font-style-normal);
|
|
877
|
-
--utrecht-badge-
|
|
878
|
-
--utrecht-badge-padding-block: var(--utrecht-space-block-xs); /* Default block padding for badge components */
|
|
879
|
-
--utrecht-badge-color: var(--utrecht-color-white); /* Default text color for badge components */
|
|
880
|
-
--utrecht-badge-background-color: var(--utrecht-color-grey-30); /* Default background color for badge components */
|
|
914
|
+
--utrecht-badge-border-radius: var(--nl-data-badge-border-radius); /* Default corner radius for badge components */
|
|
881
915
|
--utrecht-badge-list-item-margin-inline: var(--utrecht-space-block-sm);
|
|
882
916
|
--utrecht-badge-list-item-margin-block: var(--utrecht-space-block-xs);
|
|
883
917
|
--utrecht-badge-counter-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
@@ -929,32 +963,70 @@
|
|
|
929
963
|
--utrecht-accordion-button-padding-inline-start: var(--utrecht-space-block-md);
|
|
930
964
|
--utrecht-accordion-button-padding-inline-end: var(--utrecht-space-block-md);
|
|
931
965
|
--utrecht-accordion-row-gap: var(--utrecht-space-block-xs);
|
|
966
|
+
--signalen-modal-dialog-color: var(--utrecht-body-color);
|
|
967
|
+
--signalen-modal-dialog-background-color: var(--utrecht-body-background-color);
|
|
932
968
|
--of-progress-indicator-background-color: var(--utrecht-document-background-color);
|
|
933
969
|
--of-page-footer-fg: var(--utrecht-page-footer-color);
|
|
934
970
|
--of-page-footer-bg: var(--utrecht-page-footer-background-color);
|
|
935
971
|
--of-layout-background: var(--utrecht-document-background-color);
|
|
972
|
+
--nl-skip-link-focus-visible-background-color: var(--utrecht-topnav-link-focus-background-color);
|
|
973
|
+
--nl-skip-link-focus-visible-color: var(--utrecht-topnav-link-focus-color);
|
|
974
|
+
--nl-skip-link-padding-inline: var(--utrecht-button-padding-inline-start);
|
|
975
|
+
--nl-skip-link-padding-block: var(--utrecht-button-padding-block-start);
|
|
976
|
+
--nl-skip-link-color: var(--utrecht-topnav-link-color);
|
|
977
|
+
--nl-skip-link-background-color: var(--utrecht-topnav-list-background-color);
|
|
978
|
+
--nl-paragraph-lead-color: var(--utrecht-document-color);
|
|
979
|
+
--nl-number-badge-border-radius: var(--nl-number-badge-font-size);
|
|
936
980
|
--denhaag-process-steps-sub-step-line-color: var(--denhaag-process-steps-step-line-color);
|
|
937
981
|
--utrecht-toptask-link-hover-color: var(--utrecht-button-primary-action-hover-color);
|
|
938
982
|
--utrecht-toptask-link-hover-background-color: var(--utrecht-button-primary-action-hover-background-color);
|
|
939
983
|
--utrecht-toptask-link-color: var(--utrecht-button-primary-action-color);
|
|
940
984
|
--utrecht-toptask-link-background-color: var(--utrecht-button-primary-action-background-color);
|
|
941
|
-
--utrecht-skip-link-focus-
|
|
942
|
-
--utrecht-skip-link-
|
|
943
|
-
--utrecht-skip-link-padding-inline-end: var(--utrecht-button-padding-inline-end);
|
|
944
|
-
--utrecht-skip-link-padding-inline-start: var(--utrecht-button-padding-inline-start);
|
|
945
|
-
--utrecht-skip-link-padding-block-end: var(--utrecht-button-padding-block-end);
|
|
946
|
-
--utrecht-skip-link-padding-block-start: var(--utrecht-button-padding-block-start);
|
|
947
|
-
--utrecht-skip-link-color: var(--utrecht-topnav-link-color);
|
|
948
|
-
--utrecht-skip-link-background-color: var(--utrecht-topnav-list-background-color);
|
|
985
|
+
--utrecht-skip-link-focus-visible-text-decoration: var(--nl-skip-link-focus-visible-text-decoration);
|
|
986
|
+
--utrecht-skip-link-text-decoration: var(--nl-skip-link-text-decoration);
|
|
949
987
|
--utrecht-radio-button-border-color: var(--utrecht-form-control-border-color);
|
|
950
988
|
--utrecht-radio-button-background-color: var(--utrecht-form-control-background-color);
|
|
951
|
-
--utrecht-paragraph-lead-
|
|
952
|
-
--utrecht-
|
|
989
|
+
--utrecht-paragraph-lead-line-height: var(--nl-paragraph-lead-line-height);
|
|
990
|
+
--utrecht-paragraph-lead-font-weight: var(--nl-paragraph-lead-font-weight);
|
|
991
|
+
--utrecht-paragraph-lead-font-size: var(--nl-paragraph-lead-font-size);
|
|
992
|
+
--utrecht-paragraph-line-height: var(--nl-paragraph-line-height);
|
|
993
|
+
--utrecht-paragraph-font-weight: var(--nl-paragraph-font-weight);
|
|
994
|
+
--utrecht-paragraph-font-size: var(--nl-paragraph-font-size);
|
|
995
|
+
--utrecht-paragraph-font-family: var(--nl-paragraph-font-family);
|
|
996
|
+
--utrecht-number-badge-font-size: var(--nl-number-badge-font-size);
|
|
997
|
+
--utrecht-number-badge-color: var(--nl-number-badge-color); /* Default text color for badge components */
|
|
998
|
+
--utrecht-number-badge-background-color: var(--nl-number-badge-background-color);
|
|
999
|
+
--utrecht-mark-color: var(--nl-mark-color);
|
|
1000
|
+
--utrecht-mark-background-color: var(--nl-mark-background-color);
|
|
953
1001
|
--utrecht-listbox-border-width: var(--utrecht-form-control-border-width);
|
|
954
1002
|
--utrecht-listbox-border-color: var(--utrecht-form-control-border-color);
|
|
955
1003
|
--utrecht-link-visited-color: var(--utrecht-link-color);
|
|
956
1004
|
--utrecht-link-hover-color: var(--utrecht-link-focus-color);
|
|
957
1005
|
--utrecht-link-active-color: var(--utrecht-link-color);
|
|
1006
|
+
--utrecht-heading-6-line-height: var(--nl-heading-level-6-line-height);
|
|
1007
|
+
--utrecht-heading-6-font-weight: var(--nl-heading-level-6-font-weight);
|
|
1008
|
+
--utrecht-heading-6-font-size: var(--nl-heading-level-6-font-size);
|
|
1009
|
+
--utrecht-heading-6-font-family: var(--nl-heading-level-6-font-family);
|
|
1010
|
+
--utrecht-heading-5-line-height: var(--nl-heading-level-5-line-height);
|
|
1011
|
+
--utrecht-heading-5-font-weight: var(--nl-heading-level-5-font-weight);
|
|
1012
|
+
--utrecht-heading-5-font-size: var(--nl-heading-level-5-font-size);
|
|
1013
|
+
--utrecht-heading-5-font-family: var(--nl-heading-level-5-font-family);
|
|
1014
|
+
--utrecht-heading-4-line-height: var(--nl-heading-level-4-line-height);
|
|
1015
|
+
--utrecht-heading-4-font-weight: var(--nl-heading-level-4-font-weight);
|
|
1016
|
+
--utrecht-heading-4-font-size: var(--nl-heading-level-4-font-size);
|
|
1017
|
+
--utrecht-heading-4-font-family: var(--nl-heading-level-4-font-family);
|
|
1018
|
+
--utrecht-heading-3-line-height: var(--nl-heading-level-3-line-height);
|
|
1019
|
+
--utrecht-heading-3-font-weight: var(--nl-heading-level-3-font-weight);
|
|
1020
|
+
--utrecht-heading-3-font-size: var(--nl-heading-level-3-font-size);
|
|
1021
|
+
--utrecht-heading-3-font-family: var(--nl-heading-level-3-font-family);
|
|
1022
|
+
--utrecht-heading-2-line-height: var(--nl-heading-level-2-line-height);
|
|
1023
|
+
--utrecht-heading-2-font-weight: var(--nl-heading-level-2-font-weight);
|
|
1024
|
+
--utrecht-heading-2-font-size: var(--nl-heading-level-2-font-size);
|
|
1025
|
+
--utrecht-heading-2-font-family: var(--nl-heading-level-2-font-family);
|
|
1026
|
+
--utrecht-heading-1-line-height: var(--nl-heading-level-1-line-height);
|
|
1027
|
+
--utrecht-heading-1-font-weight: var(--nl-heading-level-1-font-weight);
|
|
1028
|
+
--utrecht-heading-1-font-size: var(--nl-heading-level-1-font-size);
|
|
1029
|
+
--utrecht-heading-1-font-family: var(--nl-heading-level-1-font-family);
|
|
958
1030
|
--utrecht-form-field-error-message-color: var(--utrecht-feedback-invalid-color);
|
|
959
1031
|
--utrecht-form-field-description-warning-color: var(--utrecht-feedback-warning-color);
|
|
960
1032
|
--utrecht-form-field-description-invalid-color: var(--utrecht-feedback-invalid-color);
|
|
@@ -974,6 +1046,10 @@
|
|
|
974
1046
|
--utrecht-feedback-warning-background-color: var(--utrecht-feedback-warning-color);
|
|
975
1047
|
--utrecht-feedback-danger-border-color: var(--utrecht-feedback-danger-color);
|
|
976
1048
|
--utrecht-feedback-danger-background-color: var(--utrecht-feedback-danger-color);
|
|
1049
|
+
--utrecht-code-block-line-height: var(--nl-code-block-line-height);
|
|
1050
|
+
--utrecht-code-block-font-size: var(--nl-code-block-font-size);
|
|
1051
|
+
--utrecht-code-block-color: var(--nl-code-block-color);
|
|
1052
|
+
--utrecht-code-block-background-color: var(--nl-code-block-background-color);
|
|
977
1053
|
--utrecht-checkbox-color: var(--utrecht-form-control-color);
|
|
978
1054
|
--utrecht-checkbox-border-color: var(--utrecht-form-control-border-color);
|
|
979
1055
|
--utrecht-checkbox-background-color: var(--utrecht-form-control-background-color);
|
|
@@ -998,9 +1074,22 @@
|
|
|
998
1074
|
--utrecht-button-pressed-background-color: var(--utrecht-button-active-background-color);
|
|
999
1075
|
--utrecht-breadcrumb-nav-arrows-link-focus-background-color: var(--utrecht-focus-background-color);
|
|
1000
1076
|
--utrecht-breadcrumb-nav-link-focus-background-color: var(--utrecht-focus-background-color);
|
|
1077
|
+
--utrecht-badge-padding-inline: var(--nl-data-badge-padding-inline); /* Default inline padding color for badge components */
|
|
1078
|
+
--utrecht-badge-padding-block: var(--nl-data-badge-padding-block); /* Default block padding for badge components */
|
|
1079
|
+
--utrecht-badge-color: var(--nl-data-badge-color); /* Default text color for badge components */
|
|
1080
|
+
--utrecht-badge-background-color: var(--nl-data-badge-background-color); /* Default background color for badge components */
|
|
1001
1081
|
--utrecht-badge-counter-border-radius: var(--utrecht-badge-counter-font-size); /* Default corner radius for badge components */
|
|
1002
1082
|
--of-layout-bg: var(--of-layout-background);
|
|
1083
|
+
--utrecht-skip-link-focus-color: var(--nl-skip-link-focus-visible-color);
|
|
1084
|
+
--utrecht-skip-link-focus-background-color: var(--nl-skip-link-focus-visible-background-color);
|
|
1085
|
+
--utrecht-skip-link-padding-inline-end: var(--nl-skip-link-padding-inline);
|
|
1086
|
+
--utrecht-skip-link-padding-inline-start: var(--nl-skip-link-padding-inline);
|
|
1087
|
+
--utrecht-skip-link-padding-block-end: var(--nl-skip-link-padding-block);
|
|
1088
|
+
--utrecht-skip-link-padding-block-start: var(--nl-skip-link-padding-block);
|
|
1089
|
+
--utrecht-skip-link-color: var(--nl-skip-link-color);
|
|
1090
|
+
--utrecht-skip-link-background-color: var(--nl-skip-link-background-color);
|
|
1003
1091
|
--utrecht-radio-button-invalid-border-color: var(--utrecht-form-control-invalid-border-color);
|
|
1092
|
+
--utrecht-number-badge-border-radius: var(--nl-number-badge-border-radius);
|
|
1004
1093
|
--utrecht-form-field-invalid-border-inline-start-color: var(--utrecht-form-control-invalid-border-color);
|
|
1005
1094
|
--utrecht-form-field-description-valid-color: var(--utrecht-feedback-valid-color);
|
|
1006
1095
|
--utrecht-feedback-active-border-color: var(--utrecht-feedback-safe-border-color);
|
package/dist/dark/index.d.ts
CHANGED
|
@@ -94,6 +94,11 @@ export const utrechtBlockquoteContentFontSize : string;
|
|
|
94
94
|
export const utrechtBlockquoteCaptionFontSize : string;
|
|
95
95
|
export const utrechtBlockquoteMarginBlockStart : string;
|
|
96
96
|
export const utrechtBlockquoteMarginBlockEnd : string;
|
|
97
|
+
export const utrechtBodyFontFamily : string;
|
|
98
|
+
export const utrechtBodyFontSize : string;
|
|
99
|
+
export const utrechtBodyLineHeight : string;
|
|
100
|
+
export const utrechtBodyBackgroundColor : string;
|
|
101
|
+
export const utrechtBodyColor : string;
|
|
97
102
|
export const utrechtBreadcrumbNavMinBlockSize : string;
|
|
98
103
|
export const utrechtBreadcrumbNavFontSize : string;
|
|
99
104
|
export const utrechtBreadcrumbNavItemPaddingBlockStart : string;
|
|
@@ -295,6 +300,7 @@ export const utrechtCheckboxInvalidBorderColor : string;
|
|
|
295
300
|
export const utrechtCheckboxMarginBlockStart : number;
|
|
296
301
|
export const utrechtCodeBlockBackgroundColor : string;
|
|
297
302
|
export const utrechtCodeBlockColor : string;
|
|
303
|
+
export const utrechtCodeBlockFontFamily : string;
|
|
298
304
|
export const utrechtCodeBlockFontSize : string;
|
|
299
305
|
export const utrechtCodeBlockLineHeight : string;
|
|
300
306
|
export const utrechtCodeBlockMarginBlockStart : string;
|
|
@@ -615,6 +621,7 @@ export const utrechtLinkListLinkColumnGap : string;
|
|
|
615
621
|
export const utrechtLinkListLinkFontWeight : string;
|
|
616
622
|
export const utrechtLinkListLinkTextDecoration : string;
|
|
617
623
|
export const utrechtLinkListIconSize : string;
|
|
624
|
+
export const utrechtLinkListIconInsetBlockStart : string;
|
|
618
625
|
export const utrechtLinkSocialBackgroundColor : string;
|
|
619
626
|
export const utrechtLinkSocialBorderColor : string;
|
|
620
627
|
export const utrechtLinkSocialBorderWidth : string;
|
|
@@ -696,8 +703,6 @@ export const utrechtMapcontrolbuttonPaddingInlineEnd : string;
|
|
|
696
703
|
export const utrechtMapcontrolbuttonPaddingInlineStart : string;
|
|
697
704
|
export const utrechtMarkBackgroundColor : string;
|
|
698
705
|
export const utrechtMarkColor : string;
|
|
699
|
-
export const utrechtNavBarBackgroundColor : string;
|
|
700
|
-
export const utrechtNavBarColor : string;
|
|
701
706
|
export const utrechtNavBarContentMaxInlineSize : string;
|
|
702
707
|
export const utrechtNavBarLinkPaddingBlockEnd : string;
|
|
703
708
|
export const utrechtNavBarLinkPaddingBlockStart : string;
|
|
@@ -740,19 +745,38 @@ export const utrechtOrderedListPaddingInlineStart : string;
|
|
|
740
745
|
export const utrechtOrderedListItemMarginBlockStart : string;
|
|
741
746
|
export const utrechtOrderedListItemMarginBlockEnd : string;
|
|
742
747
|
export const utrechtOrderedListItemPaddingInlineStart : string;
|
|
748
|
+
export const utrechtPageBodyContentBackgroundColor : string;
|
|
749
|
+
export const utrechtPageBodyContentColor : string;
|
|
750
|
+
export const utrechtPageBodyContentPaddingBlockStart : string;
|
|
751
|
+
export const utrechtPageBodyContentPaddingBlockEnd : string;
|
|
752
|
+
export const utrechtPageBodyContentPaddingInlineStart : string;
|
|
753
|
+
export const utrechtPageBodyContentMaxInlineSize : string;
|
|
754
|
+
export const utrechtPageBodyContentPaddingInlineEnd : string;
|
|
755
|
+
export const utrechtPageBodyPaddingInlineEnd : string;
|
|
756
|
+
export const utrechtPageBodyPaddingInlineStart : string;
|
|
757
|
+
export const utrechtPageBodyPaddingBlockEnd : string;
|
|
758
|
+
export const utrechtPageBodyPaddingBlockStart : string;
|
|
743
759
|
export const utrechtPageContentPaddingBlockStart : string;
|
|
744
760
|
export const utrechtPageContentPaddingBlockEnd : string;
|
|
745
761
|
export const utrechtPageFooterColor : string;
|
|
746
762
|
export const utrechtPageFooterBackgroundColor : string;
|
|
747
763
|
export const utrechtPageFooterBackgroundImage : string;
|
|
748
|
-
export const
|
|
749
|
-
export const
|
|
750
|
-
export const
|
|
751
|
-
export const
|
|
764
|
+
export const utrechtPageFooterContentPaddingBlockEnd : string;
|
|
765
|
+
export const utrechtPageFooterContentPaddingBlockStart : string;
|
|
766
|
+
export const utrechtPageFooterContentMaxInlineSize : string;
|
|
767
|
+
export const utrechtPageFooterContentPaddingInline : string;
|
|
752
768
|
export const utrechtPageHeaderPaddingBlockStart : string;
|
|
753
769
|
export const utrechtPageHeaderPaddingBlockEnd : string;
|
|
754
770
|
export const utrechtPageHeaderPaddingInlineStart : string;
|
|
755
771
|
export const utrechtPageHeaderPaddingInlineEnd : string;
|
|
772
|
+
export const utrechtPageHeaderContentBackgroundColor : string;
|
|
773
|
+
export const utrechtPageHeaderContentColor : string;
|
|
774
|
+
export const utrechtPageHeaderContentPaddingBlockStart : string;
|
|
775
|
+
export const utrechtPageHeaderContentPaddingBlockEnd : string;
|
|
776
|
+
export const utrechtPageHeaderContentPaddingInlineStart : string;
|
|
777
|
+
export const utrechtPageHeaderContentPaddingInlineEnd : string;
|
|
778
|
+
export const utrechtPageHeaderContentMaxInlineSize : string;
|
|
779
|
+
export const utrechtPageHeaderContentPaddingInline : string;
|
|
756
780
|
export const utrechtPageBackgroundColor : string;
|
|
757
781
|
export const utrechtPageColor : string;
|
|
758
782
|
export const utrechtPageMarginInlineStart : string;
|
|
@@ -804,7 +828,6 @@ export const utrechtParagraphFontWeight : string;
|
|
|
804
828
|
export const utrechtParagraphLineHeight : string;
|
|
805
829
|
export const utrechtParagraphMarginBlockStart : string;
|
|
806
830
|
export const utrechtParagraphMarginBlockEnd : string;
|
|
807
|
-
export const utrechtParagraphLeadColor : string;
|
|
808
831
|
export const utrechtParagraphLeadFontSize : string;
|
|
809
832
|
export const utrechtParagraphLeadFontWeight : string;
|
|
810
833
|
export const utrechtParagraphLeadLineHeight : string;
|
|
@@ -814,6 +837,7 @@ export const utrechtPreHeadingMarginBlockStart : string;
|
|
|
814
837
|
export const utrechtRadioButtonBackgroundColor : string;
|
|
815
838
|
export const utrechtRadioButtonBorderColor : string;
|
|
816
839
|
export const utrechtRadioButtonBorderWidth : string;
|
|
840
|
+
export const utrechtRadioButtonColor : string;
|
|
817
841
|
export const utrechtRadioButtonSize : string;
|
|
818
842
|
export const utrechtRadioButtonMarginInlineEnd : string;
|
|
819
843
|
export const utrechtRadioButtonIconSize : string;
|
|
@@ -832,13 +856,14 @@ export const utrechtRadioButtonDisabledBorderColor : string;
|
|
|
832
856
|
export const utrechtRadioButtonDisabledColor : string;
|
|
833
857
|
export const utrechtRadioButtonInvalidBorderColor : string;
|
|
834
858
|
export const utrechtRadioButtonInvalidBorderWidth : string;
|
|
835
|
-
export const utrechtRadioButtonColor : string;
|
|
836
859
|
export const utrechtRadioButtonBorderRadius : string;
|
|
837
860
|
export const utrechtRichTextStrangerMarginBlockEnd : string;
|
|
838
861
|
export const utrechtRichTextAcquaintanceMarginBlockEnd : string;
|
|
839
862
|
export const utrechtRichTextFriendMarginBlockEnd : string;
|
|
840
863
|
export const utrechtRichTextBestFriendMarginBlockEnd : string;
|
|
841
864
|
export const utrechtRichTextConfidantMarginBlockEnd : string;
|
|
865
|
+
export const utrechtRootBackgroundColor : string;
|
|
866
|
+
export const utrechtRootColor : string;
|
|
842
867
|
export const utrechtSearchBarButtonBackgroundColor : string;
|
|
843
868
|
export const utrechtSearchBarButtonBorderColor : string;
|
|
844
869
|
export const utrechtSearchBarButtonColor : string;
|
|
@@ -1131,9 +1156,73 @@ export const denhaagProcessStepsSubStepHeadingColor : string;
|
|
|
1131
1156
|
export const denhaagProcessStepsSubStepHeadingFontSize : string;
|
|
1132
1157
|
export const denhaagProcessStepsSubStepHeadingFontWeight : string;
|
|
1133
1158
|
export const denhaagProcessStepsSubStepLineColor : string;
|
|
1159
|
+
export const nlCodeBlockBackgroundColor : string;
|
|
1160
|
+
export const nlCodeBlockColor : string;
|
|
1161
|
+
export const nlCodeBlockFontFamily : string;
|
|
1162
|
+
export const nlCodeBlockFontSize : string;
|
|
1163
|
+
export const nlCodeBlockLineHeight : string;
|
|
1164
|
+
export const nlCodeBlockPaddingBlock : string;
|
|
1165
|
+
export const nlCodeBlockPaddingInline : string;
|
|
1166
|
+
export const nlDataBadgeBackgroundColor : string;
|
|
1167
|
+
export const nlDataBadgeBorderRadius : string;
|
|
1168
|
+
export const nlDataBadgeColor : string;
|
|
1169
|
+
export const nlDataBadgePaddingBlock : string;
|
|
1170
|
+
export const nlDataBadgePaddingInline : string;
|
|
1171
|
+
export const nlHeadingLevel1FontFamily : string;
|
|
1172
|
+
export const nlHeadingLevel1FontSize : string;
|
|
1173
|
+
export const nlHeadingLevel1FontWeight : string;
|
|
1174
|
+
export const nlHeadingLevel1LineHeight : string;
|
|
1175
|
+
export const nlHeadingLevel2FontFamily : string;
|
|
1176
|
+
export const nlHeadingLevel2FontSize : string;
|
|
1177
|
+
export const nlHeadingLevel2FontWeight : string;
|
|
1178
|
+
export const nlHeadingLevel2LineHeight : string;
|
|
1179
|
+
export const nlHeadingLevel3FontFamily : string;
|
|
1180
|
+
export const nlHeadingLevel3FontSize : string;
|
|
1181
|
+
export const nlHeadingLevel3FontWeight : string;
|
|
1182
|
+
export const nlHeadingLevel3LineHeight : string;
|
|
1183
|
+
export const nlHeadingLevel4FontFamily : string;
|
|
1184
|
+
export const nlHeadingLevel4FontSize : string;
|
|
1185
|
+
export const nlHeadingLevel4FontWeight : string;
|
|
1186
|
+
export const nlHeadingLevel4LineHeight : string;
|
|
1187
|
+
export const nlHeadingLevel5FontFamily : string;
|
|
1188
|
+
export const nlHeadingLevel5FontSize : string;
|
|
1189
|
+
export const nlHeadingLevel5FontWeight : string;
|
|
1190
|
+
export const nlHeadingLevel5LineHeight : string;
|
|
1191
|
+
export const nlHeadingLevel6FontFamily : string;
|
|
1192
|
+
export const nlHeadingLevel6FontSize : string;
|
|
1193
|
+
export const nlHeadingLevel6FontWeight : string;
|
|
1194
|
+
export const nlHeadingLevel6LineHeight : string;
|
|
1195
|
+
export const nlMarkBackgroundColor : string;
|
|
1196
|
+
export const nlMarkColor : string;
|
|
1197
|
+
export const nlNumberBadgeBackgroundColor : string;
|
|
1198
|
+
export const nlNumberBadgeBorderRadius : string;
|
|
1199
|
+
export const nlNumberBadgeColor : string;
|
|
1200
|
+
export const nlNumberBadgeFontSize : string;
|
|
1201
|
+
export const nlNumberBadgePaddingBlock : string;
|
|
1202
|
+
export const nlNumberBadgePaddingInline : string;
|
|
1203
|
+
export const nlParagraphFontFamily : string;
|
|
1204
|
+
export const nlParagraphFontSize : string;
|
|
1205
|
+
export const nlParagraphFontWeight : string;
|
|
1206
|
+
export const nlParagraphLineHeight : string;
|
|
1207
|
+
export const nlParagraphLeadColor : string;
|
|
1208
|
+
export const nlParagraphLeadFontSize : string;
|
|
1209
|
+
export const nlParagraphLeadFontWeight : string;
|
|
1210
|
+
export const nlParagraphLeadLineHeight : string;
|
|
1211
|
+
export const nlParagraphSmallFontSize : string;
|
|
1212
|
+
export const nlSkipLinkBackgroundColor : string;
|
|
1213
|
+
export const nlSkipLinkColor : string;
|
|
1214
|
+
export const nlSkipLinkPaddingBlock : string;
|
|
1215
|
+
export const nlSkipLinkPaddingInline : string;
|
|
1216
|
+
export const nlSkipLinkTextDecoration : string;
|
|
1217
|
+
export const nlSkipLinkFocusVisibleColor : string;
|
|
1218
|
+
export const nlSkipLinkFocusVisibleBackgroundColor : string;
|
|
1219
|
+
export const nlSkipLinkFocusVisibleTextDecoration : string;
|
|
1134
1220
|
export const ofLayoutBackground : string;
|
|
1135
1221
|
export const ofLayoutBg : string;
|
|
1136
1222
|
export const ofPageFooterBg : string;
|
|
1137
1223
|
export const ofPageFooterFg : string;
|
|
1138
1224
|
export const ofProgressIndicatorBackgroundColor : string;
|
|
1139
1225
|
export const ofProgressIndicatorMobileBoxShadow : string;
|
|
1226
|
+
export const signalenModalDialogBackgroundColor : string;
|
|
1227
|
+
export const signalenModalDialogColor : string;
|
|
1228
|
+
export const signalenProgressBarBorderRadius : string;
|