@seed-design/lynx-css 0.2.0 → 0.3.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/all.css +22 -8
- package/all.min.css +1 -1
- package/base.css +22 -8
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/vars/color/bg.d.ts +2 -2
- package/vars/color/bg.mjs +2 -1
- package/vars/color/stroke.d.ts +2 -2
- package/vars/color/stroke.mjs +2 -2
- package/vars/component/accordion-item.d.ts +132 -0
- package/vars/component/accordion-item.mjs +126 -0
- package/vars/component/accordion.d.ts +22 -0
- package/vars/component/accordion.mjs +16 -0
- package/vars/component/attachment-input-dropzone.d.ts +32 -0
- package/vars/component/attachment-input-dropzone.mjs +30 -0
- package/vars/component/attachment-input-item-action-button.d.ts +37 -0
- package/vars/component/attachment-input-item-action-button.mjs +37 -0
- package/vars/component/attachment-input-item-remove-button.d.ts +28 -0
- package/vars/component/attachment-input-item-remove-button.mjs +28 -0
- package/vars/component/attachment-input-item.d.ts +103 -0
- package/vars/component/attachment-input-item.mjs +102 -0
- package/vars/component/attachment-input-trigger.d.ts +46 -0
- package/vars/component/attachment-input-trigger.mjs +46 -0
- package/vars/component/attachment-input.d.ts +14 -0
- package/vars/component/attachment-input.mjs +12 -0
- package/vars/component/chip-tab.d.ts +0 -41
- package/vars/component/chip-tab.mjs +0 -41
- package/vars/component/chip-tablist.d.ts +0 -7
- package/vars/component/chip-tablist.mjs +0 -7
- package/vars/component/image-frame.d.ts +1 -22
- package/vars/component/image-frame.mjs +1 -9
- package/vars/component/index.d.ts +12 -1
- package/vars/component/index.mjs +12 -1
- package/vars/component/input-button.d.ts +90 -17
- package/vars/component/input-button.mjs +84 -17
- package/vars/component/menu-item.d.ts +129 -0
- package/vars/component/menu-item.mjs +117 -0
- package/vars/component/menu.d.ts +68 -0
- package/vars/component/menu.mjs +60 -0
- package/vars/component/side-panel-close-button.d.ts +23 -0
- package/vars/component/side-panel-close-button.mjs +23 -0
- package/vars/component/side-panel.d.ts +94 -0
- package/vars/component/side-panel.mjs +83 -0
- package/vars/component/text-input.d.ts +92 -24
- package/vars/component/text-input.mjs +76 -24
- package/vars/component/typography.d.ts +414 -0
- package/vars/component/typography.mjs +324 -0
- package/vars/font-size.d.ts +17 -1
- package/vars/font-size.mjs +9 -1
- package/vars/gradient.d.ts +0 -8
- package/vars/gradient.mjs +0 -2
- package/vars/line-height.d.ts +17 -1
- package/vars/line-height.mjs +9 -1
|
@@ -224,6 +224,24 @@ export declare const vars: {
|
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
226
|
},
|
|
227
|
+
"textStyleT8Regular": {
|
|
228
|
+
"enabled": {
|
|
229
|
+
"root": {
|
|
230
|
+
"fontSize": "var(--seed-font-size-t8)",
|
|
231
|
+
"lineHeight": "var(--seed-line-height-t8)",
|
|
232
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"textStyleT8Medium": {
|
|
237
|
+
"enabled": {
|
|
238
|
+
"root": {
|
|
239
|
+
"fontSize": "var(--seed-font-size-t8)",
|
|
240
|
+
"lineHeight": "var(--seed-line-height-t8)",
|
|
241
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
},
|
|
227
245
|
"textStyleT8Bold": {
|
|
228
246
|
"enabled": {
|
|
229
247
|
"root": {
|
|
@@ -233,6 +251,24 @@ export declare const vars: {
|
|
|
233
251
|
}
|
|
234
252
|
}
|
|
235
253
|
},
|
|
254
|
+
"textStyleT9Regular": {
|
|
255
|
+
"enabled": {
|
|
256
|
+
"root": {
|
|
257
|
+
"fontSize": "var(--seed-font-size-t9)",
|
|
258
|
+
"lineHeight": "var(--seed-line-height-t9)",
|
|
259
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"textStyleT9Medium": {
|
|
264
|
+
"enabled": {
|
|
265
|
+
"root": {
|
|
266
|
+
"fontSize": "var(--seed-font-size-t9)",
|
|
267
|
+
"lineHeight": "var(--seed-line-height-t9)",
|
|
268
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
},
|
|
236
272
|
"textStyleT9Bold": {
|
|
237
273
|
"enabled": {
|
|
238
274
|
"root": {
|
|
@@ -242,6 +278,24 @@ export declare const vars: {
|
|
|
242
278
|
}
|
|
243
279
|
}
|
|
244
280
|
},
|
|
281
|
+
"textStyleT10Regular": {
|
|
282
|
+
"enabled": {
|
|
283
|
+
"root": {
|
|
284
|
+
"fontSize": "var(--seed-font-size-t10)",
|
|
285
|
+
"lineHeight": "var(--seed-line-height-t10)",
|
|
286
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"textStyleT10Medium": {
|
|
291
|
+
"enabled": {
|
|
292
|
+
"root": {
|
|
293
|
+
"fontSize": "var(--seed-font-size-t10)",
|
|
294
|
+
"lineHeight": "var(--seed-line-height-t10)",
|
|
295
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
},
|
|
245
299
|
"textStyleT10Bold": {
|
|
246
300
|
"enabled": {
|
|
247
301
|
"root": {
|
|
@@ -251,6 +305,150 @@ export declare const vars: {
|
|
|
251
305
|
}
|
|
252
306
|
}
|
|
253
307
|
},
|
|
308
|
+
/**
|
|
309
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
310
|
+
*/
|
|
311
|
+
"textStyleT11Regular": {
|
|
312
|
+
"enabled": {
|
|
313
|
+
"root": {
|
|
314
|
+
"fontSize": "var(--seed-font-size-t11)",
|
|
315
|
+
"lineHeight": "var(--seed-line-height-t11)",
|
|
316
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
/**
|
|
321
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
322
|
+
*/
|
|
323
|
+
"textStyleT11Medium": {
|
|
324
|
+
"enabled": {
|
|
325
|
+
"root": {
|
|
326
|
+
"fontSize": "var(--seed-font-size-t11)",
|
|
327
|
+
"lineHeight": "var(--seed-line-height-t11)",
|
|
328
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
/**
|
|
333
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
334
|
+
*/
|
|
335
|
+
"textStyleT11Bold": {
|
|
336
|
+
"enabled": {
|
|
337
|
+
"root": {
|
|
338
|
+
"fontSize": "var(--seed-font-size-t11)",
|
|
339
|
+
"lineHeight": "var(--seed-line-height-t11)",
|
|
340
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
/**
|
|
345
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
346
|
+
*/
|
|
347
|
+
"textStyleT12Regular": {
|
|
348
|
+
"enabled": {
|
|
349
|
+
"root": {
|
|
350
|
+
"fontSize": "var(--seed-font-size-t12)",
|
|
351
|
+
"lineHeight": "var(--seed-line-height-t12)",
|
|
352
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
/**
|
|
357
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
358
|
+
*/
|
|
359
|
+
"textStyleT12Medium": {
|
|
360
|
+
"enabled": {
|
|
361
|
+
"root": {
|
|
362
|
+
"fontSize": "var(--seed-font-size-t12)",
|
|
363
|
+
"lineHeight": "var(--seed-line-height-t12)",
|
|
364
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
/**
|
|
369
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
370
|
+
*/
|
|
371
|
+
"textStyleT12Bold": {
|
|
372
|
+
"enabled": {
|
|
373
|
+
"root": {
|
|
374
|
+
"fontSize": "var(--seed-font-size-t12)",
|
|
375
|
+
"lineHeight": "var(--seed-line-height-t12)",
|
|
376
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
/**
|
|
381
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
382
|
+
*/
|
|
383
|
+
"textStyleT13Regular": {
|
|
384
|
+
"enabled": {
|
|
385
|
+
"root": {
|
|
386
|
+
"fontSize": "var(--seed-font-size-t13)",
|
|
387
|
+
"lineHeight": "var(--seed-line-height-t13)",
|
|
388
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
/**
|
|
393
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
394
|
+
*/
|
|
395
|
+
"textStyleT13Medium": {
|
|
396
|
+
"enabled": {
|
|
397
|
+
"root": {
|
|
398
|
+
"fontSize": "var(--seed-font-size-t13)",
|
|
399
|
+
"lineHeight": "var(--seed-line-height-t13)",
|
|
400
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
/**
|
|
405
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
406
|
+
*/
|
|
407
|
+
"textStyleT13Bold": {
|
|
408
|
+
"enabled": {
|
|
409
|
+
"root": {
|
|
410
|
+
"fontSize": "var(--seed-font-size-t13)",
|
|
411
|
+
"lineHeight": "var(--seed-line-height-t13)",
|
|
412
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
/**
|
|
417
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
418
|
+
*/
|
|
419
|
+
"textStyleT14Regular": {
|
|
420
|
+
"enabled": {
|
|
421
|
+
"root": {
|
|
422
|
+
"fontSize": "var(--seed-font-size-t14)",
|
|
423
|
+
"lineHeight": "var(--seed-line-height-t14)",
|
|
424
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
/**
|
|
429
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
430
|
+
*/
|
|
431
|
+
"textStyleT14Medium": {
|
|
432
|
+
"enabled": {
|
|
433
|
+
"root": {
|
|
434
|
+
"fontSize": "var(--seed-font-size-t14)",
|
|
435
|
+
"lineHeight": "var(--seed-line-height-t14)",
|
|
436
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
/**
|
|
441
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다.
|
|
442
|
+
*/
|
|
443
|
+
"textStyleT14Bold": {
|
|
444
|
+
"enabled": {
|
|
445
|
+
"root": {
|
|
446
|
+
"fontSize": "var(--seed-font-size-t14)",
|
|
447
|
+
"lineHeight": "var(--seed-line-height-t14)",
|
|
448
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
},
|
|
254
452
|
/**
|
|
255
453
|
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
256
454
|
*/
|
|
@@ -503,6 +701,30 @@ export declare const vars: {
|
|
|
503
701
|
}
|
|
504
702
|
}
|
|
505
703
|
},
|
|
704
|
+
/**
|
|
705
|
+
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
706
|
+
*/
|
|
707
|
+
"textStyleT8StaticRegular": {
|
|
708
|
+
"enabled": {
|
|
709
|
+
"root": {
|
|
710
|
+
"fontSize": "var(--seed-font-size-t8-static)",
|
|
711
|
+
"lineHeight": "var(--seed-line-height-t8-static)",
|
|
712
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
/**
|
|
717
|
+
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
718
|
+
*/
|
|
719
|
+
"textStyleT8StaticMedium": {
|
|
720
|
+
"enabled": {
|
|
721
|
+
"root": {
|
|
722
|
+
"fontSize": "var(--seed-font-size-t8-static)",
|
|
723
|
+
"lineHeight": "var(--seed-line-height-t8-static)",
|
|
724
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
},
|
|
506
728
|
/**
|
|
507
729
|
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
508
730
|
*/
|
|
@@ -515,6 +737,30 @@ export declare const vars: {
|
|
|
515
737
|
}
|
|
516
738
|
}
|
|
517
739
|
},
|
|
740
|
+
/**
|
|
741
|
+
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
742
|
+
*/
|
|
743
|
+
"textStyleT9StaticRegular": {
|
|
744
|
+
"enabled": {
|
|
745
|
+
"root": {
|
|
746
|
+
"fontSize": "var(--seed-font-size-t9-static)",
|
|
747
|
+
"lineHeight": "var(--seed-line-height-t9-static)",
|
|
748
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
/**
|
|
753
|
+
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
754
|
+
*/
|
|
755
|
+
"textStyleT9StaticMedium": {
|
|
756
|
+
"enabled": {
|
|
757
|
+
"root": {
|
|
758
|
+
"fontSize": "var(--seed-font-size-t9-static)",
|
|
759
|
+
"lineHeight": "var(--seed-line-height-t9-static)",
|
|
760
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
},
|
|
518
764
|
/**
|
|
519
765
|
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
520
766
|
*/
|
|
@@ -527,6 +773,30 @@ export declare const vars: {
|
|
|
527
773
|
}
|
|
528
774
|
}
|
|
529
775
|
},
|
|
776
|
+
/**
|
|
777
|
+
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
778
|
+
*/
|
|
779
|
+
"textStyleT10StaticRegular": {
|
|
780
|
+
"enabled": {
|
|
781
|
+
"root": {
|
|
782
|
+
"fontSize": "var(--seed-font-size-t10-static)",
|
|
783
|
+
"lineHeight": "var(--seed-line-height-t10-static)",
|
|
784
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
785
|
+
}
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
/**
|
|
789
|
+
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
790
|
+
*/
|
|
791
|
+
"textStyleT10StaticMedium": {
|
|
792
|
+
"enabled": {
|
|
793
|
+
"root": {
|
|
794
|
+
"fontSize": "var(--seed-font-size-t10-static)",
|
|
795
|
+
"lineHeight": "var(--seed-line-height-t10-static)",
|
|
796
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
},
|
|
530
800
|
/**
|
|
531
801
|
* 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
532
802
|
*/
|
|
@@ -538,5 +808,149 @@ export declare const vars: {
|
|
|
538
808
|
"fontWeight": "var(--seed-font-weight-bold)"
|
|
539
809
|
}
|
|
540
810
|
}
|
|
811
|
+
},
|
|
812
|
+
/**
|
|
813
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
814
|
+
*/
|
|
815
|
+
"textStyleT11StaticRegular": {
|
|
816
|
+
"enabled": {
|
|
817
|
+
"root": {
|
|
818
|
+
"fontSize": "var(--seed-font-size-t11-static)",
|
|
819
|
+
"lineHeight": "var(--seed-line-height-t11-static)",
|
|
820
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
/**
|
|
825
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
826
|
+
*/
|
|
827
|
+
"textStyleT11StaticMedium": {
|
|
828
|
+
"enabled": {
|
|
829
|
+
"root": {
|
|
830
|
+
"fontSize": "var(--seed-font-size-t11-static)",
|
|
831
|
+
"lineHeight": "var(--seed-line-height-t11-static)",
|
|
832
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
833
|
+
}
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
/**
|
|
837
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
838
|
+
*/
|
|
839
|
+
"textStyleT11StaticBold": {
|
|
840
|
+
"enabled": {
|
|
841
|
+
"root": {
|
|
842
|
+
"fontSize": "var(--seed-font-size-t11-static)",
|
|
843
|
+
"lineHeight": "var(--seed-line-height-t11-static)",
|
|
844
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
845
|
+
}
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
/**
|
|
849
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
850
|
+
*/
|
|
851
|
+
"textStyleT12StaticRegular": {
|
|
852
|
+
"enabled": {
|
|
853
|
+
"root": {
|
|
854
|
+
"fontSize": "var(--seed-font-size-t12-static)",
|
|
855
|
+
"lineHeight": "var(--seed-line-height-t12-static)",
|
|
856
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
},
|
|
860
|
+
/**
|
|
861
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
862
|
+
*/
|
|
863
|
+
"textStyleT12StaticMedium": {
|
|
864
|
+
"enabled": {
|
|
865
|
+
"root": {
|
|
866
|
+
"fontSize": "var(--seed-font-size-t12-static)",
|
|
867
|
+
"lineHeight": "var(--seed-line-height-t12-static)",
|
|
868
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
/**
|
|
873
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
874
|
+
*/
|
|
875
|
+
"textStyleT12StaticBold": {
|
|
876
|
+
"enabled": {
|
|
877
|
+
"root": {
|
|
878
|
+
"fontSize": "var(--seed-font-size-t12-static)",
|
|
879
|
+
"lineHeight": "var(--seed-line-height-t12-static)",
|
|
880
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
},
|
|
884
|
+
/**
|
|
885
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
886
|
+
*/
|
|
887
|
+
"textStyleT13StaticRegular": {
|
|
888
|
+
"enabled": {
|
|
889
|
+
"root": {
|
|
890
|
+
"fontSize": "var(--seed-font-size-t13-static)",
|
|
891
|
+
"lineHeight": "var(--seed-line-height-t13-static)",
|
|
892
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
/**
|
|
897
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
898
|
+
*/
|
|
899
|
+
"textStyleT13StaticMedium": {
|
|
900
|
+
"enabled": {
|
|
901
|
+
"root": {
|
|
902
|
+
"fontSize": "var(--seed-font-size-t13-static)",
|
|
903
|
+
"lineHeight": "var(--seed-line-height-t13-static)",
|
|
904
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
/**
|
|
909
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
910
|
+
*/
|
|
911
|
+
"textStyleT13StaticBold": {
|
|
912
|
+
"enabled": {
|
|
913
|
+
"root": {
|
|
914
|
+
"fontSize": "var(--seed-font-size-t13-static)",
|
|
915
|
+
"lineHeight": "var(--seed-line-height-t13-static)",
|
|
916
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
917
|
+
}
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
/**
|
|
921
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
922
|
+
*/
|
|
923
|
+
"textStyleT14StaticRegular": {
|
|
924
|
+
"enabled": {
|
|
925
|
+
"root": {
|
|
926
|
+
"fontSize": "var(--seed-font-size-t14-static)",
|
|
927
|
+
"lineHeight": "var(--seed-line-height-t14-static)",
|
|
928
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
/**
|
|
933
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
934
|
+
*/
|
|
935
|
+
"textStyleT14StaticMedium": {
|
|
936
|
+
"enabled": {
|
|
937
|
+
"root": {
|
|
938
|
+
"fontSize": "var(--seed-font-size-t14-static)",
|
|
939
|
+
"lineHeight": "var(--seed-line-height-t14-static)",
|
|
940
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
},
|
|
944
|
+
/**
|
|
945
|
+
* `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
946
|
+
*/
|
|
947
|
+
"textStyleT14StaticBold": {
|
|
948
|
+
"enabled": {
|
|
949
|
+
"root": {
|
|
950
|
+
"fontSize": "var(--seed-font-size-t14-static)",
|
|
951
|
+
"lineHeight": "var(--seed-line-height-t14-static)",
|
|
952
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
953
|
+
}
|
|
954
|
+
}
|
|
541
955
|
}
|
|
542
956
|
}
|