@conduction/theme 1.0.16 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/README.md +6 -0
  2. package/municipalities/tubbergen-design-tokens/LICENSE.md +17 -0
  3. package/municipalities/tubbergen-design-tokens/dist/design-tokens.css +332 -0
  4. package/municipalities/tubbergen-design-tokens/dist/font.css +115 -0
  5. package/municipalities/tubbergen-design-tokens/dist/index.css +7 -0
  6. package/municipalities/tubbergen-design-tokens/dist/index.js +330 -0
  7. package/municipalities/tubbergen-design-tokens/dist/index.json +6509 -0
  8. package/municipalities/tubbergen-design-tokens/dist/index.less +329 -0
  9. package/municipalities/tubbergen-design-tokens/dist/index.scss +329 -0
  10. package/municipalities/tubbergen-design-tokens/dist/tokens.json +6896 -0
  11. package/municipalities/tubbergen-design-tokens/package.json +37 -0
  12. package/municipalities/tubbergen-design-tokens/src/brand/tubbergen/color.tokens.json +95 -0
  13. package/municipalities/tubbergen-design-tokens/src/brand/tubbergen/font-size.tokens.json +17 -0
  14. package/municipalities/tubbergen-design-tokens/src/brand/tubbergen/size.tokens.json +17 -0
  15. package/municipalities/tubbergen-design-tokens/src/brand/tubbergen/typography.tokens.json +47 -0
  16. package/municipalities/tubbergen-design-tokens/src/common/utrecht/action.tokens.json +9 -0
  17. package/municipalities/tubbergen-design-tokens/src/common/utrecht/space.tokens.json +28 -0
  18. package/municipalities/tubbergen-design-tokens/src/component/conduction/card.tokens.json +15 -0
  19. package/municipalities/tubbergen-design-tokens/src/component/conduction/select.tokens.json +15 -0
  20. package/municipalities/tubbergen-design-tokens/src/component/conduction/table.tokens.json +22 -0
  21. package/municipalities/tubbergen-design-tokens/src/component/utrecht/alert.tokens.json +47 -0
  22. package/municipalities/tubbergen-design-tokens/src/component/utrecht/blockquote.tokens.json +27 -0
  23. package/municipalities/tubbergen-design-tokens/src/component/utrecht/button.tokens.json +152 -0
  24. package/municipalities/tubbergen-design-tokens/src/component/utrecht/code.tokens.json +27 -0
  25. package/municipalities/tubbergen-design-tokens/src/component/utrecht/document.tokens.json +12 -0
  26. package/municipalities/tubbergen-design-tokens/src/component/utrecht/form-input.tokens.json +44 -0
  27. package/municipalities/tubbergen-design-tokens/src/component/utrecht/heading.tokens.json +53 -0
  28. package/municipalities/tubbergen-design-tokens/src/component/utrecht/icon.tokens.json +13 -0
  29. package/municipalities/tubbergen-design-tokens/src/component/utrecht/link.tokens.json +33 -0
  30. package/municipalities/tubbergen-design-tokens/src/component/utrecht/list.tokens.json +32 -0
  31. package/municipalities/tubbergen-design-tokens/src/component/utrecht/page-footer.tokens.json +16 -0
  32. package/municipalities/tubbergen-design-tokens/src/component/utrecht/page-header.tokens.json +10 -0
  33. package/municipalities/tubbergen-design-tokens/src/component/utrecht/page.tokens.json +11 -0
  34. package/municipalities/tubbergen-design-tokens/src/component/utrecht/paragraph.tokens.json +25 -0
  35. package/municipalities/tubbergen-design-tokens/src/component/utrecht/table.tokens.json +60 -0
  36. package/municipalities/tubbergen-design-tokens/src/component/utrecht/textbox.tokens.json +44 -0
  37. package/municipalities/tubbergen-design-tokens/src/config.json +7 -0
  38. package/municipalities/tubbergen-design-tokens/src/font.scss +149 -0
  39. package/municipalities/tubbergen-design-tokens/src/index.scss +8 -0
  40. package/municipalities/tubbergen-design-tokens/style-dictionary.config.js +6 -0
  41. package/municipalities/xxllnc-design-tokens/dist/design-tokens.css +7 -7
  42. package/municipalities/xxllnc-design-tokens/dist/index.js +8 -8
  43. package/municipalities/xxllnc-design-tokens/dist/index.json +10 -10
  44. package/municipalities/xxllnc-design-tokens/dist/index.less +7 -7
  45. package/municipalities/xxllnc-design-tokens/dist/index.scss +7 -7
  46. package/municipalities/xxllnc-design-tokens/dist/tokens.json +10 -10
  47. package/municipalities/xxllnc-design-tokens/src/brand/xxllnc/color.tokens.json +3 -3
  48. package/municipalities/xxllnc.css +1 -1
  49. package/package.json +1 -1
@@ -0,0 +1,53 @@
1
+ {
2
+ "utrecht": {
3
+ "heading-1": {
4
+ "color": { "value": "{tubbergen.color.black.13}" },
5
+ "font-family": { "value": "{tubbergen.typography.montserrat.font-family}" },
6
+ "font-size": { "value": "{tubbergen.font-size.2xl}" },
7
+ "font-weight": { "value": "{tubbergen.typography.font-weight.bold}" },
8
+ "line-height": {},
9
+ "margin-block-end": { "value": "{tubbergen.size.sm}" },
10
+ "margin-block-start": { "value": "{tubbergen.size.sm}" }
11
+ },
12
+
13
+ "heading-2": {
14
+ "color": { "value": "{tubbergen.color.black.13}" },
15
+ "font-family": { "value": "{tubbergen.typography.montserrat.font-family}" },
16
+ "font-size": { "value": "{tubbergen.font-size.xl}" },
17
+ "font-weight": { "value": "{tubbergen.typography.font-weight.bold}" },
18
+ "line-height": {},
19
+ "margin-block-end": { "value": "{tubbergen.size.xs}" },
20
+ "margin-block-start": { "value": 0 }
21
+ },
22
+
23
+ "heading-3": {
24
+ "color": { "value": "{tubbergen.color.black.13}" },
25
+ "font-family": { "value": "{tubbergen.typography.montserrat.font-family}" },
26
+ "font-size": { "value": "{tubbergen.font-size.lg}" },
27
+ "font-weight": { "value": "{tubbergen.typography.font-weight.normal}" },
28
+ "line-height": {},
29
+ "margin-block-end": { "value": "{tubbergen.size.2xs}" },
30
+ "margin-block-start": { "value": 0 }
31
+ },
32
+
33
+ "heading-4": {
34
+ "color": { "value": "{tubbergen.color.black.13}" },
35
+ "font-family": { "value": "{tubbergen.typography.montserrat.font-family}" },
36
+ "font-size": { "value": "{tubbergen.font-size.md}" },
37
+ "font-weight": { "value": "{tubbergen.typography.font-weight.normal}" },
38
+ "line-height": {},
39
+ "margin-block-end": { "value": 0 },
40
+ "margin-block-start": { "value": 0 }
41
+ },
42
+
43
+ "heading-5": {
44
+ "color": { "value": "{tubbergen.color.black.13}" },
45
+ "font-family": { "value": "{tubbergen.typography.montserrat.font-family}" },
46
+ "font-size": { "value": "{tubbergen.font-size.md}" },
47
+ "font-weight": { "value": "{tubbergen.typography.font-weight.light}" },
48
+ "line-height": {},
49
+ "margin-block-end": { "value": 0 },
50
+ "margin-block-start": { "value": 0 }
51
+ }
52
+ }
53
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "utrecht": {
3
+ "icon": {
4
+ "color": {},
5
+ "gap": { "value": "{tubbergen.size.xs}" },
6
+ "size": {},
7
+ "inset-block-start": {},
8
+ "baseline": {
9
+ "inset-block-start": {}
10
+ }
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "utrecht": {
3
+ "link": {
4
+ "color": { "value": "{tubbergen.color.primary}" },
5
+ "text-decoration": { "value": "none" },
6
+ "text-decoration-color": { "value": "unset" },
7
+ "text-decoration-thickness": { "value": 0 },
8
+ "text-underline-offset": { "value": "{tubbergen.size.3xs}" },
9
+ "active": {
10
+ "color": {}
11
+ },
12
+ "focus": {
13
+ "color": {},
14
+ "text-decoration": {},
15
+ "text-decoration-thickness": {}
16
+ },
17
+ "hover": {
18
+ "color": { "value": "{tubbergen.color.primary-hover}" },
19
+ "text-decoration": { "value": "underline" },
20
+ "text-decoration-thickness": { "value": "{tubbergen.size.4xs}" }
21
+ },
22
+ "placeholder": {
23
+ "color": {}
24
+ },
25
+ "visited": {
26
+ "color": { "value": "{tubbergen.color.primary}" }
27
+ },
28
+ "icon": {
29
+ "size": { "value": "{tubbergen.size.md}" }
30
+ }
31
+ }
32
+ }
33
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "utrecht": {
3
+ "ordered-list": {
4
+ "font-size": { "value": "{utrecht.document.font-size}" },
5
+ "line-height": {},
6
+ "margin-block-start": { "value": "{tubbergen.size.sm}" },
7
+ "margin-block-end": { "value": "{tubbergen.size.sm}" },
8
+ "padding-inline-start": { "value": "{tubbergen.size.xl}" },
9
+ "item": {
10
+ "margin-block-start": { "value": "{tubbergen.size.2xs}" },
11
+ "margin-block-end": { "value": "{tubbergen.size.2xs}" },
12
+ "padding-inline-start": { "value": "1ch" }
13
+ }
14
+ },
15
+
16
+ "unordered-list": {
17
+ "font-size": { "value": "{utrecht.document.font-size}" },
18
+ "line-height": {},
19
+ "margin-block-start": { "value": "{tubbergen.size.md}" },
20
+ "margin-block-end": { "value": 0 },
21
+ "padding-inline-start": { "value": "2ch" },
22
+ "item": {
23
+ "margin-block-start": { "value": "{tubbergen.size.xs}" },
24
+ "margin-block-end": { "value": "{tubbergen.size.xs}" },
25
+ "padding-inline-start": { "value": "1ch" }
26
+ },
27
+ "marker": {
28
+ "color": { "value": "{utrecht.document.color}" }
29
+ }
30
+ }
31
+ }
32
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "utrecht": {
3
+ "page-footer": {
4
+ "background-color": { "value": "unset" },
5
+ "background-image": {
6
+ "value": "url(https://www.tubbergen.nl/sites/all/themes/tubbergen/dist/assets/img/footer-bg.svg)"
7
+ },
8
+ "color": { "value": "{tubbergen.color.white.100}" },
9
+ "padding-inline-end": { "value": "{tubbergen.size.sm}" },
10
+ "padding-inline-start": { "value": "{tubbergen.size.sm}" },
11
+ "padding-block-end": { "value": "{tubbergen.size.2xl}" },
12
+ "padding-block-start": { "value": "{tubbergen.size.2xl}" },
13
+ "min-height": { "value": "300px" }
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "utrecht": {
3
+ "page-header": {
4
+ "background-color": { "value": "{tubbergen.color.white.100}" },
5
+ "color": { "value": "{tubbergen.color.black.20}" },
6
+ "padding-block-start": { "value": "{tubbergen.size.sm}" },
7
+ "padding-block-end": { "value": "{tubbergen.size.sm}" }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "utrecht": {
3
+ "page": {
4
+ "background-color": {},
5
+ "color": {},
6
+ "padding-inline-start": { "value": "{tubbergen.size.lg}" },
7
+ "padding-inline-end": { "value": "{tubbergen.size.lg}" },
8
+ "max-inline-size": { "value": "1140px" }
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "utrecht": {
3
+ "paragraph": {
4
+ "color": { "value": "{utrecht.document.color}" },
5
+ "font-family": { "value": "{tubbergen.typography.lato.font-family}" },
6
+ "font-size": { "value": "{tubbergen.font-size.md}" },
7
+ "font-weight": { "value": "{tubbergen.typography.font-weight.normal}" },
8
+ "line-height": { "value": "1.5em" },
9
+ "margin-block-start": { "value": 0 },
10
+ "margin-block-end": { "value": 0 },
11
+ "lead": {
12
+ "color": {},
13
+ "font-size": {},
14
+ "font-weight": {},
15
+ "line-height": {}
16
+ },
17
+ "small": {
18
+ "color": {},
19
+ "font-size": {},
20
+ "font-weight": {},
21
+ "line-height": {}
22
+ }
23
+ }
24
+ }
25
+ }
@@ -0,0 +1,60 @@
1
+ {
2
+ "utrecht": {
3
+ "table": {
4
+ "border-color": {},
5
+ "border-width": {},
6
+ "font-family": { "value": "{utrecht.document.font-family}" },
7
+ "font-size": { "value": "{utrecht.document.font-size}" },
8
+ "line-height": {},
9
+ "margin-block-end": { "value": 0 },
10
+ "margin-block-start": { "value": "{tubbergen.size.md}" },
11
+ "caption": {
12
+ "font-weight": {},
13
+ "font-family": {},
14
+ "font-size": {},
15
+ "color": {},
16
+ "line-height": {},
17
+ "text-align": {},
18
+ "margin-block-end": {}
19
+ },
20
+ "header": {
21
+ "font-weight": { "value": "{tubbergen.typography.font-weight.bold}" },
22
+ "background-color": {},
23
+ "color": { "value": "{utrecht.document.color}" },
24
+ "text-transform": { "value": "unset" },
25
+ "border-block-end-color": {},
26
+ "border-block-end-width": {}
27
+ },
28
+ "header-cell": {
29
+ "font-size": { "value": "{utrecht.document.font-size}" },
30
+ "font-weight": { "value": "{tubbergen.typography.font-weight.bold}" },
31
+ "color": { "value": "{utrecht.document.color}" },
32
+ "text-transform": { "value": "unset" }
33
+ },
34
+ "cell": {
35
+ "line-height": {},
36
+ "padding-block-end": { "value": "{tubbergen.size.md}" },
37
+ "padding-block-start": { "value": "{tubbergen.size.md}" },
38
+ "padding-inline-end": { "value": "{tubbergen.size.md}" },
39
+ "padding-inline-start": { "value": "{tubbergen.size.md}" },
40
+ "icon": {
41
+ "size": {}
42
+ }
43
+ },
44
+ "row": {
45
+ "border-block-end-color": { "value": "{tubbergen.color.lightgrey.89}" },
46
+ "border-block-end-width": { "value": "{tubbergen.size.4xs}" },
47
+ "padding-inline-end": {},
48
+ "padding-inline-start": {},
49
+ "alternate-odd": {
50
+ "background-color": { "value": "{tubbergen.color.white.100}" },
51
+ "color": {}
52
+ },
53
+ "alternate-even": {
54
+ "background-color": { "value": "{tubbergen.color.blue.96}" },
55
+ "color": {}
56
+ }
57
+ }
58
+ }
59
+ }
60
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "utrecht": {
3
+ "textbox": {
4
+ "background-color": { "value": "{tubbergen.color.white.100}" },
5
+ "border-bottom-width": {},
6
+ "border-color": { "value": "{tubbergen.color.grey.46}" },
7
+ "border-radius": { "value": "0px" },
8
+ "border-width": { "value": "{tubbergen.size.4xs}" },
9
+ "color": { "value": "{tubbergen.color.black.33}" },
10
+ "font-family": { "value": "{tubbergen.typography.lato.font-family}" },
11
+ "font-size": { "value": "15px" },
12
+ "line-height": {},
13
+ "max-inline-size": {},
14
+ "padding-block-end": { "value": "{tubbergen.size.xs}" },
15
+ "padding-block-start": { "value": "{tubbergen.size.xs}" },
16
+ "padding-inline-end": { "value": "{tubbergen.size.sm}" },
17
+ "padding-inline-start": { "value": "{tubbergen.size.sm}" },
18
+ "placeholder": {
19
+ "color": { "value": "{tubbergen.color.grey.42}" }
20
+ },
21
+ "disabled": {
22
+ "background-color": {},
23
+ "border-color": {},
24
+ "color": {}
25
+ },
26
+ "focus": {
27
+ "background-color": {},
28
+ "border-color": { "value": "{tubbergen.color.blue.48}" },
29
+ "color": {}
30
+ },
31
+ "invalid": {
32
+ "background-color": {},
33
+ "border-color": {},
34
+ "border-width": {},
35
+ "color": {}
36
+ },
37
+ "read-only": {
38
+ "background-color": {},
39
+ "border-color": {},
40
+ "color": {}
41
+ }
42
+ }
43
+ }
44
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "fullName": "Gemeente Tubbergen",
3
+ "name": "Tubbergen",
4
+ "prefix": "tubbergen",
5
+ "npm": "@conduction/tubbergen-design-tokens",
6
+ "stories": ["react-utrecht-link--default"]
7
+ }
@@ -0,0 +1,149 @@
1
+ /* Place any @font-face definitions here */
2
+
3
+ /* Lato Font-Family */
4
+ /* latin-ext */
5
+ @font-face {
6
+ font-family: "Lato";
7
+ font-style: normal;
8
+ font-weight: 400;
9
+ src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXjeu.woff2)
10
+ format("woff2");
11
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
12
+ U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
13
+ }
14
+ /* latin */
15
+ @font-face {
16
+ font-family: "Lato";
17
+ font-style: normal;
18
+ font-weight: 400;
19
+ src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2)
20
+ format("woff2");
21
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
22
+ U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
23
+ U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
24
+ }
25
+ /* latin-ext */
26
+ @font-face {
27
+ font-family: "Lato";
28
+ font-style: normal;
29
+ font-weight: 700;
30
+ src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPGR_p.woff2)
31
+ format("woff2");
32
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
33
+ U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
34
+ }
35
+ /* latin */
36
+ @font-face {
37
+ font-family: "Lato";
38
+ font-style: normal;
39
+ font-weight: 700;
40
+ src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPGQ.woff2)
41
+ format("woff2");
42
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
43
+ U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
44
+ U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
45
+ }
46
+
47
+ /* Montserrat Font-Family */
48
+ /* cyrillic-ext */
49
+ @font-face {
50
+ font-family: "Montserrat";
51
+ font-style: normal;
52
+ font-weight: 400;
53
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
54
+ format("woff2");
55
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
56
+ U+FE2E-FE2F;
57
+ }
58
+ /* cyrillic */
59
+ @font-face {
60
+ font-family: "Montserrat";
61
+ font-style: normal;
62
+ font-weight: 400;
63
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
64
+ format("woff2");
65
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
66
+ }
67
+ /* vietnamese */
68
+ @font-face {
69
+ font-family: "Montserrat";
70
+ font-style: normal;
71
+ font-weight: 400;
72
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)
73
+ format("woff2");
74
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
75
+ U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
76
+ U+1EA0-1EF9, U+20AB;
77
+ }
78
+ /* latin-ext */
79
+ @font-face {
80
+ font-family: "Montserrat";
81
+ font-style: normal;
82
+ font-weight: 400;
83
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)
84
+ format("woff2");
85
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
86
+ U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
87
+ }
88
+ /* latin */
89
+ @font-face {
90
+ font-family: "Montserrat";
91
+ font-style: normal;
92
+ font-weight: 400;
93
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
94
+ format("woff2");
95
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
96
+ U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
97
+ U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
98
+ }
99
+ /* cyrillic-ext */
100
+ @font-face {
101
+ font-family: "Montserrat";
102
+ font-style: normal;
103
+ font-weight: 700;
104
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
105
+ format("woff2");
106
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
107
+ U+FE2E-FE2F;
108
+ }
109
+ /* cyrillic */
110
+ @font-face {
111
+ font-family: "Montserrat";
112
+ font-style: normal;
113
+ font-weight: 700;
114
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
115
+ format("woff2");
116
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
117
+ }
118
+ /* vietnamese */
119
+ @font-face {
120
+ font-family: "Montserrat";
121
+ font-style: normal;
122
+ font-weight: 700;
123
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)
124
+ format("woff2");
125
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
126
+ U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
127
+ U+1EA0-1EF9, U+20AB;
128
+ }
129
+ /* latin-ext */
130
+ @font-face {
131
+ font-family: "Montserrat";
132
+ font-style: normal;
133
+ font-weight: 700;
134
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)
135
+ format("woff2");
136
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
137
+ U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
138
+ }
139
+ /* latin */
140
+ @font-face {
141
+ font-family: "Montserrat";
142
+ font-style: normal;
143
+ font-weight: 700;
144
+ src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
145
+ format("woff2");
146
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
147
+ U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
148
+ U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
149
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @license SEE LICENSE.md
3
+ * Copyright (c) 2021 NL Design System Community
4
+ * All rights reserved
5
+ */
6
+
7
+ @import "./design-tokens.css";
8
+ @import "./font.css";
@@ -0,0 +1,6 @@
1
+ const config = require('./src/config.json');
2
+ const { createConfig } = require('../../style-dictionary-config');
3
+
4
+ module.exports = createConfig({
5
+ selector: `.${config.prefix}-theme`,
6
+ });
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 09 Aug 2023 13:53:32 GMT
3
+ * Generated on Thu, 10 Aug 2023 09:52:10 GMT
4
4
  */
5
5
 
6
6
  .xxllnc-theme {
@@ -83,12 +83,10 @@
83
83
  --xxllnc-color-white-100-0t: #ffffff; /* White with 0% transparency */
84
84
  --xxllnc-color-white-100: #ffffff; /* Base/White */
85
85
  --xxllnc-color-white-95: #f1f1f1;
86
- --xxllnc-color-alert-info-background: #d4edda;
87
- --xxllnc-color-alert-info: #155724;
88
86
  --xxllnc-color-alert-succes-background: #d4edda;
89
87
  --xxllnc-color-alert-succes: #155724;
90
88
  --xxllnc-color-succes: #28a745;
91
- --xxllnc-color-alert-warning-background: #333338;
89
+ --xxllnc-color-alert-warning-background: #fff3cd;
92
90
  --xxllnc-color-alert-warning: #856404;
93
91
  --xxllnc-color-warning: #ffc107;
94
92
  --xxllnc-color-alert-error-background: #f8d7da;
@@ -230,7 +228,6 @@
230
228
  --utrecht-alert-icon-warning-color: var(--xxllnc-color-alert-warning);
231
229
  --utrecht-alert-icon-gap: var(--xxllnc-size-xs);
232
230
  --utrecht-alert-icon-error-color: var(--xxllnc-color-alert-error);
233
- --utrecht-alert-icon-color: var(--xxllnc-color-alert-info);
234
231
  --utrecht-alert-ok-color: var(--xxllnc-color-alert-succes);
235
232
  --utrecht-alert-ok-background-color: var(--xxllnc-color-alert-succes-background);
236
233
  --utrecht-alert-error-color: var(--xxllnc-color-alert-error);
@@ -241,8 +238,6 @@
241
238
  --utrecht-alert-padding-inline-start: var(--xxllnc-size-lg);
242
239
  --utrecht-alert-padding-block-end: var(--xxllnc-size-lg);
243
240
  --utrecht-alert-padding-block-start: var(--xxllnc-size-lg);
244
- --utrecht-alert-color: var(--xxllnc-color-alert-info);
245
- --utrecht-alert-background-color: var(--xxllnc-color-alert-info-background);
246
241
  --utrecht-card-padding-block-start: var(--xxllnc-size-md);
247
242
  --utrecht-card-padding-block-end: var(--xxllnc-size-md);
248
243
  --utrecht-card-padding-inline-start: var(--xxllnc-size-md);
@@ -278,6 +273,8 @@
278
273
  --xxllnc-typography-scale-2xs: var(--xxllnc-font-size-2xs);
279
274
  --xxllnc-typography-scale-3xs: var(--xxllnc-font-size-3xs);
280
275
  --xxllnc-typography-scale-4xs: var(--xxllnc-font-size-4xs);
276
+ --xxllnc-color-alert-info-background: var(--xxllnc-color-grey-92);
277
+ --xxllnc-color-alert-info: var(--xxllnc-color-black-16);
281
278
  --xxllnc-color-info: var(--xxllnc-color-primary);
282
279
  --utrecht-table-header-cell-color: var(--utrecht-document-color);
283
280
  --utrecht-table-header-cell-font-size: var(--utrecht-document-font-size);
@@ -287,4 +284,7 @@
287
284
  --utrecht-paragraph-color: var(--utrecht-document-color);
288
285
  --utrecht-unordered-list-font-size: var(--utrecht-document-font-size);
289
286
  --utrecht-ordered-list-font-size: var(--utrecht-document-font-size);
287
+ --utrecht-alert-icon-color: var(--xxllnc-color-alert-info);
288
+ --utrecht-alert-color: var(--xxllnc-color-alert-info);
289
+ --utrecht-alert-background-color: var(--xxllnc-color-alert-info-background);
290
290
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 09 Aug 2023 13:53:32 GMT
3
+ * Generated on Thu, 10 Aug 2023 09:52:10 GMT
4
4
  */
5
5
 
6
6
  export const xxllncColorPrimary = "#000000ad"; // Primary with 68% transparency
@@ -10,13 +10,13 @@ export const xxllncColorAlertError = "#721c24";
10
10
  export const xxllncColorAlertErrorBackground = "#f8d7da";
11
11
  export const xxllncColorWarning = "#ffc107";
12
12
  export const xxllncColorAlertWarning = "#856404";
13
- export const xxllncColorAlertWarningBackground = "#333338";
13
+ export const xxllncColorAlertWarningBackground = "#fff3cd";
14
14
  export const xxllncColorSucces = "#28a745";
15
15
  export const xxllncColorAlertSucces = "#155724";
16
16
  export const xxllncColorAlertSuccesBackground = "#d4edda";
17
17
  export const xxllncColorInfo = "#000000ad";
18
- export const xxllncColorAlertInfo = "#155724";
19
- export const xxllncColorAlertInfoBackground = "#d4edda";
18
+ export const xxllncColorAlertInfo = "#28282c";
19
+ export const xxllncColorAlertInfoBackground = "#eaeaea";
20
20
  export const xxllncColorWhite95 = "#f1f1f1";
21
21
  export const xxllncColorWhite100 = "#ffffff"; // Base/White
22
22
  export const xxllncColorWhite1000t = "#ffffff"; // White with 0% transparency
@@ -98,19 +98,19 @@ export const utrechtCardPaddingInlineEnd = "18px";
98
98
  export const utrechtCardPaddingInlineStart = "18px";
99
99
  export const utrechtCardPaddingBlockEnd = "18px";
100
100
  export const utrechtCardPaddingBlockStart = "18px";
101
- export const utrechtAlertBackgroundColor = "#d4edda";
102
- export const utrechtAlertColor = "#155724";
101
+ export const utrechtAlertBackgroundColor = "#eaeaea";
102
+ export const utrechtAlertColor = "#28282c";
103
103
  export const utrechtAlertPaddingBlockStart = "24px";
104
104
  export const utrechtAlertPaddingBlockEnd = "24px";
105
105
  export const utrechtAlertPaddingInlineStart = "24px";
106
106
  export const utrechtAlertPaddingInlineEnd = "24px";
107
- export const utrechtAlertWarningBackgroundColor = "#333338";
107
+ export const utrechtAlertWarningBackgroundColor = "#fff3cd";
108
108
  export const utrechtAlertWarningColor = "#856404";
109
109
  export const utrechtAlertErrorBackgroundColor = "#f8d7da";
110
110
  export const utrechtAlertErrorColor = "#721c24";
111
111
  export const utrechtAlertOkBackgroundColor = "#d4edda";
112
112
  export const utrechtAlertOkColor = "#155724";
113
- export const utrechtAlertIconColor = "#155724";
113
+ export const utrechtAlertIconColor = "#28282c";
114
114
  export const utrechtAlertIconErrorColor = "#721c24";
115
115
  export const utrechtAlertIconGap = "8px";
116
116
  export const utrechtAlertIconWarningColor = "#856404";
@@ -196,7 +196,7 @@
196
196
  ]
197
197
  },
198
198
  {
199
- "value": "#d4edda",
199
+ "value": "#eaeaea",
200
200
  "filePath": "src/component/utrecht/alert.tokens.json",
201
201
  "isSource": true,
202
202
  "original": {
@@ -215,7 +215,7 @@
215
215
  ]
216
216
  },
217
217
  {
218
- "value": "#155724",
218
+ "value": "#28282c",
219
219
  "filePath": "src/component/utrecht/alert.tokens.json",
220
220
  "isSource": true,
221
221
  "original": {
@@ -276,7 +276,7 @@
276
276
  ]
277
277
  },
278
278
  {
279
- "value": "#155724",
279
+ "value": "#28282c",
280
280
  "filePath": "src/component/utrecht/alert.tokens.json",
281
281
  "isSource": true,
282
282
  "original": {
@@ -505,7 +505,7 @@
505
505
  ]
506
506
  },
507
507
  {
508
- "value": "#333338",
508
+ "value": "#fff3cd",
509
509
  "filePath": "src/component/utrecht/alert.tokens.json",
510
510
  "isSource": true,
511
511
  "original": {
@@ -4329,11 +4329,11 @@
4329
4329
  ]
4330
4330
  },
4331
4331
  {
4332
- "value": "#155724",
4332
+ "value": "#28282c",
4333
4333
  "filePath": "src/brand/xxllnc/color.tokens.json",
4334
4334
  "isSource": true,
4335
4335
  "original": {
4336
- "value": "#155724"
4336
+ "value": "{xxllnc.color.black.16}"
4337
4337
  },
4338
4338
  "name": "xxllncColorAlertInfo",
4339
4339
  "attributes": {
@@ -4348,11 +4348,11 @@
4348
4348
  ]
4349
4349
  },
4350
4350
  {
4351
- "value": "#d4edda",
4351
+ "value": "#eaeaea",
4352
4352
  "filePath": "src/brand/xxllnc/color.tokens.json",
4353
4353
  "isSource": true,
4354
4354
  "original": {
4355
- "value": "#d4edda"
4355
+ "value": "{xxllnc.color.grey.92}"
4356
4356
  },
4357
4357
  "name": "xxllncColorAlertInfoBackground",
4358
4358
  "attributes": {
@@ -4424,11 +4424,11 @@
4424
4424
  ]
4425
4425
  },
4426
4426
  {
4427
- "value": "#333338",
4427
+ "value": "#fff3cd",
4428
4428
  "filePath": "src/brand/xxllnc/color.tokens.json",
4429
4429
  "isSource": true,
4430
4430
  "original": {
4431
- "value": "#333338"
4431
+ "value": "#fff3cd"
4432
4432
  },
4433
4433
  "name": "xxllncColorAlertWarningBackground",
4434
4434
  "attributes": {