@refineui/tokens 1.0.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/README.md +80 -0
- package/dist/css-variables.css +672 -0
- package/dist/index.d.mts +1049 -0
- package/dist/index.d.ts +1049 -0
- package/dist/index.js +978 -0
- package/dist/index.mjs +921 -0
- package/dist/refineui-typography.css +111 -0
- package/dist/spec/component-sizes.json +485 -0
- package/dist/spec/focus.json +20 -0
- package/dist/spec/foundation.json +90 -0
- package/dist/spec/index.json +25 -0
- package/dist/spec/motion.json +78 -0
- package/dist/spec/semantic-colors.json +1256 -0
- package/dist/spec/semantic-text.json +173 -0
- package/dist/spec/token-graph.json +1194 -0
- package/dist/spec/trace-index.json +830 -0
- package/dist/spec/trace-v2.json +973 -0
- package/dist/tailwind-theme.css +348 -0
- package/package.json +50 -0
- package/tailwind.css +4 -0
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"textStyles": [
|
|
4
|
+
{
|
|
5
|
+
"name": "displayLg",
|
|
6
|
+
"cssUtility": "refineui-typo-heading-1",
|
|
7
|
+
"references": [
|
|
8
|
+
"foundation.typographys.heading1"
|
|
9
|
+
],
|
|
10
|
+
"status": "stable"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "displayMd",
|
|
14
|
+
"cssUtility": "refineui-typo-heading-2",
|
|
15
|
+
"references": [
|
|
16
|
+
"foundation.typographys.heading2"
|
|
17
|
+
],
|
|
18
|
+
"status": "stable"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "displaySm",
|
|
22
|
+
"cssUtility": "refineui-typo-heading-3",
|
|
23
|
+
"references": [
|
|
24
|
+
"foundation.typographys.heading3"
|
|
25
|
+
],
|
|
26
|
+
"status": "stable"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "headingLg",
|
|
30
|
+
"cssUtility": "refineui-typo-heading-2",
|
|
31
|
+
"references": [
|
|
32
|
+
"foundation.typographys.heading2"
|
|
33
|
+
],
|
|
34
|
+
"status": "stable"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "headingMd",
|
|
38
|
+
"cssUtility": "refineui-typo-heading-3",
|
|
39
|
+
"references": [
|
|
40
|
+
"foundation.typographys.heading3"
|
|
41
|
+
],
|
|
42
|
+
"status": "stable"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "headingSm",
|
|
46
|
+
"cssUtility": "refineui-typo-heading-4",
|
|
47
|
+
"references": [
|
|
48
|
+
"foundation.typographys.heading4"
|
|
49
|
+
],
|
|
50
|
+
"status": "stable"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "titleLg",
|
|
54
|
+
"cssUtility": "refineui-typo-title-1",
|
|
55
|
+
"references": [
|
|
56
|
+
"foundation.typographys.title1"
|
|
57
|
+
],
|
|
58
|
+
"status": "stable"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "titleMd",
|
|
62
|
+
"cssUtility": "refineui-typo-title-2",
|
|
63
|
+
"references": [
|
|
64
|
+
"foundation.typographys.title2"
|
|
65
|
+
],
|
|
66
|
+
"status": "stable"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "titleSm",
|
|
70
|
+
"cssUtility": "refineui-typo-title-3",
|
|
71
|
+
"references": [
|
|
72
|
+
"foundation.typographys.title3"
|
|
73
|
+
],
|
|
74
|
+
"status": "stable"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "subtitleLg",
|
|
78
|
+
"cssUtility": "refineui-typo-sub-title-1",
|
|
79
|
+
"references": [
|
|
80
|
+
"foundation.typographys.subTitle1"
|
|
81
|
+
],
|
|
82
|
+
"status": "stable"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "subtitleMd",
|
|
86
|
+
"cssUtility": "refineui-typo-sub-title-2",
|
|
87
|
+
"references": [
|
|
88
|
+
"foundation.typographys.subTitle2"
|
|
89
|
+
],
|
|
90
|
+
"status": "stable"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "bodyLg",
|
|
94
|
+
"cssUtility": "refineui-typo-body-1",
|
|
95
|
+
"references": [
|
|
96
|
+
"foundation.typographys.body1"
|
|
97
|
+
],
|
|
98
|
+
"status": "stable"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "bodyMd",
|
|
102
|
+
"cssUtility": "refineui-typo-body-2",
|
|
103
|
+
"references": [
|
|
104
|
+
"foundation.typographys.body2"
|
|
105
|
+
],
|
|
106
|
+
"status": "stable"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "bodySm",
|
|
110
|
+
"cssUtility": "refineui-typo-body-3",
|
|
111
|
+
"references": [
|
|
112
|
+
"foundation.typographys.body3"
|
|
113
|
+
],
|
|
114
|
+
"status": "stable"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "bodyXs",
|
|
118
|
+
"cssUtility": "refineui-typo-body-4",
|
|
119
|
+
"references": [
|
|
120
|
+
"foundation.typographys.body4"
|
|
121
|
+
],
|
|
122
|
+
"status": "stable"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "labelLg",
|
|
126
|
+
"cssUtility": "refineui-typo-body-1",
|
|
127
|
+
"references": [
|
|
128
|
+
"foundation.typographys.body1"
|
|
129
|
+
],
|
|
130
|
+
"status": "stable"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "labelMd",
|
|
134
|
+
"cssUtility": "refineui-typo-body-2",
|
|
135
|
+
"references": [
|
|
136
|
+
"foundation.typographys.body2"
|
|
137
|
+
],
|
|
138
|
+
"status": "stable"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "labelSm",
|
|
142
|
+
"cssUtility": "refineui-typo-caption-1",
|
|
143
|
+
"references": [
|
|
144
|
+
"foundation.typographys.caption1"
|
|
145
|
+
],
|
|
146
|
+
"status": "stable"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "captionLg",
|
|
150
|
+
"cssUtility": "refineui-typo-caption-1",
|
|
151
|
+
"references": [
|
|
152
|
+
"foundation.typographys.caption1"
|
|
153
|
+
],
|
|
154
|
+
"status": "stable"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "captionMd",
|
|
158
|
+
"cssUtility": "refineui-typo-caption-2",
|
|
159
|
+
"references": [
|
|
160
|
+
"foundation.typographys.caption2"
|
|
161
|
+
],
|
|
162
|
+
"status": "stable"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "captionSm",
|
|
166
|
+
"cssUtility": "refineui-typo-caption-3",
|
|
167
|
+
"references": [
|
|
168
|
+
"foundation.typographys.caption3"
|
|
169
|
+
],
|
|
170
|
+
"status": "stable"
|
|
171
|
+
}
|
|
172
|
+
]
|
|
173
|
+
}
|