minka-ds 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,44 @@
1
+ /* ── Extended text utility variants ─────────────────────────────────────────
2
+ Import this file in your app's CSS after @import "tailwindcss" so these
3
+ utilities are available alongside the base text styles defined in globals.css.
4
+
5
+ Does NOT set font-family — that's the consuming app's responsibility.
6
+ ────────────────────────────────────────────────────────────────────────── */
7
+ @layer utilities {
8
+ .text-body-lg-light {
9
+ font-size: var(--primitive-font-size-lg);
10
+ font-weight: var(--primitive-font-weight-400);
11
+ line-height: var(--primitive-line-height-normal);
12
+ letter-spacing: var(--primitive-letter-spacing-normal);
13
+ }
14
+ .text-body-light {
15
+ font-size: var(--primitive-font-size-base);
16
+ font-weight: var(--primitive-font-weight-400);
17
+ line-height: var(--primitive-line-height-normal);
18
+ letter-spacing: var(--primitive-letter-spacing-normal);
19
+ }
20
+ .text-body-sm-light {
21
+ font-size: var(--primitive-font-size-sm);
22
+ font-weight: var(--primitive-font-weight-400);
23
+ line-height: var(--primitive-line-height-normal);
24
+ letter-spacing: var(--primitive-letter-spacing-normal);
25
+ }
26
+ .text-caption-sm {
27
+ font-size: var(--primitive-font-size-2xs);
28
+ font-weight: var(--primitive-font-weight-500);
29
+ line-height: var(--primitive-line-height-normal);
30
+ letter-spacing: var(--primitive-letter-spacing-normal);
31
+ }
32
+ .text-caption-light {
33
+ font-size: var(--primitive-font-size-xs);
34
+ font-weight: var(--primitive-font-weight-400);
35
+ line-height: var(--primitive-line-height-normal);
36
+ letter-spacing: var(--primitive-letter-spacing-normal);
37
+ }
38
+ .text-caption-sm-light {
39
+ font-size: var(--primitive-font-size-2xs);
40
+ font-weight: var(--primitive-font-weight-400);
41
+ line-height: var(--primitive-line-height-normal);
42
+ letter-spacing: var(--primitive-letter-spacing-normal);
43
+ }
44
+ }