@borisj74/bv-ds 0.1.0 → 0.1.2

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.
@@ -1,227 +1,238 @@
1
1
  // Shareable Tailwind preset — token names traced from design.md, confirmed
2
2
  // against the live Figma file via figma-map.md token pulls. Consumers extend
3
3
  // their own tailwind.config.js with this preset so generated class names
4
- // (bg-brand-solid, text-secondary, p-md, etc.) match the design tokens
5
- // directly rather than arbitrary values.
4
+ // match the design tokens directly.
6
5
  //
7
6
  // Usage in a consuming app's tailwind.config.js:
8
7
  // const dsPreset = require("@borisj74/bv-ds/tailwind-preset");
9
8
  // module.exports = { presets: [dsPreset], content: [...] };
10
9
  //
11
- // PEER DEPENDENCYRecharts: chart components (_ChartMini, and the deferred
12
- // Line/bar/Pie/Radar wrappers) require `recharts` (>=2) installed in the
13
- // consuming app. Optional peer dependency: install it only if you use the chart
14
- // components. Recharts color props take hex strings, so those components read
15
- // token hex values from this preset directly (not Tailwind class names).
10
+ // KEY NAMINGv0.1.2 fix:
11
+ // Colors are nested under their category group (bg, text, border, fg).
12
+ // Tailwind joins group + key with a hyphen at class-generation time:
13
+ // colors.bg["brand-solid"] → bg-bg-brand-solid ✓
14
+ // colors.text["secondary"] → text-text-secondary ✓
15
+ // colors.border["primary"] → border-border-primary ✓
16
+ // This prevents cross-category collisions (text-secondary #404040 vs
17
+ // bg-secondary #fafafa) that caused the doubled-prefix bug in v0.1.1.
18
+ //
19
+ // Components must use the doubled-prefix form in className:
20
+ // bg-bg-brand-solid, text-text-secondary, border-border-primary, etc.
21
+ //
22
+ // PEER DEPENDENCY — Recharts requires `recharts` (>=2) in consuming app.
16
23
 
17
24
  /** @type {import('tailwindcss').Config} */
18
25
  module.exports = {
19
26
  theme: {
20
27
  extend: {
21
28
  colors: {
22
- // Text — design.md §2 "Color — Text"
23
- "text-primary": "#171717",
24
- "text-primary-on-brand": "#ffffff",
25
- "text-secondary": "#404040",
26
- "text-secondary-hover": "#262626",
27
- "text-secondary-on-brand": "#e9d7fe",
28
- "text-tertiary": "#525252",
29
- "text-tertiary-hover": "#404040",
30
- "text-tertiary-on-brand": "#e9d7fe",
31
- "text-quaternary": "#737373",
32
- "text-quaternary-on-brand": "#d6bbfb",
33
- "text-white": "#ffffff",
34
- "text-placeholder": "#737373",
35
- "text-brand-primary": "#42307d",
36
- "text-brand-secondary": "#6941c6",
37
- "text-brand-secondary-hover": "#53389e",
38
- "text-brand-tertiary": "#7f56d9",
39
- "text-brand-tertiary-alt": "#7f56d9",
40
- "text-error-primary": "#dc2626",
41
- "text-warning-primary": "#ca8a04",
42
- "text-success-primary": "#16a34a",
43
29
 
44
- // Background design.md §2 "Color — Background"
45
- "bg-primary": "#ffffff",
46
- "bg-primary-alt": "#ffffff",
47
- "bg-primary-hover": "#fafafa",
48
- "bg-primary-solid": "#0a0a0a",
49
- "bg-secondary": "#fafafa",
50
- "bg-secondary-alt": "#fafafa",
51
- "bg-secondary-hover": "#f5f5f5",
52
- "bg-secondary-solid": "#525252",
53
- "bg-tertiary": "#f5f5f5",
54
- "bg-quaternary": "#e5e5e5",
55
- "bg-overlay": "#0a0a0a",
56
- "bg-brand-primary": "#f9f5ff",
57
- "bg-brand-primary-alt": "#f9f5ff",
58
- "bg-brand-secondary": "#f4ebff",
59
- "bg-brand-solid": "#7f56d9",
60
- "bg-brand-solid-hover": "#6941c6",
61
- "bg-error-primary": "#fef2f2",
62
- "bg-error-secondary": "#fee2e2",
63
- "bg-error-solid": "#dc2626",
64
- "bg-error-solid-hover": "#b91c1c",
65
- "bg-warning-primary": "#fefce8",
66
- "bg-warning-secondary": "#fef9c3",
67
- "bg-warning-solid": "#ca8a04",
68
- "bg-success-primary": "#f0fdf4",
69
- "bg-success-secondary": "#dcfce7",
70
- "bg-success-solid": "#16a34a",
30
+ // ── Background tokens ─────────────────────────────────────────────
31
+ // Usage: bg-bg-primary, bg-bg-brand-solid, bg-bg-error-solid, etc.
32
+ bg: {
33
+ "primary": "#ffffff",
34
+ "primary-alt": "#ffffff",
35
+ "primary-hover": "#fafafa",
36
+ "primary-solid": "#0a0a0a",
37
+ "secondary": "#fafafa",
38
+ "secondary-alt": "#fafafa",
39
+ "secondary-hover": "#f5f5f5",
40
+ "secondary-solid": "#525252",
41
+ "tertiary": "#f5f5f5",
42
+ "quaternary": "#e5e5e5",
43
+ "overlay": "#0a0a0a",
44
+ "brand-primary": "#f9f5ff",
45
+ "brand-primary-alt": "#f9f5ff",
46
+ "brand-secondary": "#f4ebff",
47
+ "brand-solid": "#7f56d9",
48
+ "brand-solid-hover": "#6941c6",
49
+ "brand-section": "#53389e",
50
+ "brand-section-subtle": "#6941c6",
51
+ "error-primary": "#fef2f2",
52
+ "error-secondary": "#fee2e2",
53
+ "error-solid": "#dc2626",
54
+ "error-solid-hover": "#b91c1c",
55
+ "warning-primary": "#fefce8",
56
+ "warning-secondary": "#fef9c3",
57
+ "warning-solid": "#ca8a04",
58
+ "success-primary": "#f0fdf4",
59
+ "success-secondary": "#dcfce7",
60
+ "success-solid": "#16a34a",
61
+ },
62
+
63
+ // ── Text tokens ───────────────────────────────────────────────────
64
+ // Usage: text-text-primary, text-text-secondary, text-text-brand-secondary, etc.
65
+ text: {
66
+ "primary": "#171717",
67
+ "primary-on-brand": "#ffffff",
68
+ "secondary": "#404040",
69
+ "secondary-hover": "#262626",
70
+ "secondary-on-brand": "#e9d7fe",
71
+ "tertiary": "#525252",
72
+ "tertiary-hover": "#404040",
73
+ "tertiary-on-brand": "#e9d7fe",
74
+ "quaternary": "#737373",
75
+ "quaternary-on-brand": "#d6bbfb",
76
+ "white": "#ffffff",
77
+ "placeholder": "#737373",
78
+ "brand-primary": "#42307d",
79
+ "brand-secondary": "#6941c6",
80
+ "brand-secondary-hover": "#53389e",
81
+ "brand-tertiary": "#7f56d9",
82
+ "brand-tertiary-alt": "#7f56d9",
83
+ "error-primary": "#dc2626",
84
+ "warning-primary": "#ca8a04",
85
+ "success-primary": "#16a34a",
86
+ },
71
87
 
72
- // Border design.md §2 "Color — Border"
73
- "border-primary": "#d4d4d4",
74
- "border-secondary": "#e5e5e5",
75
- "border-secondary-alt": "rgba(0,0,0,0.1)",
76
- "border-tertiary": "#f5f5f5",
77
- "border-brand": "#9e77ed",
78
- "border-brand-alt": "#7f56d9",
79
- "border-error": "#ef4444",
80
- "border-error-subtle": "#fca5a5",
88
+ // ── Border tokens ─────────────────────────────────────────────────
89
+ // Usage: border-border-primary, border-border-brand, etc.
90
+ border: {
91
+ "primary": "#d4d4d4",
92
+ "secondary": "#e5e5e5",
93
+ "secondary-alt": "rgba(0,0,0,0.1)",
94
+ "tertiary": "#f5f5f5",
95
+ "brand": "#9e77ed",
96
+ "brand-alt": "#7f56d9",
97
+ "error": "#ef4444",
98
+ "error-subtle": "#fca5a5",
99
+ },
81
100
 
82
- // Foreground (icons) design.md §2 "Color — Foreground"
83
- "fg-primary": "#171717",
84
- "fg-secondary": "#404040",
85
- "fg-secondary-hover": "#262626",
86
- "fg-tertiary": "#525252",
87
- "fg-tertiary-hover": "#404040",
88
- "fg-quaternary": "#a3a3a3",
89
- "fg-quaternary-hover": "#737373",
90
- "fg-white": "#ffffff",
91
- "fg-brand-primary": "#7f56d9",
92
- "fg-brand-primary-alt": "#7f56d9",
93
- "fg-brand-secondary": "#9e77ed",
94
- "fg-brand-secondary-alt": "#9e77ed",
95
- "fg-error-primary": "#dc2626",
96
- "fg-error-secondary": "#ef4444",
97
- "fg-warning-primary": "#ca8a04",
98
- "fg-warning-secondary": "#eab308",
99
- "fg-success-primary": "#16a34a",
100
- "fg-success-secondary": "#22c55e",
101
+ // ── Foreground / icon tokens ──────────────────────────────────────
102
+ // Usage: text-fg-primary, bg-fg-brand-primary, etc.
103
+ fg: {
104
+ "primary": "#171717",
105
+ "secondary": "#404040",
106
+ "secondary-hover": "#262626",
107
+ "tertiary": "#525252",
108
+ "tertiary-hover": "#404040",
109
+ "quaternary": "#a3a3a3",
110
+ "quaternary-hover": "#737373",
111
+ "white": "#ffffff",
112
+ "brand-primary": "#7f56d9",
113
+ "brand-primary-alt": "#7f56d9",
114
+ "brand-secondary": "#9e77ed",
115
+ "brand-secondary-alt": "#9e77ed",
116
+ "error-primary": "#dc2626",
117
+ "error-secondary": "#ef4444",
118
+ "warning-primary": "#ca8a04",
119
+ "warning-secondary": "#eab308",
120
+ "success-primary": "#16a34a",
121
+ "success-secondary": "#22c55e",
122
+ },
101
123
 
102
- // Utility colors — Component colors/Utility/<Family>/utility-<family>-<shade>
103
- // Harvested live from Figma (Badge node 1046:3819 + Calendar event
104
- // 7991:78181). NOTE: Figma's actual family names are color names
105
- // (yellow/green/red/neutral), NOT the semantic Warning/Success/Error/Gray
106
- // aliases — using the real names so utility-* classes round-trip to the
107
- // file. Shades included are those Figma actually defines per family — a
108
- // superset of the requested 50/200/400/500/700 (also 100/600 and
109
- // neutral-300) because Charts/Calendar consume them. Emerald/Amber have
110
- // no -400 in the source; omitted rather than invented. The full -100
111
- // ramp is now filled for all 14 families; slate-100 (#f1f5f9) and
112
- // sky-100 (#e0f2fe) were derived from Tailwind's palette (every other
113
- // slate/sky shade matched Tailwind exactly) since they weren't in a
114
- // Figma var dump — all other -100s came straight from Figma.
115
- "utility-brand-50": "#f9f5ff",
116
- "utility-brand-100": "#f4ebff",
117
- "utility-brand-200": "#e9d7fe",
118
- "utility-brand-400": "#b692f6",
119
- "utility-brand-500": "#9e77ed",
120
- "utility-brand-600": "#7f56d9",
121
- "utility-brand-700": "#6941c6",
122
- "utility-yellow-50": "#fefce8",
123
- "utility-yellow-100": "#fef9c3",
124
- "utility-yellow-200": "#fef08a",
125
- "utility-yellow-400": "#facc15",
126
- "utility-yellow-500": "#eab308",
127
- "utility-yellow-600": "#ca8a04",
128
- "utility-yellow-700": "#a16207",
129
- // NOTE: Figma's `utility-success-*` naming maps to `utility-green-*` here —
130
- // use `utility-green-*` consistently (no `utility-success-*` keys exist).
131
- "utility-green-50": "#f0fdf4",
132
- "utility-green-100": "#dcfce7",
133
- "utility-green-200": "#bbf7d0",
134
- "utility-green-400": "#4ade80",
135
- "utility-green-500": "#22c55e",
136
- "utility-green-600": "#16a34a",
137
- "utility-green-700": "#15803d",
138
- "utility-slate-50": "#f8fafc",
139
- "utility-slate-100": "#f1f5f9",
140
- "utility-slate-200": "#e2e8f0",
141
- "utility-slate-400": "#94a3b8",
142
- "utility-slate-500": "#64748b",
143
- "utility-slate-700": "#334155",
144
- "utility-sky-50": "#f0f9ff",
145
- "utility-sky-100": "#e0f2fe",
146
- "utility-sky-200": "#bae6fd",
147
- "utility-sky-400": "#38bdf8",
148
- "utility-sky-500": "#0ea5e9",
149
- "utility-sky-700": "#0369a1",
150
- "utility-indigo-50": "#eef2ff",
151
- "utility-indigo-100": "#e0e7ff",
152
- "utility-indigo-200": "#c7d2fe",
153
- "utility-indigo-400": "#818cf8",
154
- "utility-indigo-500": "#6366f1",
155
- "utility-indigo-600": "#4f46e5",
156
- "utility-indigo-700": "#4338ca",
157
- "utility-purple-50": "#faf5ff",
158
- "utility-purple-100": "#f3e8ff",
159
- "utility-purple-200": "#e9d5ff",
160
- "utility-purple-400": "#c084fc",
161
- "utility-purple-500": "#a855f7",
162
- "utility-purple-600": "#9333ea",
163
- "utility-purple-700": "#7e22ce",
164
- "utility-blue-50": "#eff6ff",
165
- "utility-blue-100": "#dbeafe",
166
- "utility-blue-200": "#bfdbfe",
167
- "utility-blue-400": "#60a5fa",
168
- "utility-blue-500": "#3b82f6",
169
- "utility-blue-600": "#2563eb",
170
- "utility-blue-700": "#1d4ed8",
171
- "utility-pink-50": "#fdf2f8",
172
- "utility-pink-100": "#fce7f3",
173
- "utility-pink-200": "#fbcfe8",
174
- "utility-pink-400": "#f472b6",
175
- "utility-pink-500": "#ec4899",
176
- "utility-pink-600": "#db2777",
177
- "utility-pink-700": "#be185d",
178
- "utility-orange-50": "#fff7ed",
179
- "utility-orange-100": "#ffedd5",
180
- "utility-orange-200": "#fed7aa",
181
- "utility-orange-400": "#fb923c",
182
- "utility-orange-500": "#f97316",
183
- "utility-orange-600": "#ea580c",
184
- "utility-orange-700": "#c2410c",
185
- "utility-red-50": "#fef2f2",
186
- "utility-red-100": "#fee2e2",
187
- "utility-red-200": "#fecaca",
188
- "utility-red-400": "#f87171",
189
- "utility-red-500": "#ef4444",
190
- "utility-red-600": "#dc2626",
191
- "utility-red-700": "#b91c1c",
192
- "utility-neutral-50": "#fafafa",
193
- "utility-neutral-100": "#f5f5f5",
194
- "utility-neutral-200": "#e5e5e5",
195
- "utility-neutral-300": "#d4d4d4",
196
- "utility-neutral-400": "#a3a3a3",
197
- "utility-neutral-500": "#737373",
198
- "utility-neutral-600": "#525252",
199
- "utility-neutral-700": "#404040",
200
- "utility-emerald-50": "#ecfdf5",
201
- "utility-emerald-100": "#d1fae5",
202
- "utility-emerald-200": "#a7f3d0",
203
- "utility-emerald-500": "#10b981",
204
- "utility-emerald-600": "#059669",
205
- "utility-emerald-700": "#047857",
206
- "utility-amber-50": "#fffbeb",
207
- "utility-amber-100": "#fef3c7",
208
- "utility-amber-200": "#fde68a",
209
- "utility-amber-500": "#f59e0b",
210
- "utility-amber-600": "#d97706",
211
- "utility-amber-700": "#b45309",
212
- // Alpha overlays (Component colors/Alpha) — confirmed values
213
- "alpha-white-10": "rgba(255,255,255,0.10)",
214
- "alpha-white-90": "rgba(255,255,255,0.90)",
215
- "alpha-black-10": "rgba(0,0,0,0.10)",
216
- "alpha-black-100": "rgba(0,0,0,1.00)",
217
- // Component colors/Components/Sliders — confirmed via get_variable_defs (node 1086:534)
218
- "slider-handle-bg": "#ffffff",
219
- "slider-handle-border": "#7f56d9",
220
- // Component colors/Components/Toggles — confirmed via get_variable_defs (node 1102:4208).
221
- // Slim toggle pressed track border; Default toggle uses bg-brand-solid/-hover.
222
- "toggle-slim-border-pressed": "#7f56d9",
124
+ // ── Utility palette ───────────────────────────────────────────────
125
+ // Usage: bg-utility-brand-50, text-utility-neutral-700, etc.
126
+ // Flat no collision risk since all keys share the "utility-" prefix.
127
+ "utility-brand-50": "#f9f5ff",
128
+ "utility-brand-100": "#f4ebff",
129
+ "utility-brand-200": "#e9d7fe",
130
+ "utility-brand-400": "#b692f6",
131
+ "utility-brand-500": "#9e77ed",
132
+ "utility-brand-600": "#7f56d9",
133
+ "utility-brand-700": "#6941c6",
134
+ "utility-yellow-50": "#fefce8",
135
+ "utility-yellow-100": "#fef9c3",
136
+ "utility-yellow-200": "#fef08a",
137
+ "utility-yellow-400": "#facc15",
138
+ "utility-yellow-500": "#eab308",
139
+ "utility-yellow-600": "#ca8a04",
140
+ "utility-yellow-700": "#a16207",
141
+ "utility-green-50": "#f0fdf4",
142
+ "utility-green-100": "#dcfce7",
143
+ "utility-green-200": "#bbf7d0",
144
+ "utility-green-400": "#4ade80",
145
+ "utility-green-500": "#22c55e",
146
+ "utility-green-600": "#16a34a",
147
+ "utility-green-700": "#15803d",
148
+ "utility-slate-50": "#f8fafc",
149
+ "utility-slate-100": "#f1f5f9",
150
+ "utility-slate-200": "#e2e8f0",
151
+ "utility-slate-400": "#94a3b8",
152
+ "utility-slate-500": "#64748b",
153
+ "utility-slate-700": "#334155",
154
+ "utility-sky-50": "#f0f9ff",
155
+ "utility-sky-100": "#e0f2fe",
156
+ "utility-sky-200": "#bae6fd",
157
+ "utility-sky-400": "#38bdf8",
158
+ "utility-sky-500": "#0ea5e9",
159
+ "utility-sky-700": "#0369a1",
160
+ "utility-indigo-50": "#eef2ff",
161
+ "utility-indigo-100": "#e0e7ff",
162
+ "utility-indigo-200": "#c7d2fe",
163
+ "utility-indigo-400": "#818cf8",
164
+ "utility-indigo-500": "#6366f1",
165
+ "utility-indigo-600": "#4f46e5",
166
+ "utility-indigo-700": "#4338ca",
167
+ "utility-purple-50": "#faf5ff",
168
+ "utility-purple-100": "#f3e8ff",
169
+ "utility-purple-200": "#e9d5ff",
170
+ "utility-purple-400": "#c084fc",
171
+ "utility-purple-500": "#a855f7",
172
+ "utility-purple-600": "#9333ea",
173
+ "utility-purple-700": "#7e22ce",
174
+ "utility-blue-50": "#eff6ff",
175
+ "utility-blue-100": "#dbeafe",
176
+ "utility-blue-200": "#bfdbfe",
177
+ "utility-blue-400": "#60a5fa",
178
+ "utility-blue-500": "#3b82f6",
179
+ "utility-blue-600": "#2563eb",
180
+ "utility-blue-700": "#1d4ed8",
181
+ "utility-pink-50": "#fdf2f8",
182
+ "utility-pink-100": "#fce7f3",
183
+ "utility-pink-200": "#fbcfe8",
184
+ "utility-pink-400": "#f472b6",
185
+ "utility-pink-500": "#ec4899",
186
+ "utility-pink-600": "#db2777",
187
+ "utility-pink-700": "#be185d",
188
+ "utility-orange-50": "#fff7ed",
189
+ "utility-orange-100": "#ffedd5",
190
+ "utility-orange-200": "#fed7aa",
191
+ "utility-orange-400": "#fb923c",
192
+ "utility-orange-500": "#f97316",
193
+ "utility-orange-600": "#ea580c",
194
+ "utility-orange-700": "#c2410c",
195
+ "utility-red-50": "#fef2f2",
196
+ "utility-red-100": "#fee2e2",
197
+ "utility-red-200": "#fecaca",
198
+ "utility-red-400": "#f87171",
199
+ "utility-red-500": "#ef4444",
200
+ "utility-red-600": "#dc2626",
201
+ "utility-red-700": "#b91c1c",
202
+ "utility-neutral-50": "#fafafa",
203
+ "utility-neutral-100": "#f5f5f5",
204
+ "utility-neutral-200": "#e5e5e5",
205
+ "utility-neutral-300": "#d4d4d4",
206
+ "utility-neutral-400": "#a3a3a3",
207
+ "utility-neutral-500": "#737373",
208
+ "utility-neutral-600": "#525252",
209
+ "utility-neutral-700": "#404040",
210
+ "utility-emerald-50": "#ecfdf5",
211
+ "utility-emerald-100": "#d1fae5",
212
+ "utility-emerald-200": "#a7f3d0",
213
+ "utility-emerald-500": "#10b981",
214
+ "utility-emerald-600": "#059669",
215
+ "utility-emerald-700": "#047857",
216
+ "utility-amber-50": "#fffbeb",
217
+ "utility-amber-100": "#fef3c7",
218
+ "utility-amber-200": "#fde68a",
219
+ "utility-amber-500": "#f59e0b",
220
+ "utility-amber-600": "#d97706",
221
+ "utility-amber-700": "#b45309",
222
+
223
+ // ── Alpha overlays ────────────────────────────────────────────────
224
+ "alpha-white-10": "rgba(255,255,255,0.10)",
225
+ "alpha-white-90": "rgba(255,255,255,0.90)",
226
+ "alpha-black-10": "rgba(0,0,0,0.10)",
227
+ "alpha-black-100": "rgba(0,0,0,1.00)",
228
+
229
+ // ── Component-specific tokens ─────────────────────────────────────
230
+ "slider-handle-bg": "#ffffff",
231
+ "slider-handle-border": "#7f56d9",
232
+ "toggle-slim-border-pressed": "#7f56d9",
223
233
  "toggle-slim-border-pressed-hover": "#6941c6",
224
234
  },
235
+
225
236
  spacing: {
226
237
  none: "0px",
227
238
  xxs: "2px",
@@ -240,21 +251,23 @@ module.exports = {
240
251
  "9xl": "96px",
241
252
  "10xl": "128px",
242
253
  "11xl": "160px",
243
- // Layout container tokens (Alert / Header navigation / Page header)
244
254
  "container-padding-desktop": "32px",
245
255
  "container-padding-mobile": "16px",
246
256
  },
257
+
247
258
  maxWidth: {
248
259
  "container-max-width-desktop": "1280px",
249
260
  "width-lg": "640px",
250
261
  },
262
+
251
263
  boxShadow: {
252
- // design.md §2 — base outer drop + the three-layer skeuomorphic stack
253
- // (Shadows/shadow-xs-skeuomorphic).
254
264
  xs: "0px 1px 2px 0px rgba(0,0,0,0.05)",
255
265
  skeuomorphic:
256
266
  "0px 1px 2px 0px rgba(0,0,0,0.05), inset 0px -2px 0px 0px rgba(0,0,0,0.05), inset 0px 0px 0px 1px rgba(0,0,0,0.18)",
267
+ lg: "0px 12px 16px -4px rgba(0,0,0,0.08), 0px 4px 6px -2px rgba(0,0,0,0.03), 0px 2px 2px -1px rgba(0,0,0,0.04)",
268
+ xl: "0px 20px 24px -4px rgba(0,0,0,0.08), 0px 8px 8px -4px rgba(0,0,0,0.03), 0px 3px 1.5px -1.5px rgba(0,0,0,0.04)",
257
269
  },
270
+
258
271
  borderRadius: {
259
272
  none: "0px",
260
273
  xxs: "2px",
@@ -268,10 +281,12 @@ module.exports = {
268
281
  "4xl": "24px",
269
282
  full: "9999px",
270
283
  },
284
+
271
285
  fontFamily: {
272
286
  body: ["Inter", "sans-serif"],
273
287
  display: ["Inter", "sans-serif"],
274
288
  },
289
+
275
290
  fontSize: {
276
291
  xs: ["12px", { lineHeight: "18px" }],
277
292
  sm: ["14px", { lineHeight: "20px" }],
@@ -284,9 +299,7 @@ module.exports = {
284
299
  "display-lg": ["48px", { lineHeight: "60px", letterSpacing: "-2px" }],
285
300
  "display-xl": ["60px", { lineHeight: "72px", letterSpacing: "-2px" }],
286
301
  },
287
- // Figma "Backdrop blurs/backdrop-blur-md" = radius 16 (Tailwind's default
288
- // backdrop-blur-md is 12px). backdrop-blur-* are Tailwind v3 core utilities
289
- // (enabled by default); this just aligns the md value to the design token.
302
+
290
303
  backdropBlur: {
291
304
  md: "16px",
292
305
  },