@conduction/theme 1.0.14 → 1.0.15

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 (44) hide show
  1. package/README.md +1 -0
  2. package/conduction-design-tokens/LICENSE.md +17 -0
  3. package/conduction-design-tokens/dist/design-tokens.css +294 -0
  4. package/conduction-design-tokens/dist/font.css +5 -0
  5. package/conduction-design-tokens/dist/index.css +7 -0
  6. package/conduction-design-tokens/dist/index.js +292 -0
  7. package/conduction-design-tokens/dist/index.json +5699 -0
  8. package/conduction-design-tokens/dist/index.less +291 -0
  9. package/conduction-design-tokens/dist/index.scss +291 -0
  10. package/conduction-design-tokens/dist/tokens.json +6098 -0
  11. package/conduction-design-tokens/package.json +40 -0
  12. package/conduction-design-tokens/src/brand/conduction/color.tokens.json +59 -0
  13. package/conduction-design-tokens/src/brand/conduction/font-size.tokens.json +17 -0
  14. package/conduction-design-tokens/src/brand/conduction/size.tokens.json +17 -0
  15. package/conduction-design-tokens/src/brand/conduction/typography.tokens.json +47 -0
  16. package/conduction-design-tokens/src/common/utrecht/action.tokens.json +9 -0
  17. package/conduction-design-tokens/src/common/utrecht/space.tokens.json +28 -0
  18. package/conduction-design-tokens/src/component/conduction/card.tokens.json +15 -0
  19. package/conduction-design-tokens/src/component/conduction/select.tokens.json +15 -0
  20. package/conduction-design-tokens/src/component/conduction/table.tokens.json +16 -0
  21. package/conduction-design-tokens/src/component/utrecht/alert.tokens.json +47 -0
  22. package/conduction-design-tokens/src/component/utrecht/blockquote.tokens.json +27 -0
  23. package/conduction-design-tokens/src/component/utrecht/button.tokens.json +152 -0
  24. package/conduction-design-tokens/src/component/utrecht/code.tokens.json +27 -0
  25. package/conduction-design-tokens/src/component/utrecht/document.tokens.json +12 -0
  26. package/conduction-design-tokens/src/component/utrecht/form-input.tokens.json +44 -0
  27. package/conduction-design-tokens/src/component/utrecht/heading.tokens.json +53 -0
  28. package/conduction-design-tokens/src/component/utrecht/icon.tokens.json +13 -0
  29. package/conduction-design-tokens/src/component/utrecht/link.tokens.json +33 -0
  30. package/conduction-design-tokens/src/component/utrecht/list.tokens.json +32 -0
  31. package/conduction-design-tokens/src/component/utrecht/page-footer.tokens.json +13 -0
  32. package/conduction-design-tokens/src/component/utrecht/page-header.tokens.json +10 -0
  33. package/conduction-design-tokens/src/component/utrecht/page.tokens.json +11 -0
  34. package/conduction-design-tokens/src/component/utrecht/paragraph.tokens.json +25 -0
  35. package/conduction-design-tokens/src/component/utrecht/table.tokens.json +60 -0
  36. package/conduction-design-tokens/src/component/utrecht/textbox.tokens.json +44 -0
  37. package/conduction-design-tokens/src/config.json +7 -0
  38. package/conduction-design-tokens/src/font/Aldritch.woff2 +0 -0
  39. package/conduction-design-tokens/src/font.scss +6 -0
  40. package/conduction-design-tokens/src/index.scss +8 -0
  41. package/conduction-design-tokens/style-dictionary.config.js +6 -0
  42. package/municipalities/xxllnc-design-tokens/LICENSE.md +17 -0
  43. package/package.json +1 -1
  44. package/theme.css +51 -39
@@ -0,0 +1,33 @@
1
+ {
2
+ "utrecht": {
3
+ "link": {
4
+ "color": { "value": "{conduction.color.primary}" },
5
+ "text-decoration": { "value": "none" },
6
+ "text-decoration-color": { "value": "unset" },
7
+ "text-decoration-thickness": { "value": 0 },
8
+ "text-underline-offset": { "value": "{conduction.size.3xs}" },
9
+ "active": {
10
+ "color": {}
11
+ },
12
+ "focus": {
13
+ "color": {},
14
+ "text-decoration": {},
15
+ "text-decoration-thickness": {}
16
+ },
17
+ "hover": {
18
+ "color": { "value": "{conduction.color.primary-hover}" },
19
+ "text-decoration": { "value": "underline" },
20
+ "text-decoration-thickness": { "value": "{conduction.size.4xs}" }
21
+ },
22
+ "placeholder": {
23
+ "color": {}
24
+ },
25
+ "visited": {
26
+ "color": { "value": "{conduction.color.primary}" }
27
+ },
28
+ "icon": {
29
+ "size": { "value": "{conduction.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": "{conduction.size.sm}" },
7
+ "margin-block-end": { "value": "{conduction.size.sm}" },
8
+ "padding-inline-start": { "value": "{conduction.size.xl}" },
9
+ "item": {
10
+ "margin-block-start": { "value": "{conduction.size.2xs}" },
11
+ "margin-block-end": { "value": "{conduction.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": "{conduction.size.md}" },
20
+ "margin-block-end": { "value": 0 },
21
+ "padding-inline-start": { "value": "2ch" },
22
+ "item": {
23
+ "margin-block-start": { "value": "{conduction.size.xs}" },
24
+ "margin-block-end": { "value": "{conduction.size.xs}" },
25
+ "padding-inline-start": { "value": "1ch" }
26
+ },
27
+ "marker": {
28
+ "color": { "value": "{conduction.color.primary}" }
29
+ }
30
+ }
31
+ }
32
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "utrecht": {
3
+ "page-footer": {
4
+ "background-color": { "value": "{conduction.color.lightgrey.96}" },
5
+ "background-image": { "value": "unset" },
6
+ "color": { "value": "{conduction.color.black.0}" },
7
+ "padding-inline-end": { "value": "{conduction.size.sm}" },
8
+ "padding-inline-start": { "value": "{conduction.size.sm}" },
9
+ "padding-block-end": { "value": "{conduction.size.2xl}" },
10
+ "padding-block-start": { "value": "{conduction.size.2xl}" }
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "utrecht": {
3
+ "page-header": {
4
+ "background-color": { "value": "{conduction.color.primary}" },
5
+ "color": { "value": "{conduction.color.white.100}" },
6
+ "padding-block-start": { "value": "{conduction.size.sm}" },
7
+ "padding-block-end": { "value": "{conduction.size.sm}" }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "utrecht": {
3
+ "page": {
4
+ "background-color": {},
5
+ "color": {},
6
+ "margin-inline-start": { "value": "{conduction.size.lg}" },
7
+ "margin-inline-end": { "value": "{conduction.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": "{conduction.typography.sans-serif.font-family}" },
6
+ "font-size": { "value": "{conduction.font-size.md}" },
7
+ "font-weight": { "value": "{conduction.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": "{conduction.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": "{conduction.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": "{conduction.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": "{conduction.size.md}" },
37
+ "padding-block-start": { "value": "{conduction.size.md}" },
38
+ "padding-inline-end": { "value": "{conduction.size.md}" },
39
+ "padding-inline-start": { "value": "{conduction.size.md}" },
40
+ "icon": {
41
+ "size": {}
42
+ }
43
+ },
44
+ "row": {
45
+ "border-block-end-color": { "value": "{conduction.color.grey.82}" },
46
+ "border-block-end-width": { "value": "{conduction.size.4xs}" },
47
+ "padding-inline-end": {},
48
+ "padding-inline-start": {},
49
+ "alternate-odd": {
50
+ "background-color": {},
51
+ "color": {}
52
+ },
53
+ "alternate-even": {
54
+ "background-color": {},
55
+ "color": {}
56
+ }
57
+ }
58
+ }
59
+ }
60
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "utrecht": {
3
+ "textbox": {
4
+ "background-color": { "value": "{conduction.color.white.100}" },
5
+ "border-bottom-width": {},
6
+ "border-color": { "value": "{conduction.color.grey.48}" },
7
+ "border-radius": { "value": "3px" },
8
+ "border-width": { "value": "{conduction.size.4xs}" },
9
+ "color": { "value": "{conduction.color.grey.29}" },
10
+ "font-family": { "value": "{conduction.typography.sans-serif.font-family}" },
11
+ "font-size": { "value": "15px" },
12
+ "line-height": {},
13
+ "max-inline-size": {},
14
+ "padding-block-end": { "value": "{conduction.size.xs}" },
15
+ "padding-block-start": { "value": "{conduction.size.xs}" },
16
+ "padding-inline-end": { "value": "{conduction.size.sm}" },
17
+ "padding-inline-start": { "value": "{conduction.size.sm}" },
18
+ "placeholder": {
19
+ "color": { "value": "{conduction.color.grey.50}" }
20
+ },
21
+ "disabled": {
22
+ "background-color": {},
23
+ "border-color": {},
24
+ "color": {}
25
+ },
26
+ "focus": {
27
+ "background-color": { "value": "{conduction.color.white.100}" },
28
+ "border-color": {},
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": "Conduction",
3
+ "name": "conduction",
4
+ "prefix": "conduction",
5
+ "npm": "@conduction/theme",
6
+ "stories": ["react-utrecht-link--default"]
7
+ }
@@ -0,0 +1,6 @@
1
+ /* Place any @font-face definitions here */
2
+
3
+ @font-face {
4
+ font-family: "Aldritch";
5
+ src: url("../src/font/Aldritch.woff2") format("woff2");
6
+ }
@@ -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
+ });
@@ -0,0 +1,17 @@
1
+ # Auteursrecht XXLLNC
2
+
3
+ Copyright (c) 2023 XXLLNC
4
+
5
+ ## Logo en huisstijl
6
+
7
+ Op het huisstijl en logo zijn auteursrechten van toepassing. Het gebruik van logo en huisstijl is alleen toegestaan voor gebruik door XXLLNC.
8
+
9
+ Wanneer je een bewerking van de software wilt gebruiken voor andere doeleinden, mag je niet het logo van XXLLNC gebruiken en je ontwerpt een eigen huisstijl.
10
+
11
+ ## Lettertype
12
+
13
+ Lettertypes die worden gebruikt voor de huisstijl zijn niet allemaal gratis en open source. Let op dat bij gebruik van die bijgeleverde lettertypes je een (betaalde) licentie regelt. Pas anders de configuratie aan om minder of andere lettertypes te gebruiken.
14
+
15
+ ## Toestemming
16
+
17
+ Wanneer je het logo of de huisstijl wilt gebruiken kun je voor toestemming contact opnemen met XXLLNC.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/theme",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Conduction's design tokens theme",
5
5
  "main": "index.js",
6
6
  "repository": {
package/theme.css CHANGED
@@ -56,21 +56,22 @@
56
56
  --conduction-color-alert-info: #004085;
57
57
  --conduction-color-alert-info-background: #cce5ff;
58
58
 
59
- --conduction-color-grey: #808080;
59
+ --conduction-color-grey-50: #808080;
60
60
  --conduction-color-grey-29: #4a4a4a;
61
61
  --conduction-color-grey-48: #7a7a7a;
62
62
 
63
- --conduction-color-lightgrey: #f5f5f5;
63
+ --conduction-color-lightgrey-96: #f5f5f5;
64
64
 
65
- --conduction-color-white: #ffffff;
65
+ --conduction-color-white-100: #ffffff;
66
66
  --conduction-color-white-98: #fafafa;
67
67
 
68
- --conduction-color-black: #000000;
68
+ --conduction-color-black-0: #000000;
69
69
 
70
70
  /* Typography */
71
71
  --conduction-typography-sans-serif-font-family: "Noto Sans", Arial, sans-serif;
72
- --conduction-typography-header-font-family: "Aldritch", "Noto Sans", Arial, sans-serif;
73
- --conduction-typography-code-font-family: Monospace, "Lucida Console";
72
+ --conduction-typography-aldritch-font-family: "Aldritch", "Noto Sans", Arial,
73
+ sans-serif;
74
+ --conduction-typography-monospace-font-family: Monospace, "Lucida Console";
74
75
 
75
76
  /*
76
77
  *
@@ -124,7 +125,7 @@
124
125
  --conduction-typography-sans-serif-font-family
125
126
  );
126
127
  --utrecht-document-font-size: var(--conduction-font-size-md);
127
- --utrecht-document-color: var(--conduction-color-black);
128
+ --utrecht-document-color: var(--conduction-color-black-0);
128
129
  --utrecht-document-background-color: var(--conduction-color-white-98);
129
130
  --utrecht-space-around: 1;
130
131
 
@@ -134,7 +135,7 @@
134
135
  );
135
136
 
136
137
  /* Header */
137
- --utrecht-page-header-color: var(--conduction-color-white);
138
+ --utrecht-page-header-color: var(--conduction-color-white-100);
138
139
  --utrecht-page-header-background-color: var(--conduction-color-primary);
139
140
  --utrecht-page-header-padding-block-start: var(--conduction-size-sm);
140
141
  --utrecht-page-header-padding-block-end: var(--conduction-size-sm);
@@ -143,11 +144,11 @@
143
144
  --utrecht-page-padding-inline-start: var(--conduction-size-lg);
144
145
  --utrecht-page-padding-inline-end: var(--conduction-size-lg);
145
146
  --utrecht-page-max-inline-size: 1140px;
146
- --utrecht-page-content-background-color: var(--conduction-color-black);
147
+ --utrecht-page-content-background-color: var(--conduction-color-black-0);
147
148
 
148
149
  /* Headings */
149
150
  --utrecht-heading-1-font-family: var(
150
- --conduction-typography-header-font-family
151
+ --conduction-typography-aldritch-font-family
151
152
  );
152
153
  --utrecht-heading-1-font-size: var(--conduction-font-size-3xl);
153
154
  --utrecht-heading-1-font-weight: var(--conduction-font-weight-bold);
@@ -156,7 +157,7 @@
156
157
  --utrecht-heading-1-margin-block-end: var(--conduction-size-md);
157
158
 
158
159
  --utrecht-heading-2-font-family: var(
159
- --conduction-typography-header-font-family
160
+ --conduction-typography-aldritch-font-family
160
161
  );
161
162
  --utrecht-heading-2-font-weight: var(--conduction-font-weight-bold);
162
163
  --utrecht-heading-2-font-size: var(--conduction-font-size-2xl);
@@ -165,7 +166,7 @@
165
166
  --utrecht-heading-2-margin-block-end: var(--conduction-size-md);
166
167
 
167
168
  --utrecht-heading-3-font-family: var(
168
- --conduction-typography-header-font-family
169
+ --conduction-typography-aldritch-font-family
169
170
  );
170
171
  --utrecht-heading-3-font-weight: var(--conduction-font-weight-normal);
171
172
  --utrecht-heading-3-font-size: var(--conduction-font-size-xl);
@@ -174,16 +175,16 @@
174
175
  --utrecht-heading-3-margin-block-end: var(--conduction-size-md);
175
176
 
176
177
  --utrecht-heading-4-font-family: var(
177
- --conduction-typography-header-font-family
178
+ --conduction-typography-aldritch-font-family
178
179
  );
179
180
  --utrecht-heading-4-font-size: var(--conduction-font-size-lg);
180
181
  --utrecht-heading-4-font-weight: var(--conduction-font-weight-normal);
181
182
  --utrecht-heading-4-letter-spacing: var(--conduction-letter-spacing-normal);
182
- --utrecht-heading-4-margin-block-start: var(--conduction-size-lf);
183
+ --utrecht-heading-4-margin-block-start: var(--conduction-size-lg);
183
184
  --utrecht-heading-4-margin-block-end: var(--conduction-size-md);
184
185
 
185
186
  --utrecht-heading-5-font-family: var(
186
- --conduction-typography-header-font-family
187
+ --conduction-typography-aldritch-font-family
187
188
  );
188
189
  --utrecht-heading-5-font-size: var(--conduction-font-size-md);
189
190
  --utrecht-heading-5-font-weight: var(--conduction-font-weight-light);
@@ -204,8 +205,8 @@
204
205
  --utrecht-paragraph-margin-block-end: 0;
205
206
 
206
207
  /* Footer */
207
- --utrecht-page-footer-color: var(--conduction-color-black);
208
- --utrecht-page-footer-background-color: var(--conduction-color-lightgrey);
208
+ --utrecht-page-footer-color: var(--conduction-color-black-0);
209
+ --utrecht-page-footer-background-color: var(--conduction-color-lightgrey-96);
209
210
  --utrecht-page-footer-background-image: unset;
210
211
  --utrecht-page-footer-padding-block-start: var(--conduction-size-2xl);
211
212
  --utrecht-page-footer-padding-block-end: var(--conduction-size-2xl);
@@ -245,21 +246,23 @@
245
246
  --utrecht-link-hover-text-decoration-thickness: var(--conduction-size-4xs);
246
247
 
247
248
  /* Blockquote */
248
- --utrecht-blockquote-content-color: var(--conduction-color-black);
249
+ --utrecht-blockquote-content-color: var(--conduction-color-black-0);
249
250
  --utrecht-blockquote-content-font-size: var(--conduction-size-md);
250
251
  --utrecht-blockquote-margin-inline-start: var(--conduction-size-xl);
251
252
  --utrecht-blockquote-margin-inline-end: var(--conduction-size-xl);
252
253
 
253
254
  /* Code */
254
- --utrecht-code-color: var(--conduction-color-black);
255
- --utrecht-code-background-color: var(--conduction-color-lightgrey);
256
- --utrecht-code-font-family: var(--conduction-typography-code-font-family);
255
+ --utrecht-code-color: var(--conduction-color-black-0);
256
+ --utrecht-code-background-color: var(--conduction-color-lightgrey-96);
257
+ --utrecht-code-font-family: var(
258
+ --conduction-typography-monospace-font-family
259
+ );
257
260
  --utrecht-code-font-size: inherit;
258
261
 
259
- --utrecht-code-block-color: var(--conduction-color-black);
260
- --utrecht-code-block-background-color: var(--conduction-color-lightgrey);
262
+ --utrecht-code-block-color: var(--conduction-color-black-0);
263
+ --utrecht-code-block-background-color: var(--conduction-color-lightgrey-96);
261
264
  --utrecht-code-block-font-family: var(
262
- --conduction-typography-code-font-family
265
+ --conduction-typography-monospace-font-family
263
266
  );
264
267
  --utrecht-code-block-font-size: var(--conduction-font-size-md);
265
268
  --utrecht-code-block-font-weight: var(--conduction-font-weight-normal);
@@ -277,7 +280,7 @@
277
280
  --utrecht-unordered-list-marker-color: var(--conduction-color-primary);
278
281
 
279
282
  /* Table */
280
- --utrecht-table-border-color: var(--conduction-color-lightgrey);
283
+ --utrecht-table-border-color: var(--conduction-color-lightgrey-96);
281
284
  --utrecht-table-border-width: var(--conduction-size-4xs);
282
285
  --utrecht-table-font-family: var(--utrecht-document-font-family) inherit;
283
286
  --utrecht-table-font-size: var(--utrecht-document-font-size) inherit;
@@ -288,11 +291,14 @@
288
291
  --utrecht-table-header-font-weight: var(--conduction-font-weight-bold);
289
292
  --utrecht-table-header-text-transform: unset;
290
293
 
291
- --utrecht-table-header-cell-font-size: var(--utrecht-document-font-size) inherit;
294
+ --utrecht-table-header-cell-font-size: var(--utrecht-document-font-size)
295
+ inherit;
292
296
  --utrecht-table-header-cell-font-weight: var(--conduction-font-weight-bold);
293
297
  --utrecht-table-header-cell-text-transform: unset;
294
298
 
295
- --utrecht-table-row-border-block-end-color: var(--conduction-color-lightgrey);
299
+ --utrecht-table-row-border-block-end-color: var(
300
+ --conduction-color-lightgrey-96
301
+ );
296
302
  --utrecht-table-row-border-block-end-width: var(--conduction-size-4xs);
297
303
 
298
304
  --utrecht-table-cell-padding-block-start: var(--conduction-size-md);
@@ -337,10 +343,10 @@
337
343
  --utrecht-icon-gap: var(--conduction-size-xs);
338
344
 
339
345
  /* Button */
340
- --utrecht-button-color: var(--conduction-color-white);
346
+ --utrecht-button-color: var(--conduction-color-white-100);
341
347
  --utrecht-button-background-color: var(--conduction-color-primary);
342
348
 
343
- --utrecht-button-icon-gap: var(--conduction-size-xs);
349
+ --utrecht-button-icon-gap: var(--conduction-size-xs);
344
350
  /* --utrecht-button-border-color: <color>; */
345
351
  --utrecht-button-border-width: 0;
346
352
  --utrecht-button-border-radius: 3px;
@@ -366,11 +372,17 @@
366
372
 
367
373
  /* --utrecht-button-text-transform: <length>; */
368
374
 
369
- --utrecht-button-secondary-action-background-color: var(--conduction-color-white);
370
- --utrecht-button-secondary-action-border-color: var(--conduction-color-primary);
375
+ --utrecht-button-secondary-action-background-color: var(
376
+ --conduction-color-white-100
377
+ );
378
+ --utrecht-button-secondary-action-border-color: var(
379
+ --conduction-color-primary
380
+ );
371
381
  --utrecht-button-secondary-action-border-width: 2px;
372
382
  --utrecht-button-secondary-action-color: var(--conduction-color-primary);
373
- --utrecht-button-secondary-action-font-weight: var(--conduction-font-weight-normal);
383
+ --utrecht-button-secondary-action-font-weight: var(
384
+ --conduction-font-weight-normal
385
+ );
374
386
 
375
387
  /* --utrecht-button-focus-background-color: <color>; */
376
388
  /* --utrecht-button-focus-border-color: <color>; */
@@ -379,12 +391,12 @@
379
391
  --utrecht-button-hover-background-color: var(
380
392
  --conduction-color-primary-hover
381
393
  );
382
- --utrecht-button-hover-color: var(--conduction-color-white);
394
+ --utrecht-button-hover-color: var(--conduction-color-white-100);
383
395
  /* --utrecht-button-hover-border-color: unset; */
384
396
  /* --utrecht-button-focus-transform-scale: unset; */
385
397
 
386
398
  /* InputField */
387
- --utrecht-form-input-background-color: var(--conduction-color-white);
399
+ --utrecht-form-input-background-color: var(--conduction-color-white-100);
388
400
  --utrecht-form-input-border-width: var(--conduction-size-4xs);
389
401
  --utrecht-form-input-border-color: var(--conduction-color-grey-48);
390
402
  --utrecht-form-input-border-radius: 3px;
@@ -400,7 +412,7 @@
400
412
  --utrecht-form-input-padding-inline-start: var(--conduction-size-sm);
401
413
 
402
414
  /* InputField-TextField */
403
- --utrecht-textbox-background-color: var(--conduction-color-white);
415
+ --utrecht-textbox-background-color: var(--conduction-color-white-100);
404
416
  --utrecht-textbox-border-width: var(--conduction-size-4xs);
405
417
  /* --utrecht-textbox-border-bottom-width: ; */
406
418
  --utrecht-textbox-border-color: var(--conduction-color-grey-48);
@@ -416,18 +428,18 @@
416
428
  --utrecht-textbox-padding-inline-end: var(--conduction-size-sm);
417
429
  --utrecht-textbox-padding-inline-start: var(--conduction-size-sm);
418
430
 
419
- --utrecht-textbox-placeholder-color: var(--conduction-color-grey);
431
+ --utrecht-textbox-placeholder-color: var(--conduction-color-grey-50);
420
432
 
421
433
  /* conduction select-field */
422
- --skeleton-color-white: var(--conduction-color-white);
434
+ --skeleton-color-white: var(--conduction-color-white-100);
423
435
  --conduction-input-select-border: var(--conduction-size-4xs) solid
424
436
  var(--conduction-color-grey-48);
425
437
  --skeleton-border-radius-md: 6px;
426
438
  --skeleton-size-xs: var(--conduction-size-xs);
427
439
 
428
440
  /* conduction Card */
429
- --utrecht-card-background-color: var(--conduction-color-white);
430
- --utrecht-card-color: var(--xxllnc-color-white-95);
441
+ --utrecht-card-background-color: var(--conduction-color-white-100);
442
+ --utrecht-card-color: var(--conduction-color-black-0);
431
443
  --utrecht-card-border-radius: 16px;
432
444
  --utrecht-card-padding-block-end: var(--conduction-size-md);
433
445
  --utrecht-card-padding-block-start: var(--conduction-size-md);