@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.
- package/CHANGELOG.md +14 -0
- package/dist/_mixin-theme.scss +12 -0
- package/dist/_mixin.scss +12 -0
- package/dist/_variables.scss +12 -0
- package/dist/dark/_mixin-theme.scss +12 -0
- package/dist/dark/_mixin.scss +12 -0
- package/dist/dark/_variables.scss +12 -0
- package/dist/dark/index.cjs +12 -0
- package/dist/dark/index.css +12 -0
- package/dist/dark/index.d.ts +12 -0
- package/dist/dark/index.flat.json +12 -0
- package/dist/dark/index.json +396 -0
- package/dist/dark/index.mjs +12 -0
- package/dist/dark/index.tokens.json +77 -0
- package/dist/dark/list.json +396 -0
- package/dist/dark/list.mjs +396 -0
- package/dist/dark/property.css +12 -0
- package/dist/dark/root.css +12 -0
- package/dist/dark/theme-prince-xml.css +12 -0
- package/dist/dark/theme.css +12 -0
- package/dist/dark/tokens.cjs +461 -0
- package/dist/dark/tokens.d.ts +52 -0
- package/dist/dark/tokens.json +461 -0
- package/dist/dark/variables.cjs +12 -0
- package/dist/dark/variables.css +12 -0
- package/dist/dark/variables.d.ts +12 -0
- package/dist/dark/variables.json +12 -0
- package/dist/dark/variables.less +12 -0
- package/dist/dark/variables.mjs +12 -0
- package/dist/index.cjs +12 -0
- package/dist/index.css +24 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.flat.json +12 -0
- package/dist/index.json +396 -0
- package/dist/index.mjs +12 -0
- package/dist/index.tokens.json +77 -0
- package/dist/list.json +396 -0
- package/dist/list.mjs +396 -0
- package/dist/property.css +12 -0
- package/dist/root.css +12 -0
- package/dist/theme-prince-xml.css +12 -0
- package/dist/theme.css +12 -0
- package/dist/tokens.cjs +461 -0
- package/dist/tokens.d.ts +52 -0
- package/dist/tokens.json +461 -0
- package/dist/variables.cjs +12 -0
- package/dist/variables.css +12 -0
- package/dist/variables.d.ts +12 -0
- package/dist/variables.json +12 -0
- package/dist/variables.less +12 -0
- package/dist/variables.mjs +12 -0
- package/package.json +1 -1
- package/src/component/utrecht/breadcrumb-nav.tokens.json +5 -0
- 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
|
+
}
|