@likelion-design/ui 1.0.28 → 1.0.29
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/package.json +1 -1
- package/tailwind.theme.css +150 -45
package/package.json
CHANGED
package/tailwind.theme.css
CHANGED
|
@@ -10,38 +10,6 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
@theme {
|
|
13
|
-
/* fontSize → text-{name} */
|
|
14
|
-
--font-size-display-d1: var(--font-primitive-size-display-d1);
|
|
15
|
-
--font-size-display-d2: var(--font-primitive-size-display-d2);
|
|
16
|
-
--font-size-display-d3: var(--font-primitive-size-display-d3);
|
|
17
|
-
--font-size-display-d4: var(--font-primitive-size-display-d4);
|
|
18
|
-
--font-size-heading-h1: var(--font-primitive-size-heading-h1);
|
|
19
|
-
--font-size-heading-h2: var(--font-primitive-size-heading-h2);
|
|
20
|
-
--font-size-heading-h3: var(--font-primitive-size-heading-h3);
|
|
21
|
-
--font-size-heading-h4: var(--font-primitive-size-heading-h4);
|
|
22
|
-
--font-size-heading-h5: var(--font-primitive-size-heading-h5);
|
|
23
|
-
--font-size-heading-h6: var(--font-primitive-size-heading-h6);
|
|
24
|
-
--font-size-body-p1: var(--font-primitive-size-body-p1);
|
|
25
|
-
--font-size-body-p2: var(--font-primitive-size-body-p2);
|
|
26
|
-
--font-size-body-p3: var(--font-primitive-size-body-p3);
|
|
27
|
-
--font-size-body-p4: var(--font-primitive-size-body-p4);
|
|
28
|
-
--font-size-body-p5: var(--font-primitive-size-body-p5);
|
|
29
|
-
|
|
30
|
-
/* fontWeight → font-{name} */
|
|
31
|
-
--font-weight-extrabold: var(--font-primitive-weight-extrabold);
|
|
32
|
-
--font-weight-bold: var(--font-primitive-weight-bold);
|
|
33
|
-
--font-weight-semibold: var(--font-primitive-weight-semibold);
|
|
34
|
-
--font-weight-medium: var(--font-primitive-weight-medium);
|
|
35
|
-
--font-weight-regular: var(--font-primitive-weight-regular);
|
|
36
|
-
|
|
37
|
-
/* fontFamily → font-{name} */
|
|
38
|
-
--font-family-font-familly: var(--font-primitive-familly-font-familly);
|
|
39
|
-
|
|
40
|
-
/* letterSpacing → tracking-{name} */
|
|
41
|
-
--letter-spacing-tight: var(--font-primitive-letter-spacing-tight);
|
|
42
|
-
--letter-spacing-normal: var(--font-primitive-letter-spacing-normal);
|
|
43
|
-
--letter-spacing-loose: var(--font-primitive-letter-spacing-loose);
|
|
44
|
-
|
|
45
13
|
/* colors → text-{name}, bg-{name}, border-{name} */
|
|
46
14
|
--color-basic-white: var(--color-basic-white);
|
|
47
15
|
--color-basic-black: var(--color-basic-black);
|
|
@@ -219,25 +187,162 @@
|
|
|
219
187
|
--spacing-0_5: var(--spacing-primitive-0_5);
|
|
220
188
|
--spacing-2_5: var(--spacing-primitive-2_5);
|
|
221
189
|
|
|
222
|
-
/* borderRadius → rounded-{name} */
|
|
223
|
-
--radius-1: var(--radius-primitive-1);
|
|
224
|
-
--radius-2: var(--radius-primitive-2);
|
|
225
|
-
--radius-3: var(--radius-primitive-3);
|
|
226
|
-
--radius-4: var(--radius-primitive-4);
|
|
227
|
-
--radius-5: var(--radius-primitive-5);
|
|
228
|
-
--radius-6: var(--radius-primitive-6);
|
|
229
|
-
--radius-0_5: var(--radius-primitive-0_5);
|
|
230
|
-
--radius-1_5: var(--radius-primitive-1_5);
|
|
231
|
-
--radius-2_5: var(--radius-primitive-2_5);
|
|
232
|
-
--radius-3_5: var(--radius-primitive-3_5);
|
|
233
|
-
--radius-full: var(--radius-primitive-full);
|
|
234
|
-
|
|
235
190
|
/* breakpoints → 반응형 prefix (mo:, tb:, pc:) */
|
|
236
191
|
--breakpoint-mo: 375px;
|
|
237
192
|
--breakpoint-tb: 744px;
|
|
238
193
|
--breakpoint-pc: 1280px;
|
|
239
194
|
}
|
|
240
195
|
|
|
196
|
+
/* ── fontSize → text-{name} ── */
|
|
197
|
+
|
|
198
|
+
@utility text-display-d1 {
|
|
199
|
+
font-size: var(--font-primitive-size-display-d1);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@utility text-display-d2 {
|
|
203
|
+
font-size: var(--font-primitive-size-display-d2);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@utility text-display-d3 {
|
|
207
|
+
font-size: var(--font-primitive-size-display-d3);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
@utility text-display-d4 {
|
|
211
|
+
font-size: var(--font-primitive-size-display-d4);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
@utility text-heading-h1 {
|
|
215
|
+
font-size: var(--font-primitive-size-heading-h1);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
@utility text-heading-h2 {
|
|
219
|
+
font-size: var(--font-primitive-size-heading-h2);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
@utility text-heading-h3 {
|
|
223
|
+
font-size: var(--font-primitive-size-heading-h3);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
@utility text-heading-h4 {
|
|
227
|
+
font-size: var(--font-primitive-size-heading-h4);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
@utility text-heading-h5 {
|
|
231
|
+
font-size: var(--font-primitive-size-heading-h5);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
@utility text-heading-h6 {
|
|
235
|
+
font-size: var(--font-primitive-size-heading-h6);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
@utility text-body-p1 {
|
|
239
|
+
font-size: var(--font-primitive-size-body-p1);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
@utility text-body-p2 {
|
|
243
|
+
font-size: var(--font-primitive-size-body-p2);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
@utility text-body-p3 {
|
|
247
|
+
font-size: var(--font-primitive-size-body-p3);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
@utility text-body-p4 {
|
|
251
|
+
font-size: var(--font-primitive-size-body-p4);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
@utility text-body-p5 {
|
|
255
|
+
font-size: var(--font-primitive-size-body-p5);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
/* ── fontWeight → font-{name} ── */
|
|
259
|
+
|
|
260
|
+
@utility font-extrabold {
|
|
261
|
+
font-weight: var(--font-primitive-weight-extrabold);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
@utility font-bold {
|
|
265
|
+
font-weight: var(--font-primitive-weight-bold);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
@utility font-semibold {
|
|
269
|
+
font-weight: var(--font-primitive-weight-semibold);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
@utility font-medium {
|
|
273
|
+
font-weight: var(--font-primitive-weight-medium);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
@utility font-regular {
|
|
277
|
+
font-weight: var(--font-primitive-weight-regular);
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
/* ── fontFamily → font-{name} ── */
|
|
281
|
+
|
|
282
|
+
@utility font-font-familly {
|
|
283
|
+
font-family: var(--font-primitive-familly-font-familly);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/* ── letterSpacing → tracking-{name} ── */
|
|
287
|
+
|
|
288
|
+
@utility tracking-tight {
|
|
289
|
+
letter-spacing: var(--font-primitive-letter-spacing-tight);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
@utility tracking-normal {
|
|
293
|
+
letter-spacing: var(--font-primitive-letter-spacing-normal);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
@utility tracking-loose {
|
|
297
|
+
letter-spacing: var(--font-primitive-letter-spacing-loose);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/* ── borderRadius → rounded-{name} ── */
|
|
301
|
+
|
|
302
|
+
@utility rounded-1 {
|
|
303
|
+
border-radius: var(--radius-primitive-1);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
@utility rounded-2 {
|
|
307
|
+
border-radius: var(--radius-primitive-2);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
@utility rounded-3 {
|
|
311
|
+
border-radius: var(--radius-primitive-3);
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
@utility rounded-4 {
|
|
315
|
+
border-radius: var(--radius-primitive-4);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
@utility rounded-5 {
|
|
319
|
+
border-radius: var(--radius-primitive-5);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
@utility rounded-6 {
|
|
323
|
+
border-radius: var(--radius-primitive-6);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
@utility rounded-0_5 {
|
|
327
|
+
border-radius: var(--radius-primitive-0_5);
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
@utility rounded-1_5 {
|
|
331
|
+
border-radius: var(--radius-primitive-1_5);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
@utility rounded-2_5 {
|
|
335
|
+
border-radius: var(--radius-primitive-2_5);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
@utility rounded-3_5 {
|
|
339
|
+
border-radius: var(--radius-primitive-3_5);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
@utility rounded-full {
|
|
343
|
+
border-radius: var(--radius-primitive-full);
|
|
344
|
+
}
|
|
345
|
+
|
|
241
346
|
/* ── Background Color 유틸리티 (v3 backgroundColor 키와 동일) ── */
|
|
242
347
|
|
|
243
348
|
@utility bg-normal {
|