@drdex0101/water-design-system 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,208 @@
1
+ /**
2
+ * Water Design System - Semantic Color Tokens
3
+ *
4
+ * Extracted from Figma Water Design System
5
+ * Semantic colors map primitive colors to their functional use.
6
+ *
7
+ * Usage Rules:
8
+ * 1. Semantic colors describe the color itself (e.g., Blue), not its function (e.g., Action)
9
+ * 2. When creating standalone components or designing calculated targets, choose Gray-900 or Blue-500 as base (Primitive Color)
10
+ * 3. Semantic colors must match human visual cognition and brand requirements
11
+ * 4. Semantic colors do not exist in isolation, they must work within the system. For example,
12
+ * on bg-secondary background, prioritize text-secondary pairing to maintain hierarchy
13
+ */
14
+ export declare const background: {
15
+ readonly light: {
16
+ readonly default: "#ffffff";
17
+ readonly secondary: "#f7f8f9";
18
+ readonly tertiary: "#f3f4f6";
19
+ readonly overlay: "#2a2d33";
20
+ readonly disabled: "#eeeff2";
21
+ readonly success: "#e7f7ed";
22
+ readonly error: "#fdecec";
23
+ readonly warning: "#fef7e6";
24
+ readonly brand: "#2e9dff";
25
+ readonly brandSubtle: "#eaf5ff";
26
+ readonly accent: "#e77300";
27
+ readonly accent2: "#e77300";
28
+ };
29
+ readonly dark: {
30
+ readonly default: "#2a2d33";
31
+ readonly secondary: "#363a43";
32
+ readonly tertiary: "#464b56";
33
+ readonly overlay: "#000000";
34
+ readonly disabled: "#464b56";
35
+ readonly success: "#05491e";
36
+ readonly error: "#641d1d";
37
+ readonly warning: "#654a00";
38
+ readonly brand: "#2e9dff";
39
+ readonly brandSubtle: "#13426b";
40
+ readonly accent: "#e77300";
41
+ readonly accent2: "#e77300";
42
+ };
43
+ };
44
+ export declare const text: {
45
+ readonly light: {
46
+ readonly primary: "#2a2d33";
47
+ readonly secondary: "#5a606e";
48
+ readonly tertiary: "#636a79";
49
+ readonly disabled: "#828894";
50
+ readonly placeholder: "#828894";
51
+ readonly success: "#0a9d41";
52
+ readonly error: "#d93e3e";
53
+ readonly warning: "#aa7e00";
54
+ readonly link: "#2e9dff";
55
+ readonly brand: "#2e9dff";
56
+ readonly onBrand: "#ffffff";
57
+ readonly pokerCall: "#0bad47";
58
+ readonly pokerRaise: "#e77300";
59
+ };
60
+ readonly dark: {
61
+ readonly primary: "#ffffff";
62
+ readonly secondary: "#969ba5";
63
+ readonly tertiary: "#828894";
64
+ readonly disabled: "#636a79";
65
+ readonly placeholder: "#636a79";
66
+ readonly success: "#3cbd6c";
67
+ readonly error: "#f26969";
68
+ readonly warning: "#f3c133";
69
+ readonly link: "#58b1ff";
70
+ readonly brand: "#58b1ff";
71
+ readonly onBrand: "#ffffff";
72
+ readonly pokerCall: "#3cbd6c";
73
+ readonly pokerRaise: "#ec8f33";
74
+ };
75
+ };
76
+ export declare const border: {
77
+ readonly light: {
78
+ readonly primary: "#969ba5";
79
+ readonly subtle: "#b7bac1";
80
+ readonly focus: "#2e9dff";
81
+ readonly success: "#0bad47";
82
+ readonly error: "#ef4444";
83
+ readonly warning: "#f0b100";
84
+ };
85
+ readonly dark: {
86
+ readonly primary: "#5a606e";
87
+ readonly subtle: "#464b56";
88
+ readonly focus: "#58b1ff";
89
+ readonly success: "#3cbd6c";
90
+ readonly error: "#f26969";
91
+ readonly warning: "#f3c133";
92
+ };
93
+ };
94
+ export declare const semanticColors: {
95
+ readonly background: {
96
+ readonly light: {
97
+ readonly default: "#ffffff";
98
+ readonly secondary: "#f7f8f9";
99
+ readonly tertiary: "#f3f4f6";
100
+ readonly overlay: "#2a2d33";
101
+ readonly disabled: "#eeeff2";
102
+ readonly success: "#e7f7ed";
103
+ readonly error: "#fdecec";
104
+ readonly warning: "#fef7e6";
105
+ readonly brand: "#2e9dff";
106
+ readonly brandSubtle: "#eaf5ff";
107
+ readonly accent: "#e77300";
108
+ readonly accent2: "#e77300";
109
+ };
110
+ readonly dark: {
111
+ readonly default: "#2a2d33";
112
+ readonly secondary: "#363a43";
113
+ readonly tertiary: "#464b56";
114
+ readonly overlay: "#000000";
115
+ readonly disabled: "#464b56";
116
+ readonly success: "#05491e";
117
+ readonly error: "#641d1d";
118
+ readonly warning: "#654a00";
119
+ readonly brand: "#2e9dff";
120
+ readonly brandSubtle: "#13426b";
121
+ readonly accent: "#e77300";
122
+ readonly accent2: "#e77300";
123
+ };
124
+ };
125
+ readonly text: {
126
+ readonly light: {
127
+ readonly primary: "#2a2d33";
128
+ readonly secondary: "#5a606e";
129
+ readonly tertiary: "#636a79";
130
+ readonly disabled: "#828894";
131
+ readonly placeholder: "#828894";
132
+ readonly success: "#0a9d41";
133
+ readonly error: "#d93e3e";
134
+ readonly warning: "#aa7e00";
135
+ readonly link: "#2e9dff";
136
+ readonly brand: "#2e9dff";
137
+ readonly onBrand: "#ffffff";
138
+ readonly pokerCall: "#0bad47";
139
+ readonly pokerRaise: "#e77300";
140
+ };
141
+ readonly dark: {
142
+ readonly primary: "#ffffff";
143
+ readonly secondary: "#969ba5";
144
+ readonly tertiary: "#828894";
145
+ readonly disabled: "#636a79";
146
+ readonly placeholder: "#636a79";
147
+ readonly success: "#3cbd6c";
148
+ readonly error: "#f26969";
149
+ readonly warning: "#f3c133";
150
+ readonly link: "#58b1ff";
151
+ readonly brand: "#58b1ff";
152
+ readonly onBrand: "#ffffff";
153
+ readonly pokerCall: "#3cbd6c";
154
+ readonly pokerRaise: "#ec8f33";
155
+ };
156
+ };
157
+ readonly border: {
158
+ readonly light: {
159
+ readonly primary: "#969ba5";
160
+ readonly subtle: "#b7bac1";
161
+ readonly focus: "#2e9dff";
162
+ readonly success: "#0bad47";
163
+ readonly error: "#ef4444";
164
+ readonly warning: "#f0b100";
165
+ };
166
+ readonly dark: {
167
+ readonly primary: "#5a606e";
168
+ readonly subtle: "#464b56";
169
+ readonly focus: "#58b1ff";
170
+ readonly success: "#3cbd6c";
171
+ readonly error: "#f26969";
172
+ readonly warning: "#f3c133";
173
+ };
174
+ };
175
+ };
176
+ export declare const bgDefault: "#ffffff";
177
+ export declare const bgSecondary: "#f7f8f9";
178
+ export declare const bgTertiary: "#f3f4f6";
179
+ export declare const bgOverlay: "#2a2d33";
180
+ export declare const bgDisabled: "#eeeff2";
181
+ export declare const bgSuccess: "#e7f7ed";
182
+ export declare const bgError: "#fdecec";
183
+ export declare const bgWarning: "#fef7e6";
184
+ export declare const bgBrand: "#2e9dff";
185
+ export declare const bgBrandSubtle: "#eaf5ff";
186
+ export declare const bgAccent: "#e77300";
187
+ export declare const textPrimary: "#2a2d33";
188
+ export declare const textSecondary: "#5a606e";
189
+ export declare const textTertiary: "#636a79";
190
+ export declare const textDisabled: "#828894";
191
+ export declare const textPlaceholder: "#828894";
192
+ export declare const textSuccess: "#0a9d41";
193
+ export declare const textError: "#d93e3e";
194
+ export declare const textWarning: "#aa7e00";
195
+ export declare const textLink: "#2e9dff";
196
+ export declare const textBrand: "#2e9dff";
197
+ export declare const textOnBrand: "#ffffff";
198
+ export declare const borderPrimary: "#969ba5";
199
+ export declare const borderSubtle: "#b7bac1";
200
+ export declare const borderFocus: "#2e9dff";
201
+ export declare const borderSuccess: "#0bad47";
202
+ export declare const borderError: "#ef4444";
203
+ export declare const borderWarning: "#f0b100";
204
+ export type BackgroundColor = keyof typeof background.light;
205
+ export type TextColor = keyof typeof text.light;
206
+ export type BorderColor = keyof typeof border.light;
207
+ export type ThemeMode = 'light' | 'dark';
208
+ export type SemanticColors = typeof semanticColors;
@@ -0,0 +1,490 @@
1
+ /**
2
+ * Water Design System - Typography Tokens
3
+ *
4
+ * Extracted from Figma Water Design System
5
+ *
6
+ * Font Family: Inter (primary), Noto Sans TC (Chinese fallback)
7
+ *
8
+ * Usage Rules:
9
+ * 1. Use semantic typography tokens (e.g., display, h1, bodyLg) instead of raw values
10
+ * 2. Mobile scale is the default; desktop scale is used for larger screens
11
+ * 3. Maintain consistent line heights: 1.5 for headings, 1.2 for body text
12
+ */
13
+ export declare const fontFamily: {
14
+ readonly main: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
15
+ readonly mono: "'SF Mono', 'Fira Code', 'Fira Mono', Menlo, Consolas, monospace";
16
+ };
17
+ export declare const fontWeight: {
18
+ readonly regular: 400;
19
+ readonly medium: 500;
20
+ readonly semibold: 600;
21
+ readonly bold: 700;
22
+ };
23
+ export declare const lineHeight: {
24
+ readonly tight: 1.2;
25
+ readonly normal: 1.5;
26
+ };
27
+ export declare const fontSize: {
28
+ readonly mobile: {
29
+ readonly display: 28;
30
+ readonly h1: 24;
31
+ readonly h2: 20;
32
+ readonly bodyLg: 16;
33
+ readonly bodyMd: 14;
34
+ readonly bodySm: 12;
35
+ readonly caption: 10;
36
+ readonly poker: 8;
37
+ };
38
+ readonly desktop: {
39
+ readonly display: 40;
40
+ readonly h1: 32;
41
+ readonly h2: 24;
42
+ readonly bodyLg: 18;
43
+ readonly bodyMd: 16;
44
+ readonly bodySm: 14;
45
+ readonly caption: 12;
46
+ readonly poker: 10;
47
+ };
48
+ };
49
+ export interface TypographyStyle {
50
+ fontSize: number;
51
+ fontWeight: number;
52
+ lineHeight: number;
53
+ fontFamily: string;
54
+ }
55
+ export declare const typographyMobile: {
56
+ readonly display: {
57
+ readonly fontSize: 28;
58
+ readonly fontWeight: 600;
59
+ readonly lineHeight: 1.5;
60
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
61
+ };
62
+ readonly h1: {
63
+ readonly fontSize: 24;
64
+ readonly fontWeight: 600;
65
+ readonly lineHeight: 1.5;
66
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
67
+ };
68
+ readonly h2: {
69
+ readonly fontSize: 20;
70
+ readonly fontWeight: 600;
71
+ readonly lineHeight: 1.5;
72
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
73
+ };
74
+ readonly bodyLgBold: {
75
+ readonly fontSize: 16;
76
+ readonly fontWeight: 700;
77
+ readonly lineHeight: 1.2;
78
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
79
+ };
80
+ readonly bodyLgMedium: {
81
+ readonly fontSize: 16;
82
+ readonly fontWeight: 500;
83
+ readonly lineHeight: 1.2;
84
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
85
+ };
86
+ readonly bodyLgRegular: {
87
+ readonly fontSize: 16;
88
+ readonly fontWeight: 400;
89
+ readonly lineHeight: 1.5;
90
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
91
+ };
92
+ readonly bodyMdSemiBold: {
93
+ readonly fontSize: 14;
94
+ readonly fontWeight: 600;
95
+ readonly lineHeight: 1.2;
96
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
97
+ };
98
+ readonly bodyMdMedium: {
99
+ readonly fontSize: 14;
100
+ readonly fontWeight: 500;
101
+ readonly lineHeight: 1.2;
102
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
103
+ };
104
+ readonly bodyMdRegular: {
105
+ readonly fontSize: 14;
106
+ readonly fontWeight: 400;
107
+ readonly lineHeight: 1.5;
108
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
109
+ };
110
+ readonly bodySmSemiBold: {
111
+ readonly fontSize: 12;
112
+ readonly fontWeight: 600;
113
+ readonly lineHeight: 1.2;
114
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
115
+ };
116
+ readonly bodySmMedium: {
117
+ readonly fontSize: 12;
118
+ readonly fontWeight: 500;
119
+ readonly lineHeight: 1.2;
120
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
121
+ };
122
+ readonly bodySmRegular: {
123
+ readonly fontSize: 12;
124
+ readonly fontWeight: 400;
125
+ readonly lineHeight: 1.2;
126
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
127
+ };
128
+ readonly captionSemiBold: {
129
+ readonly fontSize: 10;
130
+ readonly fontWeight: 600;
131
+ readonly lineHeight: 1.2;
132
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
133
+ };
134
+ readonly captionMedium: {
135
+ readonly fontSize: 10;
136
+ readonly fontWeight: 500;
137
+ readonly lineHeight: 1.2;
138
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
139
+ };
140
+ readonly captionRegular: {
141
+ readonly fontSize: 10;
142
+ readonly fontWeight: 400;
143
+ readonly lineHeight: 1.2;
144
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
145
+ };
146
+ readonly pokerMedium: {
147
+ readonly fontSize: 8;
148
+ readonly fontWeight: 500;
149
+ readonly lineHeight: 1.2;
150
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
151
+ };
152
+ };
153
+ export declare const typographyDesktop: {
154
+ readonly display: {
155
+ readonly fontSize: 40;
156
+ readonly fontWeight: 600;
157
+ readonly lineHeight: 1.5;
158
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
159
+ };
160
+ readonly h1: {
161
+ readonly fontSize: 32;
162
+ readonly fontWeight: 600;
163
+ readonly lineHeight: 1.5;
164
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
165
+ };
166
+ readonly h2: {
167
+ readonly fontSize: 24;
168
+ readonly fontWeight: 600;
169
+ readonly lineHeight: 1.5;
170
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
171
+ };
172
+ readonly bodyLgBold: {
173
+ readonly fontSize: 18;
174
+ readonly fontWeight: 700;
175
+ readonly lineHeight: 1.2;
176
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
177
+ };
178
+ readonly bodyLgMedium: {
179
+ readonly fontSize: 18;
180
+ readonly fontWeight: 500;
181
+ readonly lineHeight: 1.2;
182
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
183
+ };
184
+ readonly bodyLgRegular: {
185
+ readonly fontSize: 18;
186
+ readonly fontWeight: 400;
187
+ readonly lineHeight: 1.5;
188
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
189
+ };
190
+ readonly bodyMdSemiBold: {
191
+ readonly fontSize: 16;
192
+ readonly fontWeight: 600;
193
+ readonly lineHeight: 1.2;
194
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
195
+ };
196
+ readonly bodyMdMedium: {
197
+ readonly fontSize: 16;
198
+ readonly fontWeight: 500;
199
+ readonly lineHeight: 1.2;
200
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
201
+ };
202
+ readonly bodyMdRegular: {
203
+ readonly fontSize: 16;
204
+ readonly fontWeight: 400;
205
+ readonly lineHeight: 1.5;
206
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
207
+ };
208
+ readonly bodySmSemiBold: {
209
+ readonly fontSize: 14;
210
+ readonly fontWeight: 600;
211
+ readonly lineHeight: 1.2;
212
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
213
+ };
214
+ readonly bodySmMedium: {
215
+ readonly fontSize: 14;
216
+ readonly fontWeight: 500;
217
+ readonly lineHeight: 1.2;
218
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
219
+ };
220
+ readonly bodySmRegular: {
221
+ readonly fontSize: 14;
222
+ readonly fontWeight: 400;
223
+ readonly lineHeight: 1.2;
224
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
225
+ };
226
+ readonly captionSemiBold: {
227
+ readonly fontSize: 12;
228
+ readonly fontWeight: 600;
229
+ readonly lineHeight: 1.2;
230
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
231
+ };
232
+ readonly captionMedium: {
233
+ readonly fontSize: 12;
234
+ readonly fontWeight: 500;
235
+ readonly lineHeight: 1.2;
236
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
237
+ };
238
+ readonly captionRegular: {
239
+ readonly fontSize: 12;
240
+ readonly fontWeight: 400;
241
+ readonly lineHeight: 1.2;
242
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
243
+ };
244
+ readonly pokerMedium: {
245
+ readonly fontSize: 10;
246
+ readonly fontWeight: 500;
247
+ readonly lineHeight: 1.2;
248
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
249
+ };
250
+ };
251
+ export declare const typography: {
252
+ readonly fontFamily: {
253
+ readonly main: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
254
+ readonly mono: "'SF Mono', 'Fira Code', 'Fira Mono', Menlo, Consolas, monospace";
255
+ };
256
+ readonly fontWeight: {
257
+ readonly regular: 400;
258
+ readonly medium: 500;
259
+ readonly semibold: 600;
260
+ readonly bold: 700;
261
+ };
262
+ readonly lineHeight: {
263
+ readonly tight: 1.2;
264
+ readonly normal: 1.5;
265
+ };
266
+ readonly fontSize: {
267
+ readonly mobile: {
268
+ readonly display: 28;
269
+ readonly h1: 24;
270
+ readonly h2: 20;
271
+ readonly bodyLg: 16;
272
+ readonly bodyMd: 14;
273
+ readonly bodySm: 12;
274
+ readonly caption: 10;
275
+ readonly poker: 8;
276
+ };
277
+ readonly desktop: {
278
+ readonly display: 40;
279
+ readonly h1: 32;
280
+ readonly h2: 24;
281
+ readonly bodyLg: 18;
282
+ readonly bodyMd: 16;
283
+ readonly bodySm: 14;
284
+ readonly caption: 12;
285
+ readonly poker: 10;
286
+ };
287
+ };
288
+ readonly mobile: {
289
+ readonly display: {
290
+ readonly fontSize: 28;
291
+ readonly fontWeight: 600;
292
+ readonly lineHeight: 1.5;
293
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
294
+ };
295
+ readonly h1: {
296
+ readonly fontSize: 24;
297
+ readonly fontWeight: 600;
298
+ readonly lineHeight: 1.5;
299
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
300
+ };
301
+ readonly h2: {
302
+ readonly fontSize: 20;
303
+ readonly fontWeight: 600;
304
+ readonly lineHeight: 1.5;
305
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
306
+ };
307
+ readonly bodyLgBold: {
308
+ readonly fontSize: 16;
309
+ readonly fontWeight: 700;
310
+ readonly lineHeight: 1.2;
311
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
312
+ };
313
+ readonly bodyLgMedium: {
314
+ readonly fontSize: 16;
315
+ readonly fontWeight: 500;
316
+ readonly lineHeight: 1.2;
317
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
318
+ };
319
+ readonly bodyLgRegular: {
320
+ readonly fontSize: 16;
321
+ readonly fontWeight: 400;
322
+ readonly lineHeight: 1.5;
323
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
324
+ };
325
+ readonly bodyMdSemiBold: {
326
+ readonly fontSize: 14;
327
+ readonly fontWeight: 600;
328
+ readonly lineHeight: 1.2;
329
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
330
+ };
331
+ readonly bodyMdMedium: {
332
+ readonly fontSize: 14;
333
+ readonly fontWeight: 500;
334
+ readonly lineHeight: 1.2;
335
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
336
+ };
337
+ readonly bodyMdRegular: {
338
+ readonly fontSize: 14;
339
+ readonly fontWeight: 400;
340
+ readonly lineHeight: 1.5;
341
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
342
+ };
343
+ readonly bodySmSemiBold: {
344
+ readonly fontSize: 12;
345
+ readonly fontWeight: 600;
346
+ readonly lineHeight: 1.2;
347
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
348
+ };
349
+ readonly bodySmMedium: {
350
+ readonly fontSize: 12;
351
+ readonly fontWeight: 500;
352
+ readonly lineHeight: 1.2;
353
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
354
+ };
355
+ readonly bodySmRegular: {
356
+ readonly fontSize: 12;
357
+ readonly fontWeight: 400;
358
+ readonly lineHeight: 1.2;
359
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
360
+ };
361
+ readonly captionSemiBold: {
362
+ readonly fontSize: 10;
363
+ readonly fontWeight: 600;
364
+ readonly lineHeight: 1.2;
365
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
366
+ };
367
+ readonly captionMedium: {
368
+ readonly fontSize: 10;
369
+ readonly fontWeight: 500;
370
+ readonly lineHeight: 1.2;
371
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
372
+ };
373
+ readonly captionRegular: {
374
+ readonly fontSize: 10;
375
+ readonly fontWeight: 400;
376
+ readonly lineHeight: 1.2;
377
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
378
+ };
379
+ readonly pokerMedium: {
380
+ readonly fontSize: 8;
381
+ readonly fontWeight: 500;
382
+ readonly lineHeight: 1.2;
383
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
384
+ };
385
+ };
386
+ readonly desktop: {
387
+ readonly display: {
388
+ readonly fontSize: 40;
389
+ readonly fontWeight: 600;
390
+ readonly lineHeight: 1.5;
391
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
392
+ };
393
+ readonly h1: {
394
+ readonly fontSize: 32;
395
+ readonly fontWeight: 600;
396
+ readonly lineHeight: 1.5;
397
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
398
+ };
399
+ readonly h2: {
400
+ readonly fontSize: 24;
401
+ readonly fontWeight: 600;
402
+ readonly lineHeight: 1.5;
403
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
404
+ };
405
+ readonly bodyLgBold: {
406
+ readonly fontSize: 18;
407
+ readonly fontWeight: 700;
408
+ readonly lineHeight: 1.2;
409
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
410
+ };
411
+ readonly bodyLgMedium: {
412
+ readonly fontSize: 18;
413
+ readonly fontWeight: 500;
414
+ readonly lineHeight: 1.2;
415
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
416
+ };
417
+ readonly bodyLgRegular: {
418
+ readonly fontSize: 18;
419
+ readonly fontWeight: 400;
420
+ readonly lineHeight: 1.5;
421
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
422
+ };
423
+ readonly bodyMdSemiBold: {
424
+ readonly fontSize: 16;
425
+ readonly fontWeight: 600;
426
+ readonly lineHeight: 1.2;
427
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
428
+ };
429
+ readonly bodyMdMedium: {
430
+ readonly fontSize: 16;
431
+ readonly fontWeight: 500;
432
+ readonly lineHeight: 1.2;
433
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
434
+ };
435
+ readonly bodyMdRegular: {
436
+ readonly fontSize: 16;
437
+ readonly fontWeight: 400;
438
+ readonly lineHeight: 1.5;
439
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
440
+ };
441
+ readonly bodySmSemiBold: {
442
+ readonly fontSize: 14;
443
+ readonly fontWeight: 600;
444
+ readonly lineHeight: 1.2;
445
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
446
+ };
447
+ readonly bodySmMedium: {
448
+ readonly fontSize: 14;
449
+ readonly fontWeight: 500;
450
+ readonly lineHeight: 1.2;
451
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
452
+ };
453
+ readonly bodySmRegular: {
454
+ readonly fontSize: 14;
455
+ readonly fontWeight: 400;
456
+ readonly lineHeight: 1.2;
457
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
458
+ };
459
+ readonly captionSemiBold: {
460
+ readonly fontSize: 12;
461
+ readonly fontWeight: 600;
462
+ readonly lineHeight: 1.2;
463
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
464
+ };
465
+ readonly captionMedium: {
466
+ readonly fontSize: 12;
467
+ readonly fontWeight: 500;
468
+ readonly lineHeight: 1.2;
469
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
470
+ };
471
+ readonly captionRegular: {
472
+ readonly fontSize: 12;
473
+ readonly fontWeight: 400;
474
+ readonly lineHeight: 1.2;
475
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
476
+ };
477
+ readonly pokerMedium: {
478
+ readonly fontSize: 10;
479
+ readonly fontWeight: 500;
480
+ readonly lineHeight: 1.2;
481
+ readonly fontFamily: "'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Roboto, sans-serif";
482
+ };
483
+ };
484
+ };
485
+ export declare const getTypographyStyles: (style: TypographyStyle) => React.CSSProperties;
486
+ export type FontFamily = keyof typeof fontFamily;
487
+ export type FontWeight = keyof typeof fontWeight;
488
+ export type LineHeight = keyof typeof lineHeight;
489
+ export type TypographyToken = keyof typeof typographyMobile;
490
+ export type Typography = typeof typography;