@conduction/theme 1.0.7 → 1.0.9

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/README.md CHANGED
@@ -5,6 +5,8 @@ Conduction's design tokens theme
5
5
 
6
6
  - **Version 1**
7
7
 
8
+ - 1.0.9: Added buttonIconGap token to xxllnc theme.
9
+ - 1.0.8: Added formField, cards and conduction overwrite tokens to xxllnc theme.
8
10
  - 1.0.7: Added button tokens to all themes.
9
11
  - 1.0.6: Added xxllnc theme.
10
12
  - 1.0.5: Added page-max-inline size to Conduction theme.
@@ -56,21 +56,28 @@
56
56
  --xxllnc-color-alert-info: var(--xxllnc-color-black);
57
57
  --xxllnc-color-alert-info-background: var(--xxllnc-color-grey);
58
58
 
59
- --xxllnc-color-white: #ffffff;
60
- --xxllnc-color-lightgrey: #f5f5f5;
61
59
  --xxllnc-color-grey: #eaeaea;
62
60
  --xxllnc-color-grey-95: #e5e5e5;
63
61
  --xxllnc-color-grey-95-hover: #e5e5e5cc;
62
+ --xxllnc-color-grey-43: #6d6d6d;
63
+
64
+ --xxllnc-color-lightgrey: #f5f5f5;
65
+
66
+ --xxllnc-color-white: #ffffff;
67
+ --xxllnc-color-white-95: #f1f1f1;
68
+ --xxllnc-color-white-100: #ffffff00;
69
+
64
70
  --xxllnc-color-black: #28282c;
65
71
  --xxllnc-color-black-15: #2b2b2b;
66
72
  --xxllnc-color-black-15-hover: #2b2b2bcc;
73
+ --xxllnc-color-black-21: #333338;
74
+ --xxllnc-color-black-38: #00000038;
67
75
 
68
76
  /* Typography */
69
77
  --xxllnc-typography-sans-serif-font-family: neue-haas-grotesk-text, sans-serif;
70
- --xxllnc-typography-header-font-family: neue-haas-grotesk-text, sans-serif,
71
- sans-serif;
78
+ --xxllnc-typography-header-font-family: neue-haas-grotesk-text, sans-serif;
72
79
  --xxllnc-typography-code-font-family: Monospace, "Lucida Console";
73
- --xxllnc-typography-button-font-family:"Inter", sans-serif;
80
+ --xxllnc-typography-button-font-family: "Inter", sans-serif;
74
81
 
75
82
  /*
76
83
  *
@@ -324,8 +331,9 @@
324
331
  --utrecht-button-color: var(--xxllnc-color-grey-95);
325
332
  --utrecht-button-background-color: var(--xxllnc-color-black-15);
326
333
 
327
- /* --utrecht-button-border-color: <color>; */
328
- --utrecht-button-border-width: 0;
334
+ --utrecht-button-icon-gap: var(--xxllnc-size-xs);
335
+ /* --utrecht-button-border-color: <color>; */
336
+ --utrecht-button-border-width: 0;
329
337
  --utrecht-button-border-radius: var(--xxllnc-size-xs);
330
338
  /* --utrecht-button-border-bottom-width: <length>; */
331
339
 
@@ -347,13 +355,63 @@
347
355
 
348
356
  /* --utrecht-button-text-transform: <length>; */
349
357
 
350
- /* --utrecht-button-focus-background-color: <color>; */
351
- /* --utrecht-button-focus-border-color: <color>; */
352
- /* --utrecht-button-focus-color: <color>; */
358
+ /* --utrecht-button-focus-background-color: <color>; */
359
+ /* --utrecht-button-focus-border-color: <color>; */
360
+ /* --utrecht-button-focus-color: <color>; */
353
361
 
354
362
  --utrecht-button-hover-background-color: var(--xxllnc-color-black-15-hover);
355
363
  --utrecht-button-hover-color: var(--xxllnc-color-grey-95-hover);
356
364
  /* --utrecht-button-hover-border-color: unset; */
357
365
  /* --utrecht-button-focus-transform-scale: unset; */
358
-
366
+
367
+ /* InputField */
368
+ --utrecht-form-input-background-color: var(--xxllnc-color-white-100);
369
+ --utrecht-form-input-border-width: var(--xxllnc-size-4xs);
370
+ --utrecht-form-input-border-color: var(--xxllnc-color-black-38);
371
+ --utrecht-form-input-border-radius: 6px;
372
+ --utrecht-form-input-color: var(--xxllnc-color-grey-43);
373
+ --utrecht-form-input-font-family: var(
374
+ --xxllnc-typography-sans-serif-font-family
375
+ );
376
+ --utrecht-form-input-font-size: 15px;
377
+ /* --utrecht-form-input-max-inline-size: ; */
378
+ --utrecht-form-input-padding-block-end: var(--xxllnc-size-xs);
379
+ --utrecht-form-input-padding-block-start: var(--xxllnc-size-xs);
380
+ --utrecht-form-input-padding-inline-end: var(--xxllnc-size-sm);
381
+ --utrecht-form-input-padding-inline-start: var(--xxllnc-size-sm);
382
+
383
+ /* InputField-TextField */
384
+ --utrecht-textbox-background-color: var(--xxllnc-color-white-100);
385
+ --utrecht-textbox-border-width: var(--xxllnc-size-4xs);
386
+ /* --utrecht-textbox-border-bottom-width: ; */
387
+ --utrecht-textbox-border-color: var(--xxllnc-color-black-38);
388
+ --utrecht-textbox-border-radius: 6px;
389
+ --utrecht-textbox-color: var(--xxllnc-color-grey-43);
390
+ --utrecht-textbox-font-family: var(
391
+ --xxllnc-typography-sans-serif-font-family
392
+ );
393
+ --utrecht-textbox-font-size: 15px;
394
+ /* --utrecht-textbox-max-inline-size: ; */
395
+ --utrecht-textbox-padding-block-end: var(--xxllnc-size-xs);
396
+ --utrecht-textbox-padding-block-start: var(--xxllnc-size-xs);
397
+ --utrecht-textbox-padding-inline-end: var(--xxllnc-size-sm);
398
+ --utrecht-textbox-padding-inline-start: var(--xxllnc-size-sm);
399
+
400
+ --utrecht-textbox-placeholder-color: var(--xxllnc-color-grey-43);
401
+
402
+ /* conduction select-field */
403
+ --skeleton-color-white: var(--xxllnc-color-white-100);
404
+ --conduction-input-select-border: var(--xxllnc-size-4xs) solid
405
+ var(--xxllnc-color-black-38);
406
+ --skeleton-border-radius-md: 6px;
407
+ --skeleton-size-xs: var(--xxllnc-size-xs);
408
+
409
+ /* conduction Card */
410
+ --utrecht-card-background-color: var(--xxllnc-color-black-21);
411
+ --utrecht-card-color: var(--xxllnc-color-white-95);
412
+ --utrehct-card-border-radius: 16px;
413
+ --utrecht-card-padding-block-end: var(--xxllnc-size-md);
414
+ --utrecht-card-padding-block-start: var(--xxllnc-size-md);
415
+ --utrecht-card-padding-inline-end: var(--xxllnc-size-md);
416
+ --utrecht-card-padding-inline-start: var(--xxllnc-size-md);
359
417
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/theme",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Conduction's design tokens theme",
5
5
  "main": "index.js",
6
6
  "repository": {