@utrecht/design-tokens 3.0.0 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/_mixin-theme.scss +12 -0
  3. package/dist/_mixin.scss +12 -0
  4. package/dist/_variables.scss +12 -0
  5. package/dist/dark/_mixin-theme.scss +12 -0
  6. package/dist/dark/_mixin.scss +12 -0
  7. package/dist/dark/_variables.scss +12 -0
  8. package/dist/dark/index.cjs +12 -0
  9. package/dist/dark/index.css +12 -0
  10. package/dist/dark/index.d.ts +12 -0
  11. package/dist/dark/index.flat.json +12 -0
  12. package/dist/dark/index.json +396 -0
  13. package/dist/dark/index.mjs +12 -0
  14. package/dist/dark/index.tokens.json +77 -0
  15. package/dist/dark/list.json +396 -0
  16. package/dist/dark/list.mjs +396 -0
  17. package/dist/dark/property.css +12 -0
  18. package/dist/dark/root.css +12 -0
  19. package/dist/dark/theme-prince-xml.css +12 -0
  20. package/dist/dark/theme.css +12 -0
  21. package/dist/dark/tokens.cjs +461 -0
  22. package/dist/dark/tokens.d.ts +52 -0
  23. package/dist/dark/tokens.json +461 -0
  24. package/dist/dark/variables.cjs +12 -0
  25. package/dist/dark/variables.css +12 -0
  26. package/dist/dark/variables.d.ts +12 -0
  27. package/dist/dark/variables.json +12 -0
  28. package/dist/dark/variables.less +12 -0
  29. package/dist/dark/variables.mjs +12 -0
  30. package/dist/index.cjs +12 -0
  31. package/dist/index.css +24 -0
  32. package/dist/index.d.ts +12 -0
  33. package/dist/index.flat.json +12 -0
  34. package/dist/index.json +396 -0
  35. package/dist/index.mjs +12 -0
  36. package/dist/index.tokens.json +77 -0
  37. package/dist/list.json +396 -0
  38. package/dist/list.mjs +396 -0
  39. package/dist/property.css +12 -0
  40. package/dist/root.css +12 -0
  41. package/dist/theme-prince-xml.css +12 -0
  42. package/dist/theme.css +12 -0
  43. package/dist/tokens.cjs +461 -0
  44. package/dist/tokens.d.ts +52 -0
  45. package/dist/tokens.json +461 -0
  46. package/dist/variables.cjs +12 -0
  47. package/dist/variables.css +12 -0
  48. package/dist/variables.d.ts +12 -0
  49. package/dist/variables.json +12 -0
  50. package/dist/variables.less +12 -0
  51. package/dist/variables.mjs +12 -0
  52. package/package.json +1 -1
  53. package/src/component/utrecht/breadcrumb-nav.tokens.json +5 -0
  54. package/src/component/utrecht/card.tokens.json +54 -0
@@ -0,0 +1,54 @@
1
+ {
2
+ "utrecht": {
3
+ "card": {
4
+ "background-color": {
5
+ "value": "{utrecht.color.blue.90}"
6
+ },
7
+ "color": {
8
+ "value": "{utrecht.color.black}"
9
+ },
10
+ "border-radius": {},
11
+ "box-shadow": {},
12
+ "inline-size": {},
13
+ "max-inline-size": {},
14
+ "row-gap": {},
15
+ "heading": {
16
+ "color": {
17
+ "value": "{utrecht.color.blue.35}"
18
+ },
19
+ "padding-inline-start": {
20
+ "value": "{utrecht.space.inline.md}"
21
+ },
22
+ "padding-inline-end": {
23
+ "value": "{utrecht.space.inline.md}"
24
+ }
25
+ },
26
+ "link": {
27
+ "hover": {
28
+ "text-decoration-thickness": {
29
+ "value": "3px"
30
+ }
31
+ }
32
+ },
33
+ "content": {
34
+ "row-gap": {
35
+ "value": "{utrecht.space.row.md}"
36
+ },
37
+ "padding-block-start": {
38
+ "value": "{utrecht.space.block.md}"
39
+ },
40
+ "padding-block-end": {
41
+ "value": "{utrecht.space.block.md}"
42
+ }
43
+ },
44
+ "body": {
45
+ "padding-inline-start": {
46
+ "value": "{utrecht.space.inline.md}"
47
+ },
48
+ "padding-inline-end": {
49
+ "value": "{utrecht.space.inline.md}"
50
+ }
51
+ }
52
+ }
53
+ }
54
+ }