@equal-experts/kuat-vue 0.1.2 → 0.1.4
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/dist/index.mjs +390 -1
- package/dist/index.umd.js +1 -1
- package/dist/style.css +0 -0
- package/index.html +12 -0
- package/package.json +8 -8
- package/playground/App.vue +31 -0
- package/playground/index.html +12 -0
- package/playground/main.ts +5 -0
- package/src/components/Button/Button.vue +49 -0
- package/src/components/index.ts +5 -2
- package/src/playground/App.vue +15 -0
- package/src/playground/main.ts +5 -0
- package/src/shims-vue.d.ts +5 -0
- package/src/types/equal-experts__kuat-core.d.ts +1 -0
- package/tsconfig.json +28 -0
- package/tsconfig.node.json +10 -0
- package/vite.config.ts +6 -3
- package/src/Button.vue +0 -45
package/dist/index.mjs
CHANGED
|
@@ -1 +1,390 @@
|
|
|
1
|
-
|
|
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
|
+
};
|
package/dist/index.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(e,t){typeof exports=="object"&&typeof module<"u"?t(exports,require("@equal-experts/kuat-core")):typeof define=="function"&&define.amd?define(["exports","@equal-experts/kuat-core"],t):(e=typeof globalThis<"u"?globalThis:e||self,t(e.KuatVue={},e.KuatCore))})(this,function(e,t){"use strict";Object.keys(t).forEach(u=>{u!=="default"&&!Object.prototype.hasOwnProperty.call(e,u)&&Object.defineProperty(e,u,{enumerable:!0,get:()=>t[u]})}),Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});
|
|
1
|
+
(function(o,r){typeof exports=="object"&&typeof module<"u"?r(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],r):(o=typeof globalThis<"u"?globalThis:o||self,r(o.KuatVue={},o.Vue))})(this,function(o,r){"use strict";const Y=["disabled"],$=((e,a)=>{const t=e.__vccOpts||e;for(const[n,i]of a)t[n]=i;return t})(r.defineComponent({name:"Button",__name:"Button",props:{variant:{default:"primary"},size:{default:"md"},disabled:{type:Boolean,default:!1}},setup(e){const a={primary:"bg-brand-primary text-white hover:bg-brand-primary/90",secondary:"bg-brand-secondary text-white hover:bg-brand-secondary/90",outline:"border border-brand-primary text-brand-primary hover:bg-brand-primary/10"},t={sm:"px-3 py-1.5 text-sm",md:"px-4 py-2 text-base",lg:"px-6 py-3 text-lg"};return(n,i)=>(r.openBlock(),r.createElementBlock("button",{class:r.normalizeClass(["rounded-md transition-all duration-200 ease-in-out",a[n.variant],t[n.size],n.disabled?"opacity-50 cursor-not-allowed":"cursor-pointer"]),disabled:n.disabled},[r.renderSlot(n.$slots,"default",{},void 0,!0)],10,Y))}}),[["__scopeId","data-v-ce590d2a"]]);var K=typeof global=="object"&&global&&global.Object===Object&&global,P=typeof self=="object"&&self&&self.Object===Object&&self,q=K||P||Function("return this")(),l=q.Symbol,v=Object.prototype,Q=v.hasOwnProperty,ee=v.toString,f=l?l.toStringTag:void 0;function te(e){var a=Q.call(e,f),t=e[f];try{e[f]=void 0;var n=!0}catch{}var i=ee.call(e);return n&&(a?e[f]=t:delete e[f]),i}var ae=Object.prototype,ne=ae.toString;function ie(e){return ne.call(e)}var oe="[object Null]",pe="[object Undefined]",z=l?l.toStringTag:void 0;function re(e){return e==null?e===void 0?pe:oe:z&&z in Object(e)?te(e):ie(e)}function ge(e){return e!=null&&typeof e=="object"}var le="[object Symbol]";function he(e){return typeof e=="symbol"||ge(e)&&re(e)==le}function fe(e,a){for(var t=-1,n=e==null?0:e.length,i=Array(n);++t<n;)i[t]=a(e[t],t,e);return i}var ce=Array.isArray,se=1/0,C=l?l.prototype:void 0,W=C?C.toString:void 0;function H(e){if(typeof e=="string")return e;if(ce(e))return fe(e,H)+"";if(he(e))return W?W.call(e):"";var a=e+"";return a=="0"&&1/e==-se?"-0":a}function D(e){return e==null?"":H(e)}function Se(e,a,t,n){for(var i=-1,g=e==null?0:e.length;++i<g;)t=a(t,e[i],i,e);return t}function ye(e){return function(a){return e==null?void 0:e[a]}}var de={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},xe=ye(de),ue=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,me="\\u0300-\\u036f",ve="\\ufe20-\\ufe2f",ze="\\u20d0-\\u20ff",Ce=me+ve+ze,We="["+Ce+"]",He=RegExp(We,"g");function De(e){return e=D(e),e&&e.replace(ue,xe).replace(He,"")}var Fe=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;function Ie(e){return e.match(Fe)||[]}var be=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;function Ne(e){return be.test(e)}var F="\\ud800-\\udfff",Le="\\u0300-\\u036f",Oe="\\ufe20-\\ufe2f",je="\\u20d0-\\u20ff",Ee=Le+Oe+je,I="\\u2700-\\u27bf",b="a-z\\xdf-\\xf6\\xf8-\\xff",Be="\\xac\\xb1\\xd7\\xf7",Ae="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Me="\\u2000-\\u206f",Re=" \\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",N="A-Z\\xc0-\\xd6\\xd8-\\xde",Te="\\ufe0e\\ufe0f",L=Be+Ae+Me+Re,O="['’]",j="["+L+"]",_e="["+Ee+"]",E="\\d+",ke="["+I+"]",B="["+b+"]",A="[^"+F+L+E+I+b+N+"]",we="\\ud83c[\\udffb-\\udfff]",Ue="(?:"+_e+"|"+we+")",Ze="[^"+F+"]",M="(?:\\ud83c[\\udde6-\\uddff]){2}",R="[\\ud800-\\udbff][\\udc00-\\udfff]",h="["+N+"]",Ge="\\u200d",T="(?:"+B+"|"+A+")",Je="(?:"+h+"|"+A+")",_="(?:"+O+"(?:d|ll|m|re|s|t|ve))?",k="(?:"+O+"(?:D|LL|M|RE|S|T|VE))?",w=Ue+"?",U="["+Te+"]?",Xe="(?:"+Ge+"(?:"+[Ze,M,R].join("|")+")"+U+w+")*",Ve="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Ye="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",$e=U+w+Xe,Ke="(?:"+[ke,M,R].join("|")+")"+$e,Pe=RegExp([h+"?"+B+"+"+_+"(?="+[j,h,"$"].join("|")+")",Je+"+"+k+"(?="+[j,h+T,"$"].join("|")+")",h+"?"+T+"+"+_,h+"+"+k,Ye,Ve,E,Ke].join("|"),"g");function qe(e){return e.match(Pe)||[]}function Qe(e,a,t){return e=D(e),a=a,a===void 0?Ne(e)?qe(e):Ie(e):e.match(a)||[]}var et="['’]",tt=RegExp(et,"g");function at(e){return function(a){return Se(Qe(De(a).replace(tt,"")),e,"")}}var S=at(function(e,a,t){return e+(t?"-":"")+a.toLowerCase()});const Z=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"}}}`),nt=(e,a)=>a==="fontSizes"||a==="spacing"||a==="dimension"?e.includes("px")||e.includes("rem")?e:`${Number(e)/16}rem`:e,it=(e,a=16)=>{if(!e.includes("*"))return Number(e);const[t,n]=e.split("*").map(i=>i.trim());return Number(t)*(n==="{fontSize.base}"?a:Number(n))},d=(e,a)=>{const t=a.value,n=a.type;let i=typeof t=="string"?t:JSON.stringify(t);return typeof t=="string"&&t.match(/\{(.*?)\}/)&&(i=t.replace(/\{(.*?)\}/,(g,c)=>{const s=c.split(".").reduce((V,St)=>V&&V[St],e).value;return typeof s=="string"?s:JSON.stringify(s)})),typeof t=="string"&&n.match(/fontSizes|spacing/)&&t.includes("*")&&(i=it(i).toString()),nt(i,n)},y=(e,a)=>{const t={};for(const[n,i]of Object.entries(a))t[S(n)]=d(e,i);return t},ot=(e,a)=>{const t={};for(const[n,i]of Object.entries(a))if(n==="default")for(const[g,c]of Object.entries(i))t[S(g)]=d(e,c);else{const g={};for(const[c,s]of Object.entries(i))g[S(c)]=d(e,s);t[S(n)]=g}return t},p=Z,pt=ot(p,p.colors),rt=p.fontFamily.lexend.value,gt=y(p,p.lineHeight),lt=y(p,p.fontSize),ht=y(p,p.letterSpacing),ft=y(p,p.paragraphSpacing),x=pt,G={sans:[rt,"sans-serif"]},u=gt,J=lt,X=ht,m=ft,ct={colors:x,fontFamily:G,fontSize:J,lineHeight:u,letterSpacing:X,extend:{typography:{DEFAULT:{css:{color:x.black,lineHeight:u.leadingNormal,p:{marginTop:m[1],marginBottom:m[1]}}}}}};function st(e,a){return a.split(".").reduce((t,n)=>{var i;return((i=t==null?void 0:t[n])==null?void 0:i.value)??(t==null?void 0:t[n])},e)}o.Button=$,o.colors=x,o.fontFamily=G,o.fontSize=J,o.getTokenValue=st,o.letterSpacing=X,o.lineHeight=u,o.paragraphSpacing=m,o.rawTokens=Z,o.theme=ct,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})});
|
package/dist/style.css
ADDED
|
File without changes
|
package/index.html
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Kuat Vue Components Demo 2</title>
|
|
7
|
+
</head>
|
|
8
|
+
<body>
|
|
9
|
+
<div id="app"></div>
|
|
10
|
+
<script type="module" src="/src/playground/main.ts"></script>
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equal-experts/kuat-vue",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Vue components for the design system",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "vite build",
|
|
10
|
-
"dev": "vite"
|
|
11
|
-
},
|
|
12
8
|
"dependencies": {
|
|
13
|
-
"@equal-experts/kuat-core": "^0.1.
|
|
9
|
+
"@equal-experts/kuat-core": "^0.1.3",
|
|
14
10
|
"vue": "^3.3.11"
|
|
15
11
|
},
|
|
16
12
|
"devDependencies": {
|
|
@@ -30,5 +26,9 @@
|
|
|
30
26
|
"bugs": {
|
|
31
27
|
"url": "https://github.com/EqualExperts/ee-design-foundations/issues"
|
|
32
28
|
},
|
|
33
|
-
"homepage": "https://github.com/EqualExperts/ee-design-foundations#readme"
|
|
34
|
-
|
|
29
|
+
"homepage": "https://github.com/EqualExperts/ee-design-foundations#readme",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "vite build",
|
|
32
|
+
"dev": "vite"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="container mx-auto p-4">
|
|
3
|
+
<h1 class="text-2xl font-bold mb-4">Kuat Vue Button Demo</h1>
|
|
4
|
+
|
|
5
|
+
<div class="space-y-4">
|
|
6
|
+
<div>
|
|
7
|
+
<h2 class="text-lg font-semibold mb-2">Default Button</h2>
|
|
8
|
+
<Button>Click me</Button>
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
<div>
|
|
12
|
+
<h2 class="text-lg font-semibold mb-2">Primary Button</h2>
|
|
13
|
+
<Button variant="primary">Primary Button</Button>
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<div>
|
|
17
|
+
<h2 class="text-lg font-semibold mb-2">Secondary Button</h2>
|
|
18
|
+
<Button variant="secondary">Secondary Button</Button>
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
<div>
|
|
22
|
+
<h2 class="text-lg font-semibold mb-2">Disabled Button</h2>
|
|
23
|
+
<Button disabled>Disabled Button</Button>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</template>
|
|
28
|
+
|
|
29
|
+
<script setup lang="ts">
|
|
30
|
+
import Button from '../src/components/Button/Button.vue'
|
|
31
|
+
</script>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Kuat Vue Components Demo 3</title>
|
|
7
|
+
</head>
|
|
8
|
+
<body>
|
|
9
|
+
<div id="app"></div>
|
|
10
|
+
<script type="module" src="/playground/main.ts"></script>
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<button
|
|
3
|
+
:class="[
|
|
4
|
+
'rounded-md transition-all duration-200 ease-in-out',
|
|
5
|
+
variantClasses[variant],
|
|
6
|
+
sizeClasses[size],
|
|
7
|
+
disabled ? 'opacity-50 cursor-not-allowed' : 'cursor-pointer'
|
|
8
|
+
]"
|
|
9
|
+
:disabled="disabled"
|
|
10
|
+
>
|
|
11
|
+
<slot></slot>
|
|
12
|
+
</button>
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script setup lang="ts">
|
|
16
|
+
import { computed, withDefaults } from 'vue'
|
|
17
|
+
|
|
18
|
+
defineOptions({
|
|
19
|
+
name: 'Button'
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
interface ButtonProps {
|
|
23
|
+
variant?: 'primary' | 'secondary' | 'outline'
|
|
24
|
+
size?: 'sm' | 'md' | 'lg'
|
|
25
|
+
disabled?: boolean
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const props = withDefaults(defineProps<ButtonProps>(), {
|
|
29
|
+
variant: 'primary',
|
|
30
|
+
size: 'md',
|
|
31
|
+
disabled: false
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
const variantClasses = {
|
|
35
|
+
primary: 'bg-brand-primary text-white hover:bg-brand-primary/90',
|
|
36
|
+
secondary: 'bg-brand-secondary text-white hover:bg-brand-secondary/90',
|
|
37
|
+
outline: 'border border-brand-primary text-brand-primary hover:bg-brand-primary/10'
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const sizeClasses = {
|
|
41
|
+
sm: 'px-3 py-1.5 text-sm',
|
|
42
|
+
md: 'px-4 py-2 text-base',
|
|
43
|
+
lg: 'px-6 py-3 text-lg'
|
|
44
|
+
}
|
|
45
|
+
</script>
|
|
46
|
+
|
|
47
|
+
<style scoped>
|
|
48
|
+
/* Add styles here */
|
|
49
|
+
</style>
|
package/src/components/index.ts
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="container mx-auto p-4">
|
|
3
|
+
<h1 class="text-2xl font-bold mb-4">Kuat Vue Button Demo</h1>
|
|
4
|
+
|
|
5
|
+
<div class="space-y-4">
|
|
6
|
+
<div>
|
|
7
|
+
<Button>Click me</Button>
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script setup lang="ts">
|
|
14
|
+
import { Button } from '../components'
|
|
15
|
+
</script>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
declare module '@equal-experts/kuat-core';
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2020",
|
|
4
|
+
"useDefineForClassFields": true,
|
|
5
|
+
"module": "ESNext",
|
|
6
|
+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
7
|
+
"skipLibCheck": true,
|
|
8
|
+
|
|
9
|
+
/* Bundler mode */
|
|
10
|
+
"moduleResolution": "bundler",
|
|
11
|
+
"allowImportingTsExtensions": true,
|
|
12
|
+
"resolveJsonModule": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"noEmit": true,
|
|
15
|
+
"jsx": "preserve",
|
|
16
|
+
|
|
17
|
+
/* Type Checking */
|
|
18
|
+
"strict": true,
|
|
19
|
+
"noUnusedLocals": true,
|
|
20
|
+
"noUnusedParameters": true,
|
|
21
|
+
"noFallthroughCasesInSwitch": true,
|
|
22
|
+
|
|
23
|
+
/* Type Declarations */
|
|
24
|
+
"typeRoots": ["./src/types", "./node_modules/@types"]
|
|
25
|
+
},
|
|
26
|
+
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "playground/**/*.ts", "playground/**/*.vue"],
|
|
27
|
+
"references": [{ "path": "./tsconfig.node.json" }]
|
|
28
|
+
}
|
package/vite.config.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { defineConfig } from 'vite'
|
|
|
2
2
|
import vue from '@vitejs/plugin-vue'
|
|
3
3
|
import { resolve } from 'path'
|
|
4
4
|
|
|
5
|
+
// https://vitejs.dev/config/
|
|
5
6
|
export default defineConfig({
|
|
6
7
|
plugins: [vue()],
|
|
7
8
|
build: {
|
|
@@ -11,13 +12,15 @@ export default defineConfig({
|
|
|
11
12
|
fileName: 'index'
|
|
12
13
|
},
|
|
13
14
|
rollupOptions: {
|
|
14
|
-
external: ['vue'
|
|
15
|
+
external: ['vue'],
|
|
15
16
|
output: {
|
|
16
17
|
globals: {
|
|
17
|
-
vue: 'Vue'
|
|
18
|
-
'@equal-experts/kuat-core': 'KuatCore'
|
|
18
|
+
vue: 'Vue'
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
|
+
},
|
|
23
|
+
server: {
|
|
24
|
+
open: true
|
|
22
25
|
}
|
|
23
26
|
})
|
package/src/Button.vue
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import { computed } from 'vue'
|
|
3
|
-
|
|
4
|
-
interface ButtonProps {
|
|
5
|
-
variant?: 'primary' | 'secondary' | 'outline'
|
|
6
|
-
size?: 'sm' | 'md' | 'lg'
|
|
7
|
-
disabled?: boolean
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
const props = withDefaults(defineProps<ButtonProps>(), {
|
|
11
|
-
variant: 'primary',
|
|
12
|
-
size: 'md',
|
|
13
|
-
disabled: false
|
|
14
|
-
})
|
|
15
|
-
|
|
16
|
-
const buttonClasses = computed(() => {
|
|
17
|
-
const baseClasses = 'rounded-md transition-all duration-200 ease-in-out'
|
|
18
|
-
const variantClasses = {
|
|
19
|
-
primary: 'bg-brand-primary text-white hover:bg-brand-primary/90',
|
|
20
|
-
secondary: 'bg-brand-secondary text-white hover:bg-brand-secondary/90',
|
|
21
|
-
outline: 'border border-brand-primary text-brand-primary hover:bg-brand-primary/10'
|
|
22
|
-
}
|
|
23
|
-
const sizeClasses = {
|
|
24
|
-
sm: 'px-2 py-1 text-xs',
|
|
25
|
-
md: 'px-4 py-2 text-sm',
|
|
26
|
-
lg: 'px-6 py-3 text-base'
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
return [
|
|
30
|
-
baseClasses,
|
|
31
|
-
variantClasses[props.variant],
|
|
32
|
-
sizeClasses[props.size],
|
|
33
|
-
props.disabled ? 'opacity-50 cursor-not-allowed' : 'cursor-pointer'
|
|
34
|
-
].join(' ')
|
|
35
|
-
})
|
|
36
|
-
</script>
|
|
37
|
-
|
|
38
|
-
<template>
|
|
39
|
-
<button
|
|
40
|
-
:class="buttonClasses"
|
|
41
|
-
:disabled="disabled"
|
|
42
|
-
>
|
|
43
|
-
<slot>Button</slot>
|
|
44
|
-
</button>
|
|
45
|
-
</template>
|