@cieloazul310/digital-go-pandacss-plugin 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs ADDED
@@ -0,0 +1,795 @@
1
+ // src/index.ts
2
+ import { definePreset } from "@pandacss/dev";
3
+
4
+ // src/semanticTokens/index.ts
5
+ import { defineSemanticTokens } from "@pandacss/dev";
6
+
7
+ // src/semanticTokens/colors.ts
8
+ import { createKeyColor } from "@cieloazul310/digital-go-pandacss-utils";
9
+ var colors = {
10
+ keyColor: createKeyColor("blue"),
11
+ ring: { value: "{colors.yellow.300}" }
12
+ };
13
+ var colors_default = colors;
14
+
15
+ // src/semanticTokens/index.ts
16
+ var semanticTokens_default = defineSemanticTokens({
17
+ colors: colors_default,
18
+ fontWeights: {
19
+ N: { value: "{fontWeights.400}", description: "400 (normal)" },
20
+ B: { value: "{fontWeights.700}", description: "700 (bold)" }
21
+ }
22
+ });
23
+
24
+ // src/textStyles/index.ts
25
+ import { defineTextStyles } from "@pandacss/dev";
26
+ var textStylesMap = {
27
+ dsp: {
28
+ fontFamily: "body",
29
+ description: "Display\u30C6\u30AD\u30B9\u30C8\u306F\u3001\u4E3B\u306B\u5192\u982D\u3067\u5927\u304D\u304F\u63B2\u51FA\u3055\u308C\u308B\u30C6\u30AD\u30B9\u30C8\u3084\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u4F1D\u3048\u308B\u30D8\u30C3\u30C9\u30B3\u30D4\u30FC\u306A\u3069\u3001\u8996\u899A\u7684\u306A\u30A4\u30F3\u30D1\u30AF\u30C8\u3092\u5F37\u304F\u4E0E\u3048\u305F\u3044\u5834\u5408\u306B\u4F7F\u7528\u3055\u308C\u307E\u3059\u3002",
30
+ variants: [
31
+ /** Display(Dsp) Bold */
32
+ {
33
+ fontSize: 64,
34
+ fontWeight: "B",
35
+ lineHeight: 140
36
+ },
37
+ {
38
+ fontSize: 57,
39
+ fontWeight: "B",
40
+ lineHeight: 140
41
+ },
42
+ {
43
+ fontSize: 48,
44
+ fontWeight: "B",
45
+ lineHeight: 140
46
+ },
47
+ /** Display(Dsp) Normal */
48
+ {
49
+ fontSize: 64,
50
+ fontWeight: "N",
51
+ lineHeight: 140
52
+ },
53
+ {
54
+ fontSize: 57,
55
+ fontWeight: "N",
56
+ lineHeight: 140
57
+ },
58
+ {
59
+ fontSize: 48,
60
+ fontWeight: "N",
61
+ lineHeight: 140
62
+ }
63
+ ]
64
+ },
65
+ std: {
66
+ fontFamily: "body",
67
+ description: "Standard\u30C6\u30AD\u30B9\u30C8\u306F\u3001\u30DA\u30FC\u30B8\u306E\u6587\u66F8\u69CB\u9020\u3092\u5F62\u6210\u3059\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u306A\u3069\u3001\u591A\u304F\u306E\u8981\u7D20\u306B\u304A\u3044\u3066\u6700\u3082\u4F7F\u7528\u3055\u308C\u308B\u666E\u904D\u7684\u306A\u30C6\u30AD\u30B9\u30C8\u30B9\u30BF\u30A4\u30EB\u3067\u3059\u3002",
68
+ variants: [
69
+ /** Standard(Std) Bold */
70
+ {
71
+ fontSize: 45,
72
+ fontWeight: "B",
73
+ lineHeight: 140
74
+ },
75
+ {
76
+ fontSize: 36,
77
+ fontWeight: "B",
78
+ lineHeight: 140,
79
+ letterSpacing: 0.01
80
+ },
81
+ {
82
+ fontSize: 32,
83
+ fontWeight: "B",
84
+ lineHeight: 150,
85
+ letterSpacing: 0.01
86
+ },
87
+ {
88
+ fontSize: 28,
89
+ fontWeight: "B",
90
+ lineHeight: 150,
91
+ letterSpacing: 0.01
92
+ },
93
+ {
94
+ fontSize: 24,
95
+ fontWeight: "B",
96
+ lineHeight: 150,
97
+ letterSpacing: 0.02
98
+ },
99
+ {
100
+ fontSize: 22,
101
+ fontWeight: "B",
102
+ lineHeight: 150,
103
+ letterSpacing: 0.02
104
+ },
105
+ {
106
+ fontSize: 20,
107
+ fontWeight: "B",
108
+ lineHeight: 150,
109
+ letterSpacing: 0.02
110
+ },
111
+ {
112
+ fontSize: 18,
113
+ fontWeight: "B",
114
+ lineHeight: 160,
115
+ letterSpacing: 0.02
116
+ },
117
+ {
118
+ fontSize: 17,
119
+ fontWeight: "B",
120
+ lineHeight: 170,
121
+ letterSpacing: 0.02
122
+ },
123
+ {
124
+ fontSize: 16,
125
+ fontWeight: "B",
126
+ lineHeight: 170,
127
+ letterSpacing: 0.02
128
+ },
129
+ {
130
+ fontSize: 16,
131
+ fontWeight: "B",
132
+ lineHeight: 175,
133
+ letterSpacing: 0.02
134
+ },
135
+ /** Standard(Std) Normal */
136
+ {
137
+ fontSize: 45,
138
+ fontWeight: "N",
139
+ lineHeight: 140
140
+ },
141
+ {
142
+ fontSize: 36,
143
+ fontWeight: "N",
144
+ lineHeight: 140,
145
+ letterSpacing: 0.01
146
+ },
147
+ {
148
+ fontSize: 32,
149
+ fontWeight: "N",
150
+ lineHeight: 150,
151
+ letterSpacing: 0.01
152
+ },
153
+ {
154
+ fontSize: 28,
155
+ fontWeight: "N",
156
+ lineHeight: 150,
157
+ letterSpacing: 0.01
158
+ },
159
+ {
160
+ fontSize: 26,
161
+ fontWeight: "N",
162
+ lineHeight: 150,
163
+ letterSpacing: 0.02
164
+ },
165
+ {
166
+ fontSize: 24,
167
+ fontWeight: "N",
168
+ lineHeight: 150,
169
+ letterSpacing: 0.02
170
+ },
171
+ {
172
+ fontSize: 22,
173
+ fontWeight: "N",
174
+ lineHeight: 150,
175
+ letterSpacing: 0.02
176
+ },
177
+ {
178
+ fontSize: 20,
179
+ fontWeight: "N",
180
+ lineHeight: 150,
181
+ letterSpacing: 0.02
182
+ },
183
+ {
184
+ fontSize: 18,
185
+ fontWeight: "N",
186
+ lineHeight: 160,
187
+ letterSpacing: 0.02
188
+ },
189
+ {
190
+ fontSize: 17,
191
+ fontWeight: "N",
192
+ lineHeight: 170,
193
+ letterSpacing: 0.02
194
+ },
195
+ {
196
+ fontSize: 16,
197
+ fontWeight: "N",
198
+ lineHeight: 170,
199
+ letterSpacing: 0.02
200
+ },
201
+ {
202
+ fontSize: 16,
203
+ fontWeight: "N",
204
+ lineHeight: 175,
205
+ letterSpacing: 0.02
206
+ }
207
+ ]
208
+ },
209
+ dns: {
210
+ fontFamily: "body",
211
+ description: "Dense\u30C6\u30AD\u30B9\u30C8\u306F\u7BA1\u7406\u753B\u9762\u3084\u696D\u52D9\u30B7\u30B9\u30C6\u30E0\u306A\u3069\u3001\u9650\u3089\u308C\u305F\u753B\u9762\u9818\u57DF\u3067\u306E\u8868\u793A\u60C5\u5831\u91CF\u3092\u512A\u5148\u3057\u305F\u30C6\u30AD\u30B9\u30C8\u30B9\u30BF\u30A4\u30EB\u3067\u3059\u3002\u305F\u3068\u3048\u3070\u3001\u30C7\u30FC\u30BF\u30C6\u30FC\u30D6\u30EB\u5185\u3067\u306E\u60C5\u5831\u63D0\u793A\u306A\u3069\u3001\u8868\u793A\u9818\u57DF\u306B\u5236\u7D04\u304C\u3042\u308B\u5834\u5408\u306E\u30C6\u30AD\u30B9\u30C8\u30B9\u30BF\u30A4\u30EB\u3068\u3057\u3066\u4F7F\u7528\u3057\u307E\u3059\u3002",
212
+ variants: [
213
+ /** Dense(Dns) Bold */
214
+ {
215
+ fontSize: 17,
216
+ fontWeight: "B",
217
+ lineHeight: 130
218
+ },
219
+ {
220
+ fontSize: 17,
221
+ fontWeight: "B",
222
+ lineHeight: 120
223
+ },
224
+ {
225
+ fontSize: 16,
226
+ fontWeight: "B",
227
+ lineHeight: 130
228
+ },
229
+ {
230
+ fontSize: 16,
231
+ fontWeight: "B",
232
+ lineHeight: 120
233
+ },
234
+ {
235
+ fontSize: 14,
236
+ fontWeight: "B",
237
+ lineHeight: 130
238
+ },
239
+ {
240
+ fontSize: 14,
241
+ fontWeight: "B",
242
+ lineHeight: 120
243
+ },
244
+ /** Dense(Dns) Normal */
245
+ {
246
+ fontSize: 17,
247
+ fontWeight: "N",
248
+ lineHeight: 130
249
+ },
250
+ {
251
+ fontSize: 17,
252
+ fontWeight: "N",
253
+ lineHeight: 120
254
+ },
255
+ {
256
+ fontSize: 16,
257
+ fontWeight: "N",
258
+ lineHeight: 130
259
+ },
260
+ {
261
+ fontSize: 16,
262
+ fontWeight: "N",
263
+ lineHeight: 120
264
+ },
265
+ {
266
+ fontSize: 14,
267
+ fontWeight: "N",
268
+ lineHeight: 130
269
+ },
270
+ {
271
+ fontSize: 14,
272
+ fontWeight: "N",
273
+ lineHeight: 120
274
+ }
275
+ ]
276
+ },
277
+ oln: {
278
+ fontFamily: "body",
279
+ description: "Oneline\u30C6\u30AD\u30B9\u30C8\u306F1\u884C\u5C55\u958B\u3092\u524D\u63D0\u3068\u3057\u3066\u3001\u4E3B\u306BUI\u8981\u7D20\u3078\u306E\u9069\u7528\u3092\u60F3\u5B9A\u3057\u305F\u30C6\u30AD\u30B9\u30C8\u30B9\u30BF\u30A4\u30EB\u3067\u3059\u3002\u884C\u9593\u306E\u4F59\u767D\u3092\u6700\u5C0F\u9650\u306B\u3059\u308B\u3053\u3068\u3067UI\u30D1\u30FC\u30C4\u306B\u5BFE\u3059\u308B\u30C7\u30B6\u30A4\u30F3\u3001\u53CA\u3073\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0\u5B9F\u88C5\u8ABF\u6574\u30B3\u30B9\u30C8\u306E\u8EFD\u6E1B\u3092\u512A\u5148\u3057\u305F\u30C7\u30AD\u30B9\u30C8\u30B9\u30BF\u30A4\u30EB\u3068\u306A\u308A\u307E\u3059\u3002",
280
+ variants: [
281
+ /** Oneline(Oln) Bold */
282
+ {
283
+ fontSize: 17,
284
+ fontWeight: "B",
285
+ lineHeight: 100
286
+ },
287
+ {
288
+ fontSize: 16,
289
+ fontWeight: "B",
290
+ lineHeight: 100
291
+ },
292
+ {
293
+ fontSize: 14,
294
+ fontWeight: "B",
295
+ lineHeight: 100
296
+ },
297
+ /** Oneline(Oln) Normal */
298
+ {
299
+ fontSize: 17,
300
+ fontWeight: "N",
301
+ lineHeight: 100
302
+ },
303
+ {
304
+ fontSize: 16,
305
+ fontWeight: "N",
306
+ lineHeight: 100
307
+ },
308
+ {
309
+ fontSize: 14,
310
+ fontWeight: "N",
311
+ lineHeight: 100
312
+ }
313
+ ]
314
+ },
315
+ mono: {
316
+ fontFamily: "mono",
317
+ description: "Mono\u30C6\u30AD\u30B9\u30C8\u306F\u30B3\u30FC\u30C9\u7CFB\u30B3\u30F3\u30C6\u30F3\u30C4\u3078\u306E\u9069\u7528\u3092\u60F3\u5B9A\u3057\u305F\u30C6\u30AD\u30B9\u30C8\u30B9\u30BF\u30A4\u30EB\u3067\u3059\u3002\u6587\u5B57\u30FB\u5358\u8A9E\u30EC\u30D9\u30EB\u306E\u53EF\u8AAD\u6027\u3092\u512A\u5148\u3057\u305F\u30E2\u30CE\u30B9\u30DA\u30FC\u30B9\uFF08\u7B49\u5E45\u30D5\u30A9\u30F3\u30C8\uFF09\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002",
318
+ variants: [
319
+ /** Mono Bold */
320
+ {
321
+ fontSize: 17,
322
+ fontWeight: "B",
323
+ lineHeight: 150
324
+ },
325
+ {
326
+ fontSize: 16,
327
+ fontWeight: "B",
328
+ lineHeight: 150
329
+ },
330
+ {
331
+ fontSize: 14,
332
+ fontWeight: "B",
333
+ lineHeight: 150
334
+ },
335
+ /** Oneline(Oln) Normal */
336
+ {
337
+ fontSize: 17,
338
+ fontWeight: "N",
339
+ lineHeight: 150
340
+ },
341
+ {
342
+ fontSize: 16,
343
+ fontWeight: "N",
344
+ lineHeight: 150
345
+ },
346
+ {
347
+ fontSize: 14,
348
+ fontWeight: "N",
349
+ lineHeight: 150
350
+ }
351
+ ]
352
+ }
353
+ };
354
+ var textStyle = Object.entries(textStylesMap);
355
+ var map = /* @__PURE__ */ new Map();
356
+ textStyle.forEach(([key, { fontFamily, description, variants }]) => {
357
+ variants.forEach(({ fontSize, fontWeight, lineHeight, letterSpacing }) => {
358
+ map.set(`${key}-${fontSize}${fontWeight}-${lineHeight}`, {
359
+ value: {
360
+ fontFamily,
361
+ fontSize,
362
+ fontWeight,
363
+ lineHeight,
364
+ letterSpacing: letterSpacing ? `${letterSpacing}em` : void 0
365
+ },
366
+ description
367
+ });
368
+ });
369
+ });
370
+ var textStyles_default = defineTextStyles(Object.fromEntries(map));
371
+
372
+ // src/tokens/index.ts
373
+ import { defineTokens } from "@pandacss/dev";
374
+ import tokens3 from "@digital-go-jp/design-tokens";
375
+
376
+ // src/tokens/colors.ts
377
+ import tokens from "@digital-go-jp/design-tokens";
378
+ var colors2 = {
379
+ white: { value: tokens.Color.Neutral.White.$value },
380
+ black: { value: tokens.Color.Neutral.Black.$value },
381
+ blue: {
382
+ 50: { value: tokens.Color.Primitive.Blue[50].$value },
383
+ 100: { value: tokens.Color.Primitive.Blue[100].$value },
384
+ 200: { value: tokens.Color.Primitive.Blue[200].$value },
385
+ 300: { value: tokens.Color.Primitive.Blue[300].$value },
386
+ 400: { value: tokens.Color.Primitive.Blue[400].$value },
387
+ 500: { value: tokens.Color.Primitive.Blue[500].$value },
388
+ 600: { value: tokens.Color.Primitive.Blue[600].$value },
389
+ 700: { value: tokens.Color.Primitive.Blue[700].$value },
390
+ 800: { value: tokens.Color.Primitive.Blue[800].$value },
391
+ 900: { value: tokens.Color.Primitive.Blue[900].$value },
392
+ 1e3: { value: tokens.Color.Primitive.Blue[1e3].$value },
393
+ 1100: { value: tokens.Color.Primitive.Blue[1100].$value },
394
+ 1200: { value: tokens.Color.Primitive.Blue[1200].$value }
395
+ },
396
+ "light-blue": {
397
+ 50: { value: tokens.Color.Primitive.LightBlue[50].$value },
398
+ 100: { value: tokens.Color.Primitive.LightBlue[100].$value },
399
+ 200: { value: tokens.Color.Primitive.LightBlue[200].$value },
400
+ 300: { value: tokens.Color.Primitive.LightBlue[300].$value },
401
+ 400: { value: tokens.Color.Primitive.LightBlue[400].$value },
402
+ 500: { value: tokens.Color.Primitive.LightBlue[500].$value },
403
+ 600: { value: tokens.Color.Primitive.LightBlue[600].$value },
404
+ 700: { value: tokens.Color.Primitive.LightBlue[700].$value },
405
+ 800: { value: tokens.Color.Primitive.LightBlue[800].$value },
406
+ 900: { value: tokens.Color.Primitive.LightBlue[900].$value },
407
+ 1e3: { value: tokens.Color.Primitive.LightBlue[1e3].$value },
408
+ 1100: { value: tokens.Color.Primitive.LightBlue[1100].$value },
409
+ 1200: { value: tokens.Color.Primitive.LightBlue[1200].$value }
410
+ },
411
+ cyan: {
412
+ 50: { value: tokens.Color.Primitive.Cyan[50].$value },
413
+ 100: { value: tokens.Color.Primitive.Cyan[100].$value },
414
+ 200: { value: tokens.Color.Primitive.Cyan[200].$value },
415
+ 300: { value: tokens.Color.Primitive.Cyan[300].$value },
416
+ 400: { value: tokens.Color.Primitive.Cyan[400].$value },
417
+ 500: { value: tokens.Color.Primitive.Cyan[500].$value },
418
+ 600: { value: tokens.Color.Primitive.Cyan[600].$value },
419
+ 700: { value: tokens.Color.Primitive.Cyan[700].$value },
420
+ 800: { value: tokens.Color.Primitive.Cyan[800].$value },
421
+ 900: { value: tokens.Color.Primitive.Cyan[900].$value },
422
+ 1e3: { value: tokens.Color.Primitive.Cyan[1e3].$value },
423
+ 1100: { value: tokens.Color.Primitive.Cyan[1100].$value },
424
+ 1200: { value: tokens.Color.Primitive.Cyan[1200].$value }
425
+ },
426
+ green: {
427
+ 50: { value: tokens.Color.Primitive.Green[50].$value },
428
+ 100: { value: tokens.Color.Primitive.Green[100].$value },
429
+ 200: { value: tokens.Color.Primitive.Green[200].$value },
430
+ 300: { value: tokens.Color.Primitive.Green[300].$value },
431
+ 400: { value: tokens.Color.Primitive.Green[400].$value },
432
+ 500: { value: tokens.Color.Primitive.Green[500].$value },
433
+ 600: { value: tokens.Color.Primitive.Green[600].$value },
434
+ 700: { value: tokens.Color.Primitive.Green[700].$value },
435
+ 800: { value: tokens.Color.Primitive.Green[800].$value },
436
+ 900: { value: tokens.Color.Primitive.Green[900].$value },
437
+ 1e3: { value: tokens.Color.Primitive.Green[1e3].$value },
438
+ 1100: { value: tokens.Color.Primitive.Green[1100].$value },
439
+ 1200: { value: tokens.Color.Primitive.Green[1200].$value }
440
+ },
441
+ lime: {
442
+ 50: { value: tokens.Color.Primitive.Lime[50].$value },
443
+ 100: { value: tokens.Color.Primitive.Lime[100].$value },
444
+ 200: { value: tokens.Color.Primitive.Lime[200].$value },
445
+ 300: { value: tokens.Color.Primitive.Lime[300].$value },
446
+ 400: { value: tokens.Color.Primitive.Lime[400].$value },
447
+ 500: { value: tokens.Color.Primitive.Lime[500].$value },
448
+ 600: { value: tokens.Color.Primitive.Lime[600].$value },
449
+ 700: { value: tokens.Color.Primitive.Lime[700].$value },
450
+ 800: { value: tokens.Color.Primitive.Lime[800].$value },
451
+ 900: { value: tokens.Color.Primitive.Lime[900].$value },
452
+ 1e3: { value: tokens.Color.Primitive.Lime[1e3].$value },
453
+ 1100: { value: tokens.Color.Primitive.Lime[1100].$value },
454
+ 1200: { value: tokens.Color.Primitive.Lime[1200].$value }
455
+ },
456
+ yellow: {
457
+ 50: { value: tokens.Color.Primitive.Yellow[50].$value },
458
+ 100: { value: tokens.Color.Primitive.Yellow[100].$value },
459
+ 200: { value: tokens.Color.Primitive.Yellow[200].$value },
460
+ 300: { value: tokens.Color.Primitive.Yellow[300].$value },
461
+ 400: { value: tokens.Color.Primitive.Yellow[400].$value },
462
+ 500: { value: tokens.Color.Primitive.Yellow[500].$value },
463
+ 600: { value: tokens.Color.Primitive.Yellow[600].$value },
464
+ 700: { value: tokens.Color.Primitive.Yellow[700].$value },
465
+ 800: { value: tokens.Color.Primitive.Yellow[800].$value },
466
+ 900: { value: tokens.Color.Primitive.Yellow[900].$value },
467
+ 1e3: { value: tokens.Color.Primitive.Yellow[1e3].$value },
468
+ 1100: { value: tokens.Color.Primitive.Yellow[1100].$value },
469
+ 1200: { value: tokens.Color.Primitive.Yellow[1200].$value }
470
+ },
471
+ orange: {
472
+ 50: { value: tokens.Color.Primitive.Orange[50].$value },
473
+ 100: { value: tokens.Color.Primitive.Orange[100].$value },
474
+ 200: { value: tokens.Color.Primitive.Orange[200].$value },
475
+ 300: { value: tokens.Color.Primitive.Orange[300].$value },
476
+ 400: { value: tokens.Color.Primitive.Orange[400].$value },
477
+ 500: { value: tokens.Color.Primitive.Orange[500].$value },
478
+ 600: { value: tokens.Color.Primitive.Orange[600].$value },
479
+ 700: { value: tokens.Color.Primitive.Orange[700].$value },
480
+ 800: { value: tokens.Color.Primitive.Orange[800].$value },
481
+ 900: { value: tokens.Color.Primitive.Orange[900].$value },
482
+ 1e3: { value: tokens.Color.Primitive.Orange[1e3].$value },
483
+ 1100: { value: tokens.Color.Primitive.Orange[1100].$value },
484
+ 1200: { value: tokens.Color.Primitive.Orange[1200].$value }
485
+ },
486
+ red: {
487
+ 50: { value: tokens.Color.Primitive.Red[50].$value },
488
+ 100: { value: tokens.Color.Primitive.Red[100].$value },
489
+ 200: { value: tokens.Color.Primitive.Red[200].$value },
490
+ 300: { value: tokens.Color.Primitive.Red[300].$value },
491
+ 400: { value: tokens.Color.Primitive.Red[400].$value },
492
+ 500: { value: tokens.Color.Primitive.Red[500].$value },
493
+ 600: { value: tokens.Color.Primitive.Red[600].$value },
494
+ 700: { value: tokens.Color.Primitive.Red[700].$value },
495
+ 800: { value: tokens.Color.Primitive.Red[800].$value },
496
+ 900: { value: tokens.Color.Primitive.Red[900].$value },
497
+ 1e3: { value: tokens.Color.Primitive.Red[1e3].$value },
498
+ 1100: { value: tokens.Color.Primitive.Red[1100].$value },
499
+ 1200: { value: tokens.Color.Primitive.Red[1200].$value }
500
+ },
501
+ magenta: {
502
+ 50: { value: tokens.Color.Primitive.Magenta[50].$value },
503
+ 100: { value: tokens.Color.Primitive.Magenta[100].$value },
504
+ 200: { value: tokens.Color.Primitive.Magenta[200].$value },
505
+ 300: { value: tokens.Color.Primitive.Magenta[300].$value },
506
+ 400: { value: tokens.Color.Primitive.Magenta[400].$value },
507
+ 500: { value: tokens.Color.Primitive.Magenta[500].$value },
508
+ 600: { value: tokens.Color.Primitive.Magenta[600].$value },
509
+ 700: { value: tokens.Color.Primitive.Magenta[700].$value },
510
+ 800: { value: tokens.Color.Primitive.Magenta[800].$value },
511
+ 900: { value: tokens.Color.Primitive.Magenta[900].$value },
512
+ 1e3: { value: tokens.Color.Primitive.Magenta[1e3].$value },
513
+ 1100: { value: tokens.Color.Primitive.Magenta[1100].$value },
514
+ 1200: { value: tokens.Color.Primitive.Magenta[1200].$value }
515
+ },
516
+ purple: {
517
+ 50: { value: tokens.Color.Primitive.Purple[50].$value },
518
+ 100: { value: tokens.Color.Primitive.Purple[100].$value },
519
+ 200: { value: tokens.Color.Primitive.Purple[200].$value },
520
+ 300: { value: tokens.Color.Primitive.Purple[300].$value },
521
+ 400: { value: tokens.Color.Primitive.Purple[400].$value },
522
+ 500: { value: tokens.Color.Primitive.Purple[500].$value },
523
+ 600: { value: tokens.Color.Primitive.Purple[600].$value },
524
+ 700: { value: tokens.Color.Primitive.Purple[700].$value },
525
+ 800: { value: tokens.Color.Primitive.Purple[800].$value },
526
+ 900: { value: tokens.Color.Primitive.Purple[900].$value },
527
+ 1e3: { value: tokens.Color.Primitive.Purple[1e3].$value },
528
+ 1100: { value: tokens.Color.Primitive.Purple[1100].$value },
529
+ 1200: { value: tokens.Color.Primitive.Purple[1200].$value }
530
+ },
531
+ "solid-gray": {
532
+ 50: { value: tokens.Color.Neutral.SolidGray[50].$value },
533
+ 100: { value: tokens.Color.Neutral.SolidGray[100].$value },
534
+ 200: { value: tokens.Color.Neutral.SolidGray[200].$value },
535
+ 300: { value: tokens.Color.Neutral.SolidGray[300].$value },
536
+ 400: { value: tokens.Color.Neutral.SolidGray[400].$value },
537
+ 420: { value: tokens.Color.Neutral.SolidGray[420].$value },
538
+ 500: { value: tokens.Color.Neutral.SolidGray[500].$value },
539
+ 536: { value: tokens.Color.Neutral.SolidGray[536].$value },
540
+ 600: { value: tokens.Color.Neutral.SolidGray[600].$value },
541
+ 700: { value: tokens.Color.Neutral.SolidGray[700].$value },
542
+ 800: { value: tokens.Color.Neutral.SolidGray[800].$value },
543
+ 900: { value: tokens.Color.Neutral.SolidGray[900].$value }
544
+ },
545
+ success: {
546
+ 1: {
547
+ value: tokens.Color.Semantic.Success[1].$value,
548
+ description: "\u6210\u529F\u3001\u5B89\u5168\u3001\u5B8C\u4E86\u306A\u3069\u3092\u610F\u5473\u3059\u308B\u30AB\u30E9\u30FC"
549
+ },
550
+ 2: {
551
+ value: tokens.Color.Semantic.Success[2].$value,
552
+ description: "\u6210\u529F\u3001\u5B89\u5168\u3001\u5B8C\u4E86\u306A\u3069\u3092\u610F\u5473\u3059\u308B\u30AB\u30E9\u30FC"
553
+ }
554
+ },
555
+ error: {
556
+ 1: {
557
+ value: tokens.Color.Semantic.Error[1].$value,
558
+ description: "\u5931\u6557\u3084\u30A8\u30E9\u30FC\u306E\u307B\u304B\u3001\u5371\u967A\u60C5\u5831\u3084\u5236\u7D04\u6761\u4EF6\u306E\u63D0\u793A\u306A\u3069\u6CE8\u610F\u559A\u8D77\u3092\u610F\u5473\u3059\u308B\u30AB\u30E9\u30FC"
559
+ },
560
+ 2: {
561
+ value: tokens.Color.Semantic.Error[2].$value,
562
+ description: "\u5931\u6557\u3084\u30A8\u30E9\u30FC\u306E\u307B\u304B\u3001\u5371\u967A\u60C5\u5831\u3084\u5236\u7D04\u6761\u4EF6\u306E\u63D0\u793A\u306A\u3069\u6CE8\u610F\u559A\u8D77\u3092\u610F\u5473\u3059\u308B\u30AB\u30E9\u30FC"
563
+ }
564
+ },
565
+ warning: {
566
+ yellow: {
567
+ 1: {
568
+ value: tokens.Color.Semantic.Warning.Yellow[1].$value,
569
+ description: "\u8B66\u544A\u3084\u7981\u6B62\u4E8B\u9805\u306A\u3069\u3092\u610F\u5473\u3059\u308B\u30AB\u30E9\u30FC"
570
+ },
571
+ 2: {
572
+ value: tokens.Color.Semantic.Warning.Yellow[2].$value,
573
+ description: "\u8B66\u544A\u3084\u7981\u6B62\u4E8B\u9805\u306A\u3069\u3092\u610F\u5473\u3059\u308B\u30AB\u30E9\u30FC"
574
+ }
575
+ },
576
+ orange: {
577
+ 1: {
578
+ value: tokens.Color.Semantic.Warning.Orange[1].$value,
579
+ description: "\u8B66\u544A\u3084\u7981\u6B62\u4E8B\u9805\u306A\u3069\u3092\u610F\u5473\u3059\u308B\u30AB\u30E9\u30FC"
580
+ },
581
+ 2: {
582
+ value: tokens.Color.Semantic.Warning.Orange[2].$value,
583
+ description: "\u8B66\u544A\u3084\u7981\u6B62\u4E8B\u9805\u306A\u3069\u3092\u610F\u5473\u3059\u308B\u30AB\u30E9\u30FC"
584
+ }
585
+ }
586
+ },
587
+ focus: {
588
+ yellow: { value: tokens.Color.Primitive.Yellow[700].$value },
589
+ blue: { value: tokens.Color.Primitive.LightBlue[700].$value }
590
+ }
591
+ };
592
+ var colors_default2 = colors2;
593
+
594
+ // src/tokens/typography.ts
595
+ import tokens2 from "@digital-go-jp/design-tokens";
596
+ var fonts = {
597
+ body: {
598
+ value: [
599
+ "Noto Sans JP",
600
+ "-apple-system",
601
+ "BlinkMacSystemFont",
602
+ "sans-serif"
603
+ ]
604
+ },
605
+ mono: {
606
+ value: ["Noto Sans Mono", "monospace"]
607
+ }
608
+ };
609
+ var fontSizes = {
610
+ "64": {
611
+ value: tokens2.FontSize[64].$value,
612
+ description: "\u8996\u899A\u7684\u306A\u30A4\u30F3\u30D1\u30AF\u30C8\u304C\u5FC5\u8981\u306A\u30C7\u30B6\u30A4\u30F3\u8981\u7D20\u3068\u3057\u3066\u306E\u6587\u5B57\u30B5\u30A4\u30BA\u3002"
613
+ },
614
+ "57": {
615
+ value: tokens2.FontSize[57].$value,
616
+ description: "\u8996\u899A\u7684\u306A\u30A4\u30F3\u30D1\u30AF\u30C8\u304C\u5FC5\u8981\u306A\u30C7\u30B6\u30A4\u30F3\u8981\u7D20\u3068\u3057\u3066\u306E\u6587\u5B57\u30B5\u30A4\u30BA\u3002"
617
+ },
618
+ "48": {
619
+ value: tokens2.FontSize[48].$value,
620
+ description: "\u8996\u899A\u7684\u306A\u30A4\u30F3\u30D1\u30AF\u30C8\u304C\u5FC5\u8981\u306A\u30C7\u30B6\u30A4\u30F3\u8981\u7D20\u3068\u3057\u3066\u306E\u6587\u5B57\u30B5\u30A4\u30BA\u3002"
621
+ },
622
+ "45": {
623
+ value: tokens2.FontSize[45].$value,
624
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
625
+ },
626
+ "36": {
627
+ value: tokens2.FontSize[36].$value,
628
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
629
+ },
630
+ "32": {
631
+ value: tokens2.FontSize[32].$value,
632
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
633
+ },
634
+ "28": {
635
+ value: tokens2.FontSize[28].$value,
636
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
637
+ },
638
+ "24": {
639
+ value: tokens2.FontSize[24].$value,
640
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
641
+ },
642
+ "22": {
643
+ value: tokens2.FontSize[22].$value,
644
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
645
+ },
646
+ "20": {
647
+ value: tokens2.FontSize[20].$value,
648
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
649
+ },
650
+ "18": {
651
+ value: tokens2.FontSize[18].$value,
652
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
653
+ },
654
+ "17": {
655
+ value: tokens2.FontSize[17].$value,
656
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
657
+ },
658
+ "16": {
659
+ value: tokens2.FontSize[16].$value,
660
+ description: "\u8AAD\u307F\u7269\u30B3\u30F3\u30C6\u30F3\u30C4\u5411\u3051\u306B\u591A\u304F\u4F7F\u7528\u3055\u308C\u308B\u898B\u51FA\u3057\u3084\u672C\u6587\u3092\u69CB\u6210\u3059\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3002\u306A\u304A\u3001\u672C\u6587\u3084UI\u306B\u304A\u3044\u3066\u306F16 CSS px\u4EE5\u4E0A\u304C\u57FA\u6E96\u5024\u3068\u306A\u308A\u307E\u3059\u3002"
661
+ },
662
+ "14": {
663
+ value: tokens2.FontSize[14].$value,
664
+ description: "\u57FA\u672C\u7684\u306B\u306F\u4F7F\u7528\u3057\u307E\u305B\u3093\u3002\u30D5\u30C3\u30BF\u30FC\u8981\u7D20\u306A\u3069\u30B3\u30F3\u30C6\u30F3\u30C4\u306B\u4ED8\u968F\u3059\u308B\u60C5\u5831\u3084\u3001UI\u3084\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u69CB\u6210\u3059\u308B\u969B\u306E\u9818\u57DF\u7684\u306A\u5236\u7D04\u304C\u3042\u308B\u5834\u5408\u306E\u3088\u3046\u306B\u6A19\u6E96\u7684\u306A\u6587\u5B57\u30B5\u30A4\u30BA\uFF0816 CSS px\u4EE5\u4E0A\uFF09\u306E\u4F7F\u7528\u304C\u96E3\u3057\u3044\u30B1\u30FC\u30B9\u306B\u304A\u3044\u3066\u306E\u307F\u4F7F\u7528\u3055\u308C\u308B\u6587\u5B57\u30B5\u30A4\u30BA\u3067\u3059\u3002\u306A\u304A\u300114 CSS px\u672A\u6E80\u306E\u5927\u304D\u3055\u306E\u4F7F\u7528\u306F\u539F\u5247\u3068\u3057\u3066\u8A31\u5BB9\u3055\u308C\u307E\u305B\u3093\u3002"
665
+ }
666
+ };
667
+ var fontWeights = {
668
+ "400": { value: tokens2.FontWeight[400].$value },
669
+ "700": { value: tokens2.FontWeight[700].$value }
670
+ };
671
+ var lineHeights = {
672
+ "100": {
673
+ value: tokens2.LineHeight[100].$value,
674
+ description: "\u4E3B\u306B\u30DC\u30BF\u30F3\u306A\u3069\u3001\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u5185\u3067\u4F7F\u7528\u3055\u308C\u308B\u30EF\u30F3\u30E9\u30A4\u30F3\u306E\u30C6\u30AD\u30B9\u30C8\u3067\u4E0A\u4E0B\u306E\u4F59\u767D\u3092\u6301\u3063\u3066\u3044\u306A\u3044\u884C\u9593"
675
+ },
676
+ "120": {
677
+ value: tokens2.LineHeight[120].$value,
678
+ description: "\u4E3B\u306B\u7BA1\u7406\u753B\u9762\u3084\u696D\u52D9\u30B7\u30B9\u30C6\u30E0\u306E\u753B\u9762\u7B49\u3067\u3001\u81A8\u5927\u306A\u60C5\u5831\u3092\u4E00\u89A7\u8868\u793A\u3057\u305F\u308A\u306A\u3069\u3001\u9650\u3089\u308C\u305F\u753B\u9762\u9818\u57DF\u3067\u306E\u8868\u793A\u60C5\u5831\u91CF\u3092\u6700\u512A\u5148\u3057\u305F\u884C\u9593"
679
+ },
680
+ "130": {
681
+ value: tokens2.LineHeight[130].$value,
682
+ description: "\u4E3B\u306B\u7BA1\u7406\u753B\u9762\u3084\u696D\u52D9\u30B7\u30B9\u30C6\u30E0\u306E\u753B\u9762\u7B49\u3067\u4F7F\u7528\u3059\u308B\u3001\u8868\u793A\u60C5\u5831\u91CF\u3092\u512A\u5148\u3057\u305F\u884C\u9593"
683
+ },
684
+ "140": {
685
+ value: tokens2.LineHeight[140].$value,
686
+ description: "\u898B\u51FA\u3057\u306A\u3069\u3001\u3084\u3084\u5927\u304D\u306A\u6587\u5B57\u306B\u4F7F\u7528\u3055\u308C\u308B\u884C\u9593"
687
+ },
688
+ "150": {
689
+ value: tokens2.LineHeight[150].$value,
690
+ description: "\u4E00\u822C\u7684\u306A\u30A6\u30A7\u30D6\u30B5\u30A4\u30C8\u306E\u672C\u6587\u3084\u898B\u51FA\u3057\u3067\u4F7F\u7528\u3055\u308C\u308B\u884C\u9593\uFF08\u672C\u6587\u306E\u884C\u9593\u3068\u3057\u3066\u306F\u6700\u4F4E\u9650\u5EA6\uFF09"
691
+ },
692
+ "160": {
693
+ value: tokens2.LineHeight[160].$value,
694
+ description: "\u4E00\u822C\u7684\u306A\u30A6\u30A7\u30D6\u30B5\u30A4\u30C8\u306E\u672C\u6587\u3067\u4F7F\u7528\u3055\u308C\u308B\u884C\u9593"
695
+ },
696
+ "170": {
697
+ value: tokens2.LineHeight[170].$value,
698
+ description: "\u4E00\u822C\u7684\u306A\u30A6\u30A7\u30D6\u30B5\u30A4\u30C8\u306E\u672C\u6587\u3067\u4F7F\u7528\u3059\u308B\u3001\u5FC3\u7406\u7684\u8CA0\u8377\u306E\u8EFD\u6E1B\u3092\u8003\u616E\u3057\u305F\u884C\u9593"
699
+ },
700
+ "175": {
701
+ value: tokens2.LineHeight[175].$value,
702
+ description: "\u4E00\u822C\u7684\u306A\u30A6\u30A7\u30D6\u30B5\u30A4\u30C8\u306E\u672C\u6587\u3067\u4F7F\u7528\u3059\u308B\u3001\u5FC3\u7406\u7684\u8CA0\u8377\u306E\u8EFD\u6E1B\u3092\u8003\u616E\u3057\u305F\u884C\u9593\u3002\u63A1\u7528\u3059\u308B\u30B0\u30EA\u30C3\u30C9\u5E45\u3084\u30D5\u30A9\u30F3\u30C8\u30B5\u30A4\u30BA\u306B\u5FDC\u3058\u3066170%\u3068\u4F7F\u3044\u5206\u3051\u308B"
703
+ }
704
+ };
705
+
706
+ // src/tokens/index.ts
707
+ var tokens_default = defineTokens({
708
+ colors: colors_default2,
709
+ fonts,
710
+ fontSizes,
711
+ fontWeights,
712
+ lineHeights,
713
+ radii: {
714
+ xs: { value: "0.125rem" },
715
+ sm: { value: "0.25rem" },
716
+ md: { value: "0.375rem" },
717
+ lg: { value: "0.5rem" },
718
+ xl: { value: "0.75rem" },
719
+ "2xl": { value: "1rem" },
720
+ "3xl": { value: "1.5rem" },
721
+ "8": { value: tokens3.BorderRadius[8].$value },
722
+ "16": { value: tokens3.BorderRadius[16].$value },
723
+ "32": { value: tokens3.BorderRadius[32].$value }
724
+ },
725
+ shadows: {
726
+ "1": { value: tokens3.Elevation[1].$value },
727
+ "2": { value: tokens3.Elevation[2].$value },
728
+ "3": { value: tokens3.Elevation[3].$value },
729
+ "4": { value: tokens3.Elevation[4].$value },
730
+ "5": { value: tokens3.Elevation[5].$value },
731
+ "6": { value: tokens3.Elevation[6].$value },
732
+ "7": { value: tokens3.Elevation[7].$value },
733
+ "8": { value: tokens3.Elevation[8].$value }
734
+ }
735
+ });
736
+
737
+ // src/utilities/index.ts
738
+ import { defineUtility } from "@pandacss/dev";
739
+ var borderInset = defineUtility({
740
+ deprecated: true,
741
+ className: "border-inset",
742
+ values: ["xs", "sm", "md", "lg", "xl"],
743
+ transform(value, { token }) {
744
+ const width = (() => {
745
+ if (value === "xs") return "1px";
746
+ if (value === "sm") return "2px";
747
+ if (value === "lg") return "4px";
748
+ if (value === "xl") return "8px";
749
+ return "3px";
750
+ })();
751
+ return {
752
+ boxShadow: `inset 0 0 0 ${width} ${token("colors.ring")}`
753
+ };
754
+ }
755
+ });
756
+ var focusRing = defineUtility({
757
+ className: "ring",
758
+ values: "borderWidths",
759
+ transform(value, { token }) {
760
+ return {
761
+ boxShadow: `0 0 0 ${value} ${token("colors.ring")}`
762
+ };
763
+ }
764
+ });
765
+ var utilities = {
766
+ borderInset,
767
+ focusRing
768
+ };
769
+ var utilities_default = utilities;
770
+
771
+ // src/globalCss.ts
772
+ import { defineGlobalStyles } from "@pandacss/dev";
773
+ var globalCss_default = defineGlobalStyles({
774
+ html: {
775
+ fontSmoothing: "auto"
776
+ }
777
+ });
778
+
779
+ // src/index.ts
780
+ var preset = definePreset({
781
+ name: "digital-go",
782
+ theme: {
783
+ extend: {
784
+ textStyles: textStyles_default,
785
+ semanticTokens: semanticTokens_default,
786
+ tokens: tokens_default
787
+ }
788
+ },
789
+ utilities: utilities_default,
790
+ globalCss: globalCss_default
791
+ });
792
+ var index_default = preset;
793
+ export {
794
+ index_default as default
795
+ };