futsuno-ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,432 @@
1
+ /**
2
+ * Futsuno Design System - Color Tokens
3
+ * Extracted from Figma Design System
4
+ */
5
+ declare const colors: {
6
+ /** Primary black color - #040404 */
7
+ readonly black: "#040404";
8
+ /** Primary white color - #FFFFFF */
9
+ readonly white: "#FFFFFF";
10
+ /** Gray scale colors */
11
+ readonly gray: {
12
+ /** Dark gray - #464646 - Used for buttons, secondary text */
13
+ readonly 900: "#464646";
14
+ /** Medium gray - #BDC1C2 - Used for borders */
15
+ readonly 400: "#BDC1C2";
16
+ /** Light gray - #E5E6E6 - Used for backgrounds */
17
+ readonly 200: "#E5E6E6";
18
+ /** Lightest gray - #E5E6E6 */
19
+ readonly 100: "#E5E6E6";
20
+ };
21
+ /** Background colors */
22
+ readonly background: {
23
+ /** Section background gray - #F2F3F1 */
24
+ readonly gray: "#F2F3F1";
25
+ };
26
+ /** Accent colors */
27
+ readonly accent: {
28
+ /** Gold accent - #978E5F - Used for badges, premium elements */
29
+ readonly gold: "#978E5F";
30
+ /** Blue accent - #457D99 */
31
+ readonly blue: "#457D99";
32
+ /** Red accent - #CC5E58 - Used for CTAs, emphasis */
33
+ readonly red: "#CC5E58";
34
+ };
35
+ /** Button colors - semantic aliases */
36
+ readonly button: {
37
+ readonly black: "#464646";
38
+ readonly red: "#CC5E58";
39
+ readonly gold: "#978E5F";
40
+ readonly white: "#FFFFFF";
41
+ };
42
+ /** Text colors - semantic aliases */
43
+ readonly text: {
44
+ readonly primary: "#040404";
45
+ readonly secondary: "#464646";
46
+ readonly inverse: "#FFFFFF";
47
+ readonly accent: "#CC5E58";
48
+ };
49
+ };
50
+ /** Type for color tokens */
51
+ type Colors = typeof colors;
52
+ /** Flat color palette for CSS variables */
53
+ declare const colorPalette: {
54
+ readonly '--color-black': "#040404";
55
+ readonly '--color-white': "#FFFFFF";
56
+ readonly '--color-gray-900': "#464646";
57
+ readonly '--color-gray-400': "#BDC1C2";
58
+ readonly '--color-gray-200': "#E5E6E6";
59
+ readonly '--color-gray-100': "#E5E6E6";
60
+ readonly '--color-background-gray': "#F2F3F1";
61
+ readonly '--color-accent-gold': "#978E5F";
62
+ readonly '--color-accent-blue': "#457D99";
63
+ readonly '--color-accent-red': "#CC5E58";
64
+ };
65
+
66
+ /**
67
+ * Futsuno Design System - Typography Tokens
68
+ * Extracted from Figma Design System
69
+ */
70
+ /** Font families */
71
+ declare const fontFamily: {
72
+ /** Primary font - Noto Sans JP */
73
+ readonly primary: "\"Noto Sans JP\", sans-serif";
74
+ /** Secondary font for prices - A-OTF Shuei NGo Kin StdN */
75
+ readonly price: "\"A-OTF Shuei NGo Kin StdN\", \"Noto Sans JP\", sans-serif";
76
+ };
77
+ /** Font weights */
78
+ declare const fontWeight: {
79
+ readonly regular: 400;
80
+ readonly medium: 500;
81
+ readonly bold: 700;
82
+ };
83
+ /** Typography scale */
84
+ declare const typography: {
85
+ /** Heading 1 - 24px */
86
+ readonly h1: {
87
+ readonly fontSize: "24px";
88
+ readonly lineHeight: 1.55;
89
+ readonly letterSpacing: "0.16em";
90
+ readonly fontWeight: 500;
91
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
92
+ };
93
+ /** Heading 2 - 22px */
94
+ readonly h2: {
95
+ readonly fontSize: "22px";
96
+ readonly lineHeight: 1.55;
97
+ readonly letterSpacing: "0.16em";
98
+ readonly fontWeight: 500;
99
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
100
+ };
101
+ /** Heading 3 - 20px */
102
+ readonly h3: {
103
+ readonly fontSize: "20px";
104
+ readonly lineHeight: 1.35;
105
+ readonly letterSpacing: "0.16em";
106
+ readonly fontWeight: 500;
107
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
108
+ };
109
+ /** Heading 4 - 18px */
110
+ readonly h4: {
111
+ readonly fontSize: "18px";
112
+ readonly lineHeight: 1.45;
113
+ readonly letterSpacing: "0.16em";
114
+ readonly fontWeight: 500;
115
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
116
+ };
117
+ /** Body large - 16px */
118
+ readonly bodyLg: {
119
+ readonly fontSize: "16px";
120
+ readonly lineHeight: 1.95;
121
+ readonly letterSpacing: "0.08em";
122
+ readonly fontWeight: 500;
123
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
124
+ };
125
+ /** Body medium - 15px */
126
+ readonly bodyMd: {
127
+ readonly fontSize: "15px";
128
+ readonly lineHeight: 1.85;
129
+ readonly letterSpacing: "0.08em";
130
+ readonly fontWeight: 500;
131
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
132
+ };
133
+ /** Body small - 13px */
134
+ readonly bodySm: {
135
+ readonly fontSize: "13px";
136
+ readonly lineHeight: 1.85;
137
+ readonly letterSpacing: "0.08em";
138
+ readonly fontWeight: 500;
139
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
140
+ };
141
+ /** Caption large - 12px */
142
+ readonly captionLg: {
143
+ readonly fontSize: "12px";
144
+ readonly lineHeight: 1.45;
145
+ readonly letterSpacing: "0.08em";
146
+ readonly fontWeight: 500;
147
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
148
+ };
149
+ /** Caption medium - 11px */
150
+ readonly captionMd: {
151
+ readonly fontSize: "11px";
152
+ readonly lineHeight: 1.45;
153
+ readonly letterSpacing: "0.08em";
154
+ readonly fontWeight: 500;
155
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
156
+ };
157
+ /** Caption small - 10px */
158
+ readonly captionSm: {
159
+ readonly fontSize: "10px";
160
+ readonly lineHeight: 1.45;
161
+ readonly letterSpacing: "0.08em";
162
+ readonly fontWeight: 500;
163
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
164
+ };
165
+ /** Caption extra small - 8px */
166
+ readonly captionXs: {
167
+ readonly fontSize: "8px";
168
+ readonly lineHeight: 1.45;
169
+ readonly letterSpacing: "0.08em";
170
+ readonly fontWeight: 500;
171
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
172
+ };
173
+ /** Button text - 20px bold */
174
+ readonly buttonLg: {
175
+ readonly fontSize: "20px";
176
+ readonly lineHeight: 1.45;
177
+ readonly letterSpacing: "0.05em";
178
+ readonly fontWeight: 700;
179
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
180
+ };
181
+ /** Button text - 18px bold */
182
+ readonly buttonMd: {
183
+ readonly fontSize: "18px";
184
+ readonly lineHeight: 1.45;
185
+ readonly letterSpacing: "0.05em";
186
+ readonly fontWeight: 700;
187
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
188
+ };
189
+ /** Price text - 25px */
190
+ readonly priceLg: {
191
+ readonly fontSize: "25px";
192
+ readonly lineHeight: 1.45;
193
+ readonly letterSpacing: "0.05em";
194
+ readonly fontWeight: 700;
195
+ readonly fontFamily: "\"A-OTF Shuei NGo Kin StdN\", \"Noto Sans JP\", sans-serif";
196
+ };
197
+ /** Price text - 14px */
198
+ readonly priceSm: {
199
+ readonly fontSize: "14px";
200
+ readonly lineHeight: 1.45;
201
+ readonly letterSpacing: "0.05em";
202
+ readonly fontWeight: 700;
203
+ readonly fontFamily: "\"A-OTF Shuei NGo Kin StdN\", \"Noto Sans JP\", sans-serif";
204
+ };
205
+ };
206
+ /** Type for typography tokens */
207
+ type Typography = typeof typography;
208
+ type TypographyKey = keyof Typography;
209
+
210
+ /**
211
+ * Futsuno Design System - Spacing Tokens
212
+ * Extracted from Figma Design System
213
+ */
214
+ /** Spacing scale in pixels */
215
+ declare const spacing: {
216
+ /** 4px */
217
+ readonly '4': "4px";
218
+ /** 8px */
219
+ readonly '8': "8px";
220
+ /** 12px */
221
+ readonly '12': "12px";
222
+ /** 16px */
223
+ readonly '16': "16px";
224
+ /** 24px */
225
+ readonly '24': "24px";
226
+ /** 32px */
227
+ readonly '32': "32px";
228
+ /** 40px */
229
+ readonly '40': "40px";
230
+ /** 48px */
231
+ readonly '48': "48px";
232
+ };
233
+ /** Spacing as numbers (for calculations) */
234
+ declare const spacingValues: {
235
+ readonly '4': 4;
236
+ readonly '8': 8;
237
+ readonly '12': 12;
238
+ readonly '16': 16;
239
+ readonly '24': 24;
240
+ readonly '32': 32;
241
+ readonly '40': 40;
242
+ readonly '48': 48;
243
+ };
244
+ /** Border radius tokens */
245
+ declare const borderRadius: {
246
+ /** Button border radius - 3px */
247
+ readonly button: "3px";
248
+ /** Small radius - 2px */
249
+ readonly sm: "2px";
250
+ /** Badge radius - 55px (circular) */
251
+ readonly badge: "55px";
252
+ /** Full circle */
253
+ readonly full: "9999px";
254
+ };
255
+ /** Box shadow tokens */
256
+ declare const boxShadow: {
257
+ /** Button shadow */
258
+ readonly button: "0px 4px 16px 0px rgba(4, 4, 4, 0.4)";
259
+ /** None */
260
+ readonly none: "none";
261
+ };
262
+ /** Type for spacing tokens */
263
+ type Spacing = typeof spacing;
264
+ type SpacingKey = keyof Spacing;
265
+
266
+ /**
267
+ * Futsuno Design System - Design Tokens
268
+ * All design tokens extracted from Figma
269
+ */
270
+
271
+ /** Combined tokens object for convenience */
272
+ declare const tokens: {
273
+ readonly colors: {
274
+ readonly black: "#040404";
275
+ readonly white: "#FFFFFF";
276
+ readonly gray: {
277
+ readonly 900: "#464646";
278
+ readonly 400: "#BDC1C2";
279
+ readonly 200: "#E5E6E6";
280
+ readonly 100: "#E5E6E6";
281
+ };
282
+ readonly background: {
283
+ readonly gray: "#F2F3F1";
284
+ };
285
+ readonly accent: {
286
+ readonly gold: "#978E5F";
287
+ readonly blue: "#457D99";
288
+ readonly red: "#CC5E58";
289
+ };
290
+ readonly button: {
291
+ readonly black: "#464646";
292
+ readonly red: "#CC5E58";
293
+ readonly gold: "#978E5F";
294
+ readonly white: "#FFFFFF";
295
+ };
296
+ readonly text: {
297
+ readonly primary: "#040404";
298
+ readonly secondary: "#464646";
299
+ readonly inverse: "#FFFFFF";
300
+ readonly accent: "#CC5E58";
301
+ };
302
+ };
303
+ readonly typography: {
304
+ readonly h1: {
305
+ readonly fontSize: "24px";
306
+ readonly lineHeight: 1.55;
307
+ readonly letterSpacing: "0.16em";
308
+ readonly fontWeight: 500;
309
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
310
+ };
311
+ readonly h2: {
312
+ readonly fontSize: "22px";
313
+ readonly lineHeight: 1.55;
314
+ readonly letterSpacing: "0.16em";
315
+ readonly fontWeight: 500;
316
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
317
+ };
318
+ readonly h3: {
319
+ readonly fontSize: "20px";
320
+ readonly lineHeight: 1.35;
321
+ readonly letterSpacing: "0.16em";
322
+ readonly fontWeight: 500;
323
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
324
+ };
325
+ readonly h4: {
326
+ readonly fontSize: "18px";
327
+ readonly lineHeight: 1.45;
328
+ readonly letterSpacing: "0.16em";
329
+ readonly fontWeight: 500;
330
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
331
+ };
332
+ readonly bodyLg: {
333
+ readonly fontSize: "16px";
334
+ readonly lineHeight: 1.95;
335
+ readonly letterSpacing: "0.08em";
336
+ readonly fontWeight: 500;
337
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
338
+ };
339
+ readonly bodyMd: {
340
+ readonly fontSize: "15px";
341
+ readonly lineHeight: 1.85;
342
+ readonly letterSpacing: "0.08em";
343
+ readonly fontWeight: 500;
344
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
345
+ };
346
+ readonly bodySm: {
347
+ readonly fontSize: "13px";
348
+ readonly lineHeight: 1.85;
349
+ readonly letterSpacing: "0.08em";
350
+ readonly fontWeight: 500;
351
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
352
+ };
353
+ readonly captionLg: {
354
+ readonly fontSize: "12px";
355
+ readonly lineHeight: 1.45;
356
+ readonly letterSpacing: "0.08em";
357
+ readonly fontWeight: 500;
358
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
359
+ };
360
+ readonly captionMd: {
361
+ readonly fontSize: "11px";
362
+ readonly lineHeight: 1.45;
363
+ readonly letterSpacing: "0.08em";
364
+ readonly fontWeight: 500;
365
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
366
+ };
367
+ readonly captionSm: {
368
+ readonly fontSize: "10px";
369
+ readonly lineHeight: 1.45;
370
+ readonly letterSpacing: "0.08em";
371
+ readonly fontWeight: 500;
372
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
373
+ };
374
+ readonly captionXs: {
375
+ readonly fontSize: "8px";
376
+ readonly lineHeight: 1.45;
377
+ readonly letterSpacing: "0.08em";
378
+ readonly fontWeight: 500;
379
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
380
+ };
381
+ readonly buttonLg: {
382
+ readonly fontSize: "20px";
383
+ readonly lineHeight: 1.45;
384
+ readonly letterSpacing: "0.05em";
385
+ readonly fontWeight: 700;
386
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
387
+ };
388
+ readonly buttonMd: {
389
+ readonly fontSize: "18px";
390
+ readonly lineHeight: 1.45;
391
+ readonly letterSpacing: "0.05em";
392
+ readonly fontWeight: 700;
393
+ readonly fontFamily: "\"Noto Sans JP\", sans-serif";
394
+ };
395
+ readonly priceLg: {
396
+ readonly fontSize: "25px";
397
+ readonly lineHeight: 1.45;
398
+ readonly letterSpacing: "0.05em";
399
+ readonly fontWeight: 700;
400
+ readonly fontFamily: "\"A-OTF Shuei NGo Kin StdN\", \"Noto Sans JP\", sans-serif";
401
+ };
402
+ readonly priceSm: {
403
+ readonly fontSize: "14px";
404
+ readonly lineHeight: 1.45;
405
+ readonly letterSpacing: "0.05em";
406
+ readonly fontWeight: 700;
407
+ readonly fontFamily: "\"A-OTF Shuei NGo Kin StdN\", \"Noto Sans JP\", sans-serif";
408
+ };
409
+ };
410
+ readonly spacing: {
411
+ readonly '4': "4px";
412
+ readonly '8': "8px";
413
+ readonly '12': "12px";
414
+ readonly '16': "16px";
415
+ readonly '24': "24px";
416
+ readonly '32': "32px";
417
+ readonly '40': "40px";
418
+ readonly '48': "48px";
419
+ };
420
+ readonly borderRadius: {
421
+ readonly button: "3px";
422
+ readonly sm: "2px";
423
+ readonly badge: "55px";
424
+ readonly full: "9999px";
425
+ };
426
+ readonly boxShadow: {
427
+ readonly button: "0px 4px 16px 0px rgba(4, 4, 4, 0.4)";
428
+ readonly none: "none";
429
+ };
430
+ };
431
+
432
+ export { type Colors, type Spacing, type SpacingKey, type Typography, type TypographyKey, borderRadius, boxShadow, colorPalette, colors, fontFamily, fontWeight, spacing, spacingValues, tokens, typography };
@@ -0,0 +1,252 @@
1
+ // src/tokens/colors.ts
2
+ var colors = {
3
+ /** Primary black color - #040404 */
4
+ black: "#040404",
5
+ /** Primary white color - #FFFFFF */
6
+ white: "#FFFFFF",
7
+ /** Gray scale colors */
8
+ gray: {
9
+ /** Dark gray - #464646 - Used for buttons, secondary text */
10
+ 900: "#464646",
11
+ /** Medium gray - #BDC1C2 - Used for borders */
12
+ 400: "#BDC1C2",
13
+ /** Light gray - #E5E6E6 - Used for backgrounds */
14
+ 200: "#E5E6E6",
15
+ /** Lightest gray - #E5E6E6 */
16
+ 100: "#E5E6E6"
17
+ },
18
+ /** Background colors */
19
+ background: {
20
+ /** Section background gray - #F2F3F1 */
21
+ gray: "#F2F3F1"
22
+ },
23
+ /** Accent colors */
24
+ accent: {
25
+ /** Gold accent - #978E5F - Used for badges, premium elements */
26
+ gold: "#978E5F",
27
+ /** Blue accent - #457D99 */
28
+ blue: "#457D99",
29
+ /** Red accent - #CC5E58 - Used for CTAs, emphasis */
30
+ red: "#CC5E58"
31
+ },
32
+ /** Button colors - semantic aliases */
33
+ button: {
34
+ black: "#464646",
35
+ red: "#CC5E58",
36
+ gold: "#978E5F",
37
+ white: "#FFFFFF"
38
+ },
39
+ /** Text colors - semantic aliases */
40
+ text: {
41
+ primary: "#040404",
42
+ secondary: "#464646",
43
+ inverse: "#FFFFFF",
44
+ accent: "#CC5E58"
45
+ }
46
+ };
47
+ var colorPalette = {
48
+ "--color-black": colors.black,
49
+ "--color-white": colors.white,
50
+ "--color-gray-900": colors.gray[900],
51
+ "--color-gray-400": colors.gray[400],
52
+ "--color-gray-200": colors.gray[200],
53
+ "--color-gray-100": colors.gray[100],
54
+ "--color-background-gray": colors.background.gray,
55
+ "--color-accent-gold": colors.accent.gold,
56
+ "--color-accent-blue": colors.accent.blue,
57
+ "--color-accent-red": colors.accent.red
58
+ };
59
+
60
+ // src/tokens/typography.ts
61
+ var fontFamily = {
62
+ /** Primary font - Noto Sans JP */
63
+ primary: '"Noto Sans JP", sans-serif',
64
+ /** Secondary font for prices - A-OTF Shuei NGo Kin StdN */
65
+ price: '"A-OTF Shuei NGo Kin StdN", "Noto Sans JP", sans-serif'
66
+ };
67
+ var fontWeight = {
68
+ regular: 400,
69
+ medium: 500,
70
+ bold: 700
71
+ };
72
+ var typography = {
73
+ /** Heading 1 - 24px */
74
+ h1: {
75
+ fontSize: "24px",
76
+ lineHeight: 1.55,
77
+ letterSpacing: "0.16em",
78
+ fontWeight: fontWeight.medium,
79
+ fontFamily: fontFamily.primary
80
+ },
81
+ /** Heading 2 - 22px */
82
+ h2: {
83
+ fontSize: "22px",
84
+ lineHeight: 1.55,
85
+ letterSpacing: "0.16em",
86
+ fontWeight: fontWeight.medium,
87
+ fontFamily: fontFamily.primary
88
+ },
89
+ /** Heading 3 - 20px */
90
+ h3: {
91
+ fontSize: "20px",
92
+ lineHeight: 1.35,
93
+ letterSpacing: "0.16em",
94
+ fontWeight: fontWeight.medium,
95
+ fontFamily: fontFamily.primary
96
+ },
97
+ /** Heading 4 - 18px */
98
+ h4: {
99
+ fontSize: "18px",
100
+ lineHeight: 1.45,
101
+ letterSpacing: "0.16em",
102
+ fontWeight: fontWeight.medium,
103
+ fontFamily: fontFamily.primary
104
+ },
105
+ /** Body large - 16px */
106
+ bodyLg: {
107
+ fontSize: "16px",
108
+ lineHeight: 1.95,
109
+ letterSpacing: "0.08em",
110
+ fontWeight: fontWeight.medium,
111
+ fontFamily: fontFamily.primary
112
+ },
113
+ /** Body medium - 15px */
114
+ bodyMd: {
115
+ fontSize: "15px",
116
+ lineHeight: 1.85,
117
+ letterSpacing: "0.08em",
118
+ fontWeight: fontWeight.medium,
119
+ fontFamily: fontFamily.primary
120
+ },
121
+ /** Body small - 13px */
122
+ bodySm: {
123
+ fontSize: "13px",
124
+ lineHeight: 1.85,
125
+ letterSpacing: "0.08em",
126
+ fontWeight: fontWeight.medium,
127
+ fontFamily: fontFamily.primary
128
+ },
129
+ /** Caption large - 12px */
130
+ captionLg: {
131
+ fontSize: "12px",
132
+ lineHeight: 1.45,
133
+ letterSpacing: "0.08em",
134
+ fontWeight: fontWeight.medium,
135
+ fontFamily: fontFamily.primary
136
+ },
137
+ /** Caption medium - 11px */
138
+ captionMd: {
139
+ fontSize: "11px",
140
+ lineHeight: 1.45,
141
+ letterSpacing: "0.08em",
142
+ fontWeight: fontWeight.medium,
143
+ fontFamily: fontFamily.primary
144
+ },
145
+ /** Caption small - 10px */
146
+ captionSm: {
147
+ fontSize: "10px",
148
+ lineHeight: 1.45,
149
+ letterSpacing: "0.08em",
150
+ fontWeight: fontWeight.medium,
151
+ fontFamily: fontFamily.primary
152
+ },
153
+ /** Caption extra small - 8px */
154
+ captionXs: {
155
+ fontSize: "8px",
156
+ lineHeight: 1.45,
157
+ letterSpacing: "0.08em",
158
+ fontWeight: fontWeight.medium,
159
+ fontFamily: fontFamily.primary
160
+ },
161
+ /** Button text - 20px bold */
162
+ buttonLg: {
163
+ fontSize: "20px",
164
+ lineHeight: 1.45,
165
+ letterSpacing: "0.05em",
166
+ fontWeight: fontWeight.bold,
167
+ fontFamily: fontFamily.primary
168
+ },
169
+ /** Button text - 18px bold */
170
+ buttonMd: {
171
+ fontSize: "18px",
172
+ lineHeight: 1.45,
173
+ letterSpacing: "0.05em",
174
+ fontWeight: fontWeight.bold,
175
+ fontFamily: fontFamily.primary
176
+ },
177
+ /** Price text - 25px */
178
+ priceLg: {
179
+ fontSize: "25px",
180
+ lineHeight: 1.45,
181
+ letterSpacing: "0.05em",
182
+ fontWeight: fontWeight.bold,
183
+ fontFamily: fontFamily.price
184
+ },
185
+ /** Price text - 14px */
186
+ priceSm: {
187
+ fontSize: "14px",
188
+ lineHeight: 1.45,
189
+ letterSpacing: "0.05em",
190
+ fontWeight: fontWeight.bold,
191
+ fontFamily: fontFamily.price
192
+ }
193
+ };
194
+
195
+ // src/tokens/spacing.ts
196
+ var spacing = {
197
+ /** 4px */
198
+ "4": "4px",
199
+ /** 8px */
200
+ "8": "8px",
201
+ /** 12px */
202
+ "12": "12px",
203
+ /** 16px */
204
+ "16": "16px",
205
+ /** 24px */
206
+ "24": "24px",
207
+ /** 32px */
208
+ "32": "32px",
209
+ /** 40px */
210
+ "40": "40px",
211
+ /** 48px */
212
+ "48": "48px"
213
+ };
214
+ var spacingValues = {
215
+ "4": 4,
216
+ "8": 8,
217
+ "12": 12,
218
+ "16": 16,
219
+ "24": 24,
220
+ "32": 32,
221
+ "40": 40,
222
+ "48": 48
223
+ };
224
+ var borderRadius = {
225
+ /** Button border radius - 3px */
226
+ button: "3px",
227
+ /** Small radius - 2px */
228
+ sm: "2px",
229
+ /** Badge radius - 55px (circular) */
230
+ badge: "55px",
231
+ /** Full circle */
232
+ full: "9999px"
233
+ };
234
+ var boxShadow = {
235
+ /** Button shadow */
236
+ button: "0px 4px 16px 0px rgba(4, 4, 4, 0.4)",
237
+ /** None */
238
+ none: "none"
239
+ };
240
+
241
+ // src/tokens/index.ts
242
+ var tokens = {
243
+ colors,
244
+ typography,
245
+ spacing,
246
+ borderRadius,
247
+ boxShadow
248
+ };
249
+
250
+ export { borderRadius, boxShadow, colorPalette, colors, fontFamily, fontWeight, spacing, spacingValues, tokens, typography };
251
+ //# sourceMappingURL=index.js.map
252
+ //# sourceMappingURL=index.js.map