@equal-experts/kuat-vue 0.1.4 → 0.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/README.md +461 -0
- package/dist/components/ui/button/Button.vue.d.ts +43 -0
- package/dist/components/ui/button/index.d.ts +8 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2359 -0
- package/dist/lib/utils.d.ts +3 -0
- package/dist/style.css +1 -0
- package/package.json +51 -22
- package/dist/index.mjs +0 -390
- package/dist/index.umd.js +0 -1
- package/index.html +0 -12
- package/playground/App.vue +0 -31
- package/playground/index.html +0 -12
- package/playground/main.ts +0 -5
- package/src/components/Button/Button.vue +0 -49
- package/src/components/index.ts +0 -5
- package/src/index.ts +0 -5
- package/src/playground/App.vue +0 -15
- package/src/playground/main.ts +0 -5
- package/src/shims-vue.d.ts +0 -5
- package/src/types/equal-experts__kuat-core.d.ts +0 -1
- package/tsconfig.json +0 -28
- package/tsconfig.node.json +0 -10
- package/vite.config.ts +0 -26
package/dist/index.mjs
DELETED
|
@@ -1,390 +0,0 @@
|
|
|
1
|
-
import { defineComponent as Z, openBlock as G, createElementBlock as J, normalizeClass as X, renderSlot as Y } from "vue";
|
|
2
|
-
const $ = ["disabled"], V = /* @__PURE__ */ Z({
|
|
3
|
-
name: "Button",
|
|
4
|
-
__name: "Button",
|
|
5
|
-
props: {
|
|
6
|
-
variant: { default: "primary" },
|
|
7
|
-
size: { default: "md" },
|
|
8
|
-
disabled: { type: Boolean, default: !1 }
|
|
9
|
-
},
|
|
10
|
-
setup(e) {
|
|
11
|
-
const a = {
|
|
12
|
-
primary: "bg-brand-primary text-white hover:bg-brand-primary/90",
|
|
13
|
-
secondary: "bg-brand-secondary text-white hover:bg-brand-secondary/90",
|
|
14
|
-
outline: "border border-brand-primary text-brand-primary hover:bg-brand-primary/10"
|
|
15
|
-
}, t = {
|
|
16
|
-
sm: "px-3 py-1.5 text-sm",
|
|
17
|
-
md: "px-4 py-2 text-base",
|
|
18
|
-
lg: "px-6 py-3 text-lg"
|
|
19
|
-
};
|
|
20
|
-
return (n, i) => (G(), J("button", {
|
|
21
|
-
class: X([
|
|
22
|
-
"rounded-md transition-all duration-200 ease-in-out",
|
|
23
|
-
a[n.variant],
|
|
24
|
-
t[n.size],
|
|
25
|
-
n.disabled ? "opacity-50 cursor-not-allowed" : "cursor-pointer"
|
|
26
|
-
]),
|
|
27
|
-
disabled: n.disabled
|
|
28
|
-
}, [
|
|
29
|
-
Y(n.$slots, "default", {}, void 0, !0)
|
|
30
|
-
], 10, $));
|
|
31
|
-
}
|
|
32
|
-
}), K = (e, a) => {
|
|
33
|
-
const t = e.__vccOpts || e;
|
|
34
|
-
for (const [n, i] of a)
|
|
35
|
-
t[n] = i;
|
|
36
|
-
return t;
|
|
37
|
-
}, ut = /* @__PURE__ */ K(V, [["__scopeId", "data-v-ce590d2a"]]);
|
|
38
|
-
var P = typeof global == "object" && global && global.Object === Object && global, q = typeof self == "object" && self && self.Object === Object && self, Q = P || q || Function("return this")(), g = Q.Symbol, F = Object.prototype, ee = F.hasOwnProperty, te = F.toString, f = g ? g.toStringTag : void 0;
|
|
39
|
-
function ae(e) {
|
|
40
|
-
var a = ee.call(e, f), t = e[f];
|
|
41
|
-
try {
|
|
42
|
-
e[f] = void 0;
|
|
43
|
-
var n = !0;
|
|
44
|
-
} catch {
|
|
45
|
-
}
|
|
46
|
-
var i = te.call(e);
|
|
47
|
-
return n && (a ? e[f] = t : delete e[f]), i;
|
|
48
|
-
}
|
|
49
|
-
var ne = Object.prototype, ie = ne.toString;
|
|
50
|
-
function oe(e) {
|
|
51
|
-
return ie.call(e);
|
|
52
|
-
}
|
|
53
|
-
var pe = "[object Null]", re = "[object Undefined]", d = g ? g.toStringTag : void 0;
|
|
54
|
-
function ge(e) {
|
|
55
|
-
return e == null ? e === void 0 ? re : pe : d && d in Object(e) ? ae(e) : oe(e);
|
|
56
|
-
}
|
|
57
|
-
function le(e) {
|
|
58
|
-
return e != null && typeof e == "object";
|
|
59
|
-
}
|
|
60
|
-
var he = "[object Symbol]";
|
|
61
|
-
function fe(e) {
|
|
62
|
-
return typeof e == "symbol" || le(e) && ge(e) == he;
|
|
63
|
-
}
|
|
64
|
-
function ce(e, a) {
|
|
65
|
-
for (var t = -1, n = e == null ? 0 : e.length, i = Array(n); ++t < n; )
|
|
66
|
-
i[t] = a(e[t], t, e);
|
|
67
|
-
return i;
|
|
68
|
-
}
|
|
69
|
-
var se = Array.isArray, Se = 1 / 0, x = g ? g.prototype : void 0, u = x ? x.toString : void 0;
|
|
70
|
-
function I(e) {
|
|
71
|
-
if (typeof e == "string")
|
|
72
|
-
return e;
|
|
73
|
-
if (se(e))
|
|
74
|
-
return ce(e, I) + "";
|
|
75
|
-
if (fe(e))
|
|
76
|
-
return u ? u.call(e) : "";
|
|
77
|
-
var a = e + "";
|
|
78
|
-
return a == "0" && 1 / e == -Se ? "-0" : a;
|
|
79
|
-
}
|
|
80
|
-
function b(e) {
|
|
81
|
-
return e == null ? "" : I(e);
|
|
82
|
-
}
|
|
83
|
-
function ye(e, a, t, n) {
|
|
84
|
-
for (var i = -1, p = e == null ? 0 : e.length; ++i < p; )
|
|
85
|
-
t = a(t, e[i], i, e);
|
|
86
|
-
return t;
|
|
87
|
-
}
|
|
88
|
-
function de(e) {
|
|
89
|
-
return function(a) {
|
|
90
|
-
return e == null ? void 0 : e[a];
|
|
91
|
-
};
|
|
92
|
-
}
|
|
93
|
-
var xe = {
|
|
94
|
-
// Latin-1 Supplement block.
|
|
95
|
-
À: "A",
|
|
96
|
-
Á: "A",
|
|
97
|
-
Â: "A",
|
|
98
|
-
Ã: "A",
|
|
99
|
-
Ä: "A",
|
|
100
|
-
Å: "A",
|
|
101
|
-
à: "a",
|
|
102
|
-
á: "a",
|
|
103
|
-
â: "a",
|
|
104
|
-
ã: "a",
|
|
105
|
-
ä: "a",
|
|
106
|
-
å: "a",
|
|
107
|
-
Ç: "C",
|
|
108
|
-
ç: "c",
|
|
109
|
-
Ð: "D",
|
|
110
|
-
ð: "d",
|
|
111
|
-
È: "E",
|
|
112
|
-
É: "E",
|
|
113
|
-
Ê: "E",
|
|
114
|
-
Ë: "E",
|
|
115
|
-
è: "e",
|
|
116
|
-
é: "e",
|
|
117
|
-
ê: "e",
|
|
118
|
-
ë: "e",
|
|
119
|
-
Ì: "I",
|
|
120
|
-
Í: "I",
|
|
121
|
-
Î: "I",
|
|
122
|
-
Ï: "I",
|
|
123
|
-
ì: "i",
|
|
124
|
-
í: "i",
|
|
125
|
-
î: "i",
|
|
126
|
-
ï: "i",
|
|
127
|
-
Ñ: "N",
|
|
128
|
-
ñ: "n",
|
|
129
|
-
Ò: "O",
|
|
130
|
-
Ó: "O",
|
|
131
|
-
Ô: "O",
|
|
132
|
-
Õ: "O",
|
|
133
|
-
Ö: "O",
|
|
134
|
-
Ø: "O",
|
|
135
|
-
ò: "o",
|
|
136
|
-
ó: "o",
|
|
137
|
-
ô: "o",
|
|
138
|
-
õ: "o",
|
|
139
|
-
ö: "o",
|
|
140
|
-
ø: "o",
|
|
141
|
-
Ù: "U",
|
|
142
|
-
Ú: "U",
|
|
143
|
-
Û: "U",
|
|
144
|
-
Ü: "U",
|
|
145
|
-
ù: "u",
|
|
146
|
-
ú: "u",
|
|
147
|
-
û: "u",
|
|
148
|
-
ü: "u",
|
|
149
|
-
Ý: "Y",
|
|
150
|
-
ý: "y",
|
|
151
|
-
ÿ: "y",
|
|
152
|
-
Æ: "Ae",
|
|
153
|
-
æ: "ae",
|
|
154
|
-
Þ: "Th",
|
|
155
|
-
þ: "th",
|
|
156
|
-
ß: "ss",
|
|
157
|
-
// Latin Extended-A block.
|
|
158
|
-
Ā: "A",
|
|
159
|
-
Ă: "A",
|
|
160
|
-
Ą: "A",
|
|
161
|
-
ā: "a",
|
|
162
|
-
ă: "a",
|
|
163
|
-
ą: "a",
|
|
164
|
-
Ć: "C",
|
|
165
|
-
Ĉ: "C",
|
|
166
|
-
Ċ: "C",
|
|
167
|
-
Č: "C",
|
|
168
|
-
ć: "c",
|
|
169
|
-
ĉ: "c",
|
|
170
|
-
ċ: "c",
|
|
171
|
-
č: "c",
|
|
172
|
-
Ď: "D",
|
|
173
|
-
Đ: "D",
|
|
174
|
-
ď: "d",
|
|
175
|
-
đ: "d",
|
|
176
|
-
Ē: "E",
|
|
177
|
-
Ĕ: "E",
|
|
178
|
-
Ė: "E",
|
|
179
|
-
Ę: "E",
|
|
180
|
-
Ě: "E",
|
|
181
|
-
ē: "e",
|
|
182
|
-
ĕ: "e",
|
|
183
|
-
ė: "e",
|
|
184
|
-
ę: "e",
|
|
185
|
-
ě: "e",
|
|
186
|
-
Ĝ: "G",
|
|
187
|
-
Ğ: "G",
|
|
188
|
-
Ġ: "G",
|
|
189
|
-
Ģ: "G",
|
|
190
|
-
ĝ: "g",
|
|
191
|
-
ğ: "g",
|
|
192
|
-
ġ: "g",
|
|
193
|
-
ģ: "g",
|
|
194
|
-
Ĥ: "H",
|
|
195
|
-
Ħ: "H",
|
|
196
|
-
ĥ: "h",
|
|
197
|
-
ħ: "h",
|
|
198
|
-
Ĩ: "I",
|
|
199
|
-
Ī: "I",
|
|
200
|
-
Ĭ: "I",
|
|
201
|
-
Į: "I",
|
|
202
|
-
İ: "I",
|
|
203
|
-
ĩ: "i",
|
|
204
|
-
ī: "i",
|
|
205
|
-
ĭ: "i",
|
|
206
|
-
į: "i",
|
|
207
|
-
ı: "i",
|
|
208
|
-
Ĵ: "J",
|
|
209
|
-
ĵ: "j",
|
|
210
|
-
Ķ: "K",
|
|
211
|
-
ķ: "k",
|
|
212
|
-
ĸ: "k",
|
|
213
|
-
Ĺ: "L",
|
|
214
|
-
Ļ: "L",
|
|
215
|
-
Ľ: "L",
|
|
216
|
-
Ŀ: "L",
|
|
217
|
-
Ł: "L",
|
|
218
|
-
ĺ: "l",
|
|
219
|
-
ļ: "l",
|
|
220
|
-
ľ: "l",
|
|
221
|
-
ŀ: "l",
|
|
222
|
-
ł: "l",
|
|
223
|
-
Ń: "N",
|
|
224
|
-
Ņ: "N",
|
|
225
|
-
Ň: "N",
|
|
226
|
-
Ŋ: "N",
|
|
227
|
-
ń: "n",
|
|
228
|
-
ņ: "n",
|
|
229
|
-
ň: "n",
|
|
230
|
-
ŋ: "n",
|
|
231
|
-
Ō: "O",
|
|
232
|
-
Ŏ: "O",
|
|
233
|
-
Ő: "O",
|
|
234
|
-
ō: "o",
|
|
235
|
-
ŏ: "o",
|
|
236
|
-
ő: "o",
|
|
237
|
-
Ŕ: "R",
|
|
238
|
-
Ŗ: "R",
|
|
239
|
-
Ř: "R",
|
|
240
|
-
ŕ: "r",
|
|
241
|
-
ŗ: "r",
|
|
242
|
-
ř: "r",
|
|
243
|
-
Ś: "S",
|
|
244
|
-
Ŝ: "S",
|
|
245
|
-
Ş: "S",
|
|
246
|
-
Š: "S",
|
|
247
|
-
ś: "s",
|
|
248
|
-
ŝ: "s",
|
|
249
|
-
ş: "s",
|
|
250
|
-
š: "s",
|
|
251
|
-
Ţ: "T",
|
|
252
|
-
Ť: "T",
|
|
253
|
-
Ŧ: "T",
|
|
254
|
-
ţ: "t",
|
|
255
|
-
ť: "t",
|
|
256
|
-
ŧ: "t",
|
|
257
|
-
Ũ: "U",
|
|
258
|
-
Ū: "U",
|
|
259
|
-
Ŭ: "U",
|
|
260
|
-
Ů: "U",
|
|
261
|
-
Ű: "U",
|
|
262
|
-
Ų: "U",
|
|
263
|
-
ũ: "u",
|
|
264
|
-
ū: "u",
|
|
265
|
-
ŭ: "u",
|
|
266
|
-
ů: "u",
|
|
267
|
-
ű: "u",
|
|
268
|
-
ų: "u",
|
|
269
|
-
Ŵ: "W",
|
|
270
|
-
ŵ: "w",
|
|
271
|
-
Ŷ: "Y",
|
|
272
|
-
ŷ: "y",
|
|
273
|
-
Ÿ: "Y",
|
|
274
|
-
Ź: "Z",
|
|
275
|
-
Ż: "Z",
|
|
276
|
-
Ž: "Z",
|
|
277
|
-
ź: "z",
|
|
278
|
-
ż: "z",
|
|
279
|
-
ž: "z",
|
|
280
|
-
IJ: "IJ",
|
|
281
|
-
ij: "ij",
|
|
282
|
-
Œ: "Oe",
|
|
283
|
-
œ: "oe",
|
|
284
|
-
ʼn: "'n",
|
|
285
|
-
ſ: "s"
|
|
286
|
-
}, ue = de(xe), me = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g, ve = "\\u0300-\\u036f", ze = "\\ufe20-\\ufe2f", Ce = "\\u20d0-\\u20ff", We = ve + ze + Ce, He = "[" + We + "]", De = RegExp(He, "g");
|
|
287
|
-
function Fe(e) {
|
|
288
|
-
return e = b(e), e && e.replace(me, ue).replace(De, "");
|
|
289
|
-
}
|
|
290
|
-
var Ie = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
|
|
291
|
-
function be(e) {
|
|
292
|
-
return e.match(Ie) || [];
|
|
293
|
-
}
|
|
294
|
-
var Ne = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;
|
|
295
|
-
function Le(e) {
|
|
296
|
-
return Ne.test(e);
|
|
297
|
-
}
|
|
298
|
-
var N = "\\ud800-\\udfff", Ee = "\\u0300-\\u036f", Oe = "\\ufe20-\\ufe2f", je = "\\u20d0-\\u20ff", Be = Ee + Oe + je, L = "\\u2700-\\u27bf", E = "a-z\\xdf-\\xf6\\xf8-\\xff", Ae = "\\xac\\xb1\\xd7\\xf7", Re = "\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf", Me = "\\u2000-\\u206f", Te = " \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000", O = "A-Z\\xc0-\\xd6\\xd8-\\xde", ke = "\\ufe0e\\ufe0f", j = Ae + Re + Me + Te, B = "['’]", m = "[" + j + "]", we = "[" + Be + "]", A = "\\d+", Ue = "[" + L + "]", R = "[" + E + "]", M = "[^" + N + j + A + L + E + O + "]", _e = "\\ud83c[\\udffb-\\udfff]", Ze = "(?:" + we + "|" + _e + ")", Ge = "[^" + N + "]", T = "(?:\\ud83c[\\udde6-\\uddff]){2}", k = "[\\ud800-\\udbff][\\udc00-\\udfff]", r = "[" + O + "]", Je = "\\u200d", v = "(?:" + R + "|" + M + ")", Xe = "(?:" + r + "|" + M + ")", z = "(?:" + B + "(?:d|ll|m|re|s|t|ve))?", C = "(?:" + B + "(?:D|LL|M|RE|S|T|VE))?", w = Ze + "?", U = "[" + ke + "]?", Ye = "(?:" + Je + "(?:" + [Ge, T, k].join("|") + ")" + U + w + ")*", $e = "\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])", Ve = "\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])", Ke = U + w + Ye, Pe = "(?:" + [Ue, T, k].join("|") + ")" + Ke, qe = RegExp([
|
|
299
|
-
r + "?" + R + "+" + z + "(?=" + [m, r, "$"].join("|") + ")",
|
|
300
|
-
Xe + "+" + C + "(?=" + [m, r + v, "$"].join("|") + ")",
|
|
301
|
-
r + "?" + v + "+" + z,
|
|
302
|
-
r + "+" + C,
|
|
303
|
-
Ve,
|
|
304
|
-
$e,
|
|
305
|
-
A,
|
|
306
|
-
Pe
|
|
307
|
-
].join("|"), "g");
|
|
308
|
-
function Qe(e) {
|
|
309
|
-
return e.match(qe) || [];
|
|
310
|
-
}
|
|
311
|
-
function et(e, a, t) {
|
|
312
|
-
return e = b(e), a = a, a === void 0 ? Le(e) ? Qe(e) : be(e) : e.match(a) || [];
|
|
313
|
-
}
|
|
314
|
-
var tt = "['’]", at = RegExp(tt, "g");
|
|
315
|
-
function nt(e) {
|
|
316
|
-
return function(a) {
|
|
317
|
-
return ye(et(Fe(a).replace(at, "")), e, "");
|
|
318
|
-
};
|
|
319
|
-
}
|
|
320
|
-
var c = nt(function(e, a, t) {
|
|
321
|
-
return e + (t ? "-" : "") + a.toLowerCase();
|
|
322
|
-
});
|
|
323
|
-
const it = JSON.parse(`{"colors":{"default":{"white":{"value":"#fdfdfd","type":"color"},"brightWhite":{"value":"#ffffff","type":"color"},"black":{"value":"#202020","type":"color"},"transparent":{"value":"#00000000","type":"color"},"brandBlue":{"value":"#1795d4","type":"color"},"bright-white":{"value":"#ffffff","type":"color"},"brand-blue":{"value":"#1795d4","type":"color"}},"blue":{"100":{"value":"#e2f2fa","type":"color"},"200":{"value":"#d4ebf7","type":"color"},"300":{"value":"#c5e4f4","type":"color"},"400":{"value":"#8bcaea","type":"color"},"500":{"value":"#51b0df","type":"color"},"600":{"value":"#1795d4","type":"color"},"700":{"value":"#11709f","type":"color"},"800":{"value":"#0c4a6a","type":"color"},"900":{"value":"#062535","type":"color"}},"green":{"100":{"value":"#e2f6f2","type":"color"},"200":{"value":"#d4f2ec","type":"color"},"300":{"value":"#c6eee6","type":"color"},"400":{"value":"#8cdece","type":"color"},"500":{"value":"#53cdb5","type":"color"},"600":{"value":"#1abc9c","type":"color"},"700":{"value":"#148d75","type":"color"},"800":{"value":"#0d5e4e","type":"color"},"900":{"value":"#062f27","type":"color"}},"amber":{"100":{"value":"#fef2e2","type":"color"},"200":{"value":"#fdecd3","type":"color"},"300":{"value":"#fce6c4","type":"color"},"400":{"value":"#f9ce88","type":"color"},"500":{"value":"#f6b54d","type":"color"},"600":{"value":"#f39c12","type":"color"},"700":{"value":"#b6750e","type":"color"},"800":{"value":"#7a4e09","type":"color"},"900":{"value":"#3d2704","type":"color"}},"coral":{"100":{"value":"#fee8e8","type":"color"},"200":{"value":"#fedcdc","type":"color"},"300":{"value":"#fdd1d1","type":"color"},"400":{"value":"#fba3a3","type":"color"},"500":{"value":"#f87575","type":"color"},"600":{"value":"#f64747","type":"color"},"700":{"value":"#b83535","type":"color"},"800":{"value":"#7b2424","type":"color"},"900":{"value":"#3e1212","type":"color"}},"purple":{"100":{"value":"#f2ebf6","type":"color"},"200":{"value":"#ece0f2","type":"color"},"300":{"value":"#e6d6ed","type":"color"},"400":{"value":"#cdacdb","type":"color"},"500":{"value":"#b482c8","type":"color"},"600":{"value":"#9b59b6","type":"color"},"700":{"value":"#744388","type":"color"},"800":{"value":"#4e2c5b","type":"color"},"900":{"value":"#27162e","type":"color"}},"yellow":{"100":{"value":"#fef8e1","type":"color"},"200":{"value":"#fdf4d2","type":"color"},"300":{"value":"#fcf0c3","type":"color"},"400":{"value":"#f8e287","type":"color"},"500":{"value":"#f4d34b","type":"color"},"600":{"value":"#f1c40f","type":"color"},"700":{"value":"#b5930b","type":"color"},"800":{"value":"#786208","type":"color"},"900":{"value":"#3c3104","type":"color"}},"gray":{"100":{"value":"#efefef","type":"color"},"200":{"value":"#e7e7e7","type":"color"},"300":{"value":"#dfdfdf","type":"color"},"400":{"value":"#c0c0c0","type":"color"},"500":{"value":"#a0a0a0","type":"color"},"600":{"value":"#808080","type":"color"},"700":{"value":"#606060","type":"color"},"800":{"value":"#404040","type":"color"},"900":{"value":"#202020","type":"color"}},"blueGray":{"100":{"value":"#f5f9f9","type":"color"},"200":{"value":"#f2f6f7","type":"color"},"300":{"value":"#dae2e7","type":"color"},"400":{"value":"#abbcc4","type":"color"},"500":{"value":"#7c95a2","type":"color"},"600":{"value":"#607d8b","type":"color"},"700":{"value":"#48606c","type":"color"},"800":{"value":"#384e5c","type":"color"},"900":{"value":"#212b37","type":"color"}},"blue-gray":{"100":{"value":"#f5f9f9","type":"color"},"200":{"value":"#f2f6f7","type":"color"},"300":{"value":"#dae2e7","type":"color"},"400":{"value":"#abbcc4","type":"color"},"500":{"value":"#7c95a2","type":"color"},"600":{"value":"#607d8b","type":"color"},"700":{"value":"#48606c","type":"color"},"800":{"value":"#384e5c","type":"color"},"900":{"value":"#212b37","type":"color"}}},"fontFamily":{"lexend":{"value":"Lexend","type":"fontFamilies"},"fontMono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace","type":"fontFamilies"}},"lineHeight":{"leadingNone":{"value":"100%","type":"lineHeights"},"leadingTight":{"value":"125%","type":"lineHeights"},"leadingNormal":{"value":"150%","type":"lineHeights"},"leadingRelaxed":{"value":"162.5%","type":"lineHeights"},"leadingLoose":{"value":"200%","type":"lineHeights"}},"fontSize":{"0":{"value":"12","type":"fontSizes"},"1":{"value":"14","type":"fontSizes"},"2":{"value":"16","type":"fontSizes"},"3":{"value":"18.992000579833984","type":"fontSizes"},"4":{"value":"20","type":"fontSizes"},"5":{"value":"22","type":"fontSizes"},"6":{"value":"24","type":"fontSizes"},"7":{"value":"30","type":"fontSizes"},"8":{"value":"36","type":"fontSizes"},"9":{"value":"48","type":"fontSizes"},"10":{"value":"60","type":"fontSizes"},"11":{"value":"72","type":"fontSizes"},"12":{"value":"96","type":"fontSizes"},"xs":{"value":"{fontSize.base} * 0.75","type":"fontSizes"},"sm":{"value":"{fontSize.base} * 0.875","type":"fontSizes"},"base":{"value":"16","type":"fontSizes"},"lg":{"value":"{fontSize.base} * 1.187","type":"fontSizes"},"xl":{"value":"{fontSize.base} * 1.25","type":"fontSizes"},"2xl":{"value":"{fontSize.base} * 1.375","type":"fontSizes"},"3xl":{"value":"{fontSize.base} * 1.5","type":"fontSizes"},"4xl":{"value":"{fontSize.base} * 1.875","type":"fontSizes"},"5xl":{"value":"{fontSize.base} * 2.25","type":"fontSizes"},"6xl":{"value":"{fontSize.base} * 3","type":"fontSizes"},"7xl":{"value":"{fontSize.base} * 3.75","type":"fontSizes"},"8xl":{"value":"{fontSize.base} * 4.5","type":"fontSizes"},"9xl":{"value":"{fontSize.base} * 6","type":"fontSizes"}},"paragraphSpacing":{"0":{"value":"0","type":"paragraphSpacing"},"1":{"value":"12","type":"paragraphSpacing"}},"typography":{"headings":{"headingXs":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"headingSm":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"headingBase":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"headingLg":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"headingXl":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"heading2xl":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"heading-xs":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"heading-sm":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"heading-base":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"heading-lg":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"heading-xl":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"heading-2xl":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.0}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"body":{"lead":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.1}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"paragraph":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.1}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"textXs":{"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.0}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.0}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.0}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"textSm":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.1}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.1}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.1}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.1}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.1}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"textBase":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.2}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"textLg":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.3}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"textXl":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.4}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text2xl":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text3xl":{"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text4xl":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text5xl":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text6xl":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text7xl":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text8xl":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text9xl":{"fontLight":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontNormal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontMedium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontSemibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontBold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"fontExtrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text-2xl":{"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.5}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text-3xl":{"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.6}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text-4xl":{"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.7}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text-5xl":{"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.8}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text-6xl":{"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.9}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text-7xl":{"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.10}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text-8xl":{"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.11}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}},"text-9xl":{"font-light":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.light}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-normal":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.regular}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-medium":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.medium}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-semibold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.semibold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-bold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.bold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"},"font-extrabold":{"value":{"fontFamily":"{fontFamilies.lexend}","fontWeight":"{fontWeight.extrabold}","lineHeight":"{lineHeights.1}","fontSize":"{fontSize.12}","letterSpacing":"{letterSpacing.0}","paragraphSpacing":"{paragraphSpacing.0}","paragraphIndent":"{paragraphIndent.0}","textCase":"{textCase.none}","textDecoration":"{textDecoration.none}"},"type":"typography"}}},"textTransform":{"none":{"value":"none","type":"textCase"},"uppercase":{"value":"uppercase","type":"textCase"},"lowercase":{"value":"lowercase","type":"textCase"},"capitalize":{"value":"capitalize","type":"textCase"}},"textDecoration":{"noUnderline":{"value":"none","type":"textDecoration"},"underline":{"value":"underline","type":"textDecoration"},"lineThrough":{"value":"line-through","type":"textDecoration"},"none":{"value":"none","type":"textDecoration"}},"sizing":{"0":{"value":"{spacing.0}","type":"sizing"},"1":{"2":{"value":"50%","type":"sizing"},"value":"{spacing.1}","type":"sizing"},"2":{"value":"{spacing.2}","type":"sizing"},"3":{"value":"{spacing.3}","type":"sizing"},"4":{"value":"{spacing.4}","type":"sizing"},"5":{"value":"{spacing.5}","type":"sizing"},"6":{"value":"{spacing.6}","type":"sizing"},"7":{"value":"{spacing.7}","type":"sizing"},"8":{"value":"{spacing.8}","type":"sizing"},"9":{"value":"{spacing.9}","type":"sizing"},"10":{"value":"{spacing.10}","type":"sizing"},"11":{"value":"{spacing.11}","type":"sizing"},"12":{"value":"{spacing.12}","type":"sizing"},"14":{"value":"{spacing.14}","type":"sizing"},"16":{"value":"{spacing.16}","type":"sizing"},"20":{"value":"{spacing.20}","type":"sizing"},"24":{"value":"{spacing.24}","type":"sizing"},"28":{"value":"{spacing.28}","type":"sizing"},"32":{"value":"{spacing.32}","type":"sizing"},"36":{"value":"{spacing.36}","type":"sizing"},"40":{"value":"{spacing.40}","type":"sizing"},"44":{"value":"{spacing.44}","type":"sizing"},"48":{"value":"{spacing.48}","type":"sizing"},"52":{"value":"{spacing.52}","type":"sizing"},"56":{"value":"{spacing.56}","type":"sizing"},"60":{"value":"{spacing.60}","type":"sizing"},"64":{"value":"{spacing.64}","type":"sizing"},"72":{"value":"{spacing.72}","type":"sizing"},"80":{"value":"{spacing.80}","type":"sizing"},"96":{"value":"{spacing.96}","type":"sizing"},"px":{"value":"{spacing.px}","type":"sizing"}},"screens":{"sm":{"value":"640","type":"sizing"},"md":{"value":"768","type":"sizing"},"lg":{"value":"1024","type":"sizing"},"xl":{"value":"1280","type":"sizing"},"2xl":{"value":"1536","type":"sizing"}},"borderWidth":{"border0":{"value":"0","type":"borderWidth"},"border":{"value":"1","type":"borderWidth"},"border2":{"value":"2","type":"borderWidth"},"border4":{"value":"4","type":"borderWidth"},"border8":{"value":"8","type":"borderWidth"}},"borderRadius":{"roundedNone":{"value":"0","type":"borderRadius"},"roundedSm":{"value":"0.125rem","type":"borderRadius"},"roundedDefault":{"value":"0.25rem","type":"borderRadius"},"roundedMd":{"value":"0.375rem","type":"borderRadius"},"roundedLg":{"value":"0.5rem","type":"borderRadius"},"roundedXl":{"value":"0.75rem","type":"borderRadius"},"rounded2xl":{"value":"1rem","type":"borderRadius"},"rounded3xl":{"value":"1.5rem","type":"borderRadius"},"roundedFull":{"value":"9999","type":"borderRadius"}},"opacity":{"0":{"value":"0","type":"opacity"},"5":{"value":"0.05","type":"opacity"},"10":{"value":"0.1","type":"opacity"},"20":{"value":"0.2","type":"opacity"},"25":{"value":"0.25","type":"opacity"},"30":{"value":"0.3","type":"opacity"},"40":{"value":"0.4","type":"opacity"},"50":{"value":"0.5","type":"opacity"},"60":{"value":"0.6","type":"opacity"},"70":{"value":"0.7","type":"opacity"},"75":{"value":"0.75","type":"opacity"},"80":{"value":"0.8","type":"opacity"},"90":{"value":"0.9","type":"opacity"},"95":{"value":"0.95","type":"opacity"},"100":{"value":"1","type":"opacity"}},"letterSpacing":{"0":{"value":"0%","type":"letterSpacing"},"trackingTighter":{"value":"-5%","type":"letterSpacing"},"trackingTight":{"value":"-2.5%","type":"letterSpacing"},"trackingNormal":{"value":"0%","type":"letterSpacing"},"trackingWide":{"value":"1%","type":"letterSpacing"},"trackingWider":{"value":"2.5%","type":"letterSpacing"},"trackingWidest":{"value":"5%","type":"letterSpacing"}},"spacing":{"0":{"value":"0","type":"spacing"},"1":{"value":"{fontSize.base} * 0.25","type":"spacing"},"2":{"value":"{fontSize.base} * 0.5","type":"spacing"},"3":{"value":"{fontSize.base} * 0.75","type":"spacing"},"4":{"value":"{fontSize.base} * 1","type":"spacing"},"5":{"value":"{fontSize.base} * 1.25","type":"spacing"},"6":{"value":"{fontSize.base} * 1.5","type":"spacing"},"7":{"value":"{fontSize.base} * 1.75","type":"spacing"},"8":{"value":"{fontSize.base} * 2","type":"spacing"},"9":{"value":"{fontSize.base} * 2.25","type":"spacing"},"10":{"value":"{fontSize.base} * 2.5","type":"spacing"},"11":{"value":"{fontSize.base} * 2.75","type":"spacing"},"12":{"value":"{fontSize.base} * 3","type":"spacing"},"14":{"value":"{fontSize.base} * 3.5","type":"spacing"},"16":{"value":"{fontSize.base} * 4","type":"spacing"},"20":{"value":"{fontSize.base} * 5","type":"spacing"},"24":{"value":"{fontSize.base} * 6","type":"spacing"},"28":{"value":"{fontSize.base} * 7","type":"spacing"},"32":{"value":"{fontSize.base} * 8","type":"spacing"},"36":{"value":"{fontSize.base} * 9","type":"spacing"},"40":{"value":"{fontSize.base} * 10","type":"spacing"},"44":{"value":"{fontSize.base} * 11","type":"spacing"},"48":{"value":"{fontSize.base} * 12","type":"spacing"},"52":{"value":"{fontSize.base} * 13","type":"spacing"},"56":{"value":"{fontSize.base} * 14","type":"spacing"},"60":{"value":"{fontSize.base} * 15","type":"spacing"},"64":{"value":"{fontSize.base} * 16","type":"spacing"},"72":{"value":"{fontSize.base} * 18","type":"spacing"},"80":{"value":"{fontSize.base} * 20","type":"spacing"},"96":{"value":"{fontSize.base} * 24","type":"spacing"},"px":{"value":"1","type":"spacing"},"testRem":{"value":"1.5rem","type":"spacing","description":"https://tailwindcss.com/docs/customizing-spacing#default-spacing-scale"}},"dimension":{"0":{"value":"{spacing.0}","type":"dimension"},"1":{"value":"{spacing.1}","type":"dimension"},"2":{"value":"{spacing.2}","type":"dimension"},"3":{"value":"{spacing.3}","type":"dimension"},"4":{"value":"{spacing.4}","type":"dimension"},"5":{"value":"{spacing.5}","type":"dimension"},"6":{"value":"{spacing.6}","type":"dimension"},"7":{"value":"{spacing.7}","type":"dimension"},"8":{"value":"{spacing.8}","type":"dimension"},"9":{"value":"{spacing.9}","type":"dimension"},"10":{"value":"{spacing.10}","type":"dimension"},"11":{"value":"{spacing.11}","type":"dimension"},"12":{"value":"{spacing.12}","type":"dimension"},"14":{"value":"{spacing.14}","type":"dimension"},"16":{"value":"{spacing.16}","type":"dimension"},"20":{"value":"{spacing.20}","type":"dimension"},"24":{"value":"{spacing.24}","type":"dimension"},"28":{"value":"{spacing.28}","type":"dimension"},"32":{"value":"{spacing.32}","type":"dimension"},"36":{"value":"{spacing.36}","type":"dimension"},"40":{"value":"{spacing.40}","type":"dimension"},"44":{"value":"{spacing.44}","type":"dimension"},"48":{"value":"{spacing.48}","type":"dimension"},"52":{"value":"{spacing.52}","type":"dimension"},"56":{"value":"{spacing.56}","type":"dimension"},"60":{"value":"{spacing.60}","type":"dimension"},"64":{"value":"{spacing.64}","type":"dimension"},"72":{"value":"{spacing.72}","type":"dimension"},"80":{"value":"{spacing.80}","type":"dimension"},"96":{"value":"{spacing.96}","type":"dimension"},"px":{"value":"{spacing.px}","type":"dimension"}},"borderStyle":{"borderSolid":{"value":{"style":"solid"},"type":"border"},"borderDashed":{"value":{"style":"dashed"},"type":"border"}},"fontFamilies":{"lexend":{"value":"Lexend","type":"fontFamilies"}},"lineHeights":{"0":{"value":"125%","type":"lineHeights"},"1":{"value":"150%","type":"lineHeights"}},"textCase":{"none":{"value":"none","type":"textCase"}},"paragraphIndent":{"0":{"value":"0px","type":"dimension"}},"fontWeight":{"light":{"value":"300","type":"fontWeights"},"regular":{"value":"400","type":"fontWeights"},"medium":{"value":"500","type":"fontWeights"},"semibold":{"value":"600","type":"fontWeights"},"bold":{"value":"700","type":"fontWeights"},"extrabold":{"value":"800","type":"fontWeights"}}}`), ot = (e, a) => a === "fontSizes" || a === "spacing" || a === "dimension" ? e.includes("px") || e.includes("rem") ? e : `${Number(e) / 16}rem` : e, pt = (e, a = 16) => {
|
|
324
|
-
if (!e.includes("*")) return Number(e);
|
|
325
|
-
const [t, n] = e.split("*").map((i) => i.trim());
|
|
326
|
-
return Number(t) * (n === "{fontSize.base}" ? a : Number(n));
|
|
327
|
-
}, S = (e, a) => {
|
|
328
|
-
const t = a.value, n = a.type;
|
|
329
|
-
let i = typeof t == "string" ? t : JSON.stringify(t);
|
|
330
|
-
return typeof t == "string" && t.match(/\{(.*?)\}/) && (i = t.replace(/\{(.*?)\}/, (p, l) => {
|
|
331
|
-
const h = l.split(".").reduce((y, _) => y && y[_], e).value;
|
|
332
|
-
return typeof h == "string" ? h : JSON.stringify(h);
|
|
333
|
-
})), typeof t == "string" && n.match(/fontSizes|spacing/) && t.includes("*") && (i = pt(i).toString()), ot(i, n);
|
|
334
|
-
}, s = (e, a) => {
|
|
335
|
-
const t = {};
|
|
336
|
-
for (const [n, i] of Object.entries(a))
|
|
337
|
-
t[c(n)] = S(e, i);
|
|
338
|
-
return t;
|
|
339
|
-
}, rt = (e, a) => {
|
|
340
|
-
const t = {};
|
|
341
|
-
for (const [n, i] of Object.entries(a))
|
|
342
|
-
if (n === "default")
|
|
343
|
-
for (const [p, l] of Object.entries(i))
|
|
344
|
-
t[c(p)] = S(e, l);
|
|
345
|
-
else {
|
|
346
|
-
const p = {};
|
|
347
|
-
for (const [l, h] of Object.entries(i))
|
|
348
|
-
p[c(l)] = S(e, h);
|
|
349
|
-
t[c(n)] = p;
|
|
350
|
-
}
|
|
351
|
-
return t;
|
|
352
|
-
}, o = it, gt = rt(o, o.colors), lt = o.fontFamily.lexend.value, ht = s(o, o.lineHeight), ft = s(o, o.fontSize), ct = s(o, o.letterSpacing), st = s(o, o.paragraphSpacing), W = gt, St = { sans: [lt, "sans-serif"] }, H = ht, yt = ft, dt = ct, D = st, mt = {
|
|
353
|
-
colors: W,
|
|
354
|
-
fontFamily: St,
|
|
355
|
-
fontSize: yt,
|
|
356
|
-
lineHeight: H,
|
|
357
|
-
letterSpacing: dt,
|
|
358
|
-
extend: {
|
|
359
|
-
typography: {
|
|
360
|
-
DEFAULT: {
|
|
361
|
-
css: {
|
|
362
|
-
color: W.black,
|
|
363
|
-
lineHeight: H.leadingNormal,
|
|
364
|
-
p: {
|
|
365
|
-
marginTop: D[1],
|
|
366
|
-
marginBottom: D[1]
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
};
|
|
373
|
-
function vt(e, a) {
|
|
374
|
-
return a.split(".").reduce((t, n) => {
|
|
375
|
-
var i;
|
|
376
|
-
return ((i = t == null ? void 0 : t[n]) == null ? void 0 : i.value) ?? (t == null ? void 0 : t[n]);
|
|
377
|
-
}, e);
|
|
378
|
-
}
|
|
379
|
-
export {
|
|
380
|
-
ut as Button,
|
|
381
|
-
W as colors,
|
|
382
|
-
St as fontFamily,
|
|
383
|
-
yt as fontSize,
|
|
384
|
-
vt as getTokenValue,
|
|
385
|
-
dt as letterSpacing,
|
|
386
|
-
H as lineHeight,
|
|
387
|
-
D as paragraphSpacing,
|
|
388
|
-
it as rawTokens,
|
|
389
|
-
mt as theme
|
|
390
|
-
};
|