@planningcenter/tapestry-tokens 0.0.1
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 +0 -0
- package/package.json +27 -0
- package/rollup.config.mjs +12 -0
- package/src/componentNames.js +10 -0
- package/src/css/components/banner.css +24 -0
- package/src/css/tokens-alias-deprecated.css +42 -0
- package/src/css/tokens-alias.css +334 -0
- package/src/css/tokens.css +2 -0
- package/src/index.ts +11 -0
- package/src/json/alias.json +1628 -0
- package/src/json/components.json +84 -0
- package/src/json/primitives.json +946 -0
- package/src/style-dictionary.build.js +367 -0
- package/src/style-dictionary.config.js +67 -0
- package/src/ts/tokens.ts +371 -0
- package/tsconfig.build.json +11 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"font-size": {
|
|
4
|
+
"$type": "number",
|
|
5
|
+
"$value": "{numeric.font-size.md}"
|
|
6
|
+
},
|
|
7
|
+
"font-color": {
|
|
8
|
+
"$type": "color",
|
|
9
|
+
"$value": "{color.text-color.default.primary}"
|
|
10
|
+
},
|
|
11
|
+
"background-color": {
|
|
12
|
+
"$type": "color",
|
|
13
|
+
"$value": "{color.fill-color.status.neutral.ghost}"
|
|
14
|
+
},
|
|
15
|
+
"spacing": {
|
|
16
|
+
"$type": "number",
|
|
17
|
+
"$value": "{numeric.spacing.2}"
|
|
18
|
+
},
|
|
19
|
+
"border-radius": {
|
|
20
|
+
"$type": "number",
|
|
21
|
+
"$value": "{numeric.border.radius.md}"
|
|
22
|
+
},
|
|
23
|
+
"title-font-color": {
|
|
24
|
+
"$type": "color",
|
|
25
|
+
"$value": "{color.text-color.default.headline}"
|
|
26
|
+
},
|
|
27
|
+
"title-font-size": {
|
|
28
|
+
"$type": "number",
|
|
29
|
+
"$value": "{numeric.font-size.md}"
|
|
30
|
+
},
|
|
31
|
+
"title-font-weight": {
|
|
32
|
+
"$type": "number",
|
|
33
|
+
"$value": "{numeric.font-weight.semi-bold}"
|
|
34
|
+
},
|
|
35
|
+
"icon-fill-color": {
|
|
36
|
+
"$type": "color",
|
|
37
|
+
"$value": "#00000000"
|
|
38
|
+
},
|
|
39
|
+
"info": {
|
|
40
|
+
"background-color": {
|
|
41
|
+
"$type": "color",
|
|
42
|
+
"$value": "{color.fill-color.status.info.ghost}"
|
|
43
|
+
},
|
|
44
|
+
"icon-fill-color": {
|
|
45
|
+
"$type": "color",
|
|
46
|
+
"$value": "{color.icon-color.status.info.primary}"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"warning": {
|
|
50
|
+
"background-color": {
|
|
51
|
+
"$type": "color",
|
|
52
|
+
"$value": "{color.fill-color.status.warning.ghost}"
|
|
53
|
+
},
|
|
54
|
+
"icon-fill-color": {
|
|
55
|
+
"$type": "color",
|
|
56
|
+
"$value": "{color.icon-color.status.warning.primary}"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"error": {
|
|
60
|
+
"background-color": {
|
|
61
|
+
"$type": "color",
|
|
62
|
+
"$value": "{color.fill-color.status.error.ghost}"
|
|
63
|
+
},
|
|
64
|
+
"icon-fill-color": {
|
|
65
|
+
"$type": "color",
|
|
66
|
+
"$value": "{color.icon-color.status.error.primary}"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"success": {
|
|
70
|
+
"background-color": {
|
|
71
|
+
"$type": "color",
|
|
72
|
+
"$value": "{color.fill-color.status.success.ghost}"
|
|
73
|
+
},
|
|
74
|
+
"icon-fill-color": {
|
|
75
|
+
"$type": "color",
|
|
76
|
+
"$value": "{color.icon-color.status.success.primary}"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"link-font-color-hover": {
|
|
80
|
+
"$type": "color",
|
|
81
|
+
"$value": "{color.text-color.default.headline}"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|