@nexus-cross/design-system 1.1.1 → 2.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.
Files changed (47) hide show
  1. package/claude-rules/nexus/CLAUDE.md +102 -6
  2. package/cursor-rules/CLAUDE.md +38 -9
  3. package/cursor-rules/nexus-project-setup.mdc +80 -19
  4. package/cursor-rules/nexus-ui-api.mdc +8 -2
  5. package/dist/chunks/{chunk-NZHK76R3.js → chunk-LYPBQI3Y.js} +31 -6
  6. package/dist/chunks/{chunk-6BWOKTVQ.mjs → chunk-WZFKTTVX.mjs} +31 -6
  7. package/dist/components/NxImage.d.ts.map +1 -1
  8. package/dist/index.js +22 -23
  9. package/dist/index.mjs +4 -5
  10. package/dist/modal/index.js +11 -11
  11. package/dist/modal/index.mjs +2 -2
  12. package/dist/nx-image.js +2 -2
  13. package/dist/nx-image.mjs +1 -1
  14. package/dist/tailwind-v4.css +19 -0
  15. package/dist/tokens/TOKENS.md +426 -0
  16. package/dist/tokens/company.css +410 -0
  17. package/dist/tokens/css.css +405 -0
  18. package/dist/tokens/data/borderWidth.json +38 -0
  19. package/dist/tokens/data/breakpoint.json +23 -0
  20. package/dist/tokens/data/color.json +973 -0
  21. package/dist/tokens/data/index.ts +63 -0
  22. package/dist/tokens/data/motion.json +64 -0
  23. package/dist/tokens/data/opacity.json +65 -0
  24. package/dist/tokens/data/radius.json +25 -0
  25. package/dist/tokens/data/shadow.json +76 -0
  26. package/dist/tokens/data/size.json +46 -0
  27. package/dist/tokens/data/space.json +86 -0
  28. package/dist/tokens/data/typography.json +626 -0
  29. package/dist/tokens/data/zIndex.json +22 -0
  30. package/dist/tokens/index.d.ts +11 -0
  31. package/dist/tokens/index.d.ts.map +1 -0
  32. package/dist/tokens/index.js +12 -0
  33. package/dist/tokens/index.mjs +1 -0
  34. package/dist/tokens/tailwind.js +260 -0
  35. package/dist/tokens-domains/data/index.ts +16 -0
  36. package/dist/tokens-domains/data/prediction/domain.json +324 -0
  37. package/dist/tokens-domains/index.d.ts +12 -0
  38. package/dist/tokens-domains/index.d.ts.map +1 -0
  39. package/dist/tokens-domains/index.js +12 -0
  40. package/dist/tokens-domains/index.mjs +1 -0
  41. package/dist/tokens-domains/prediction-vars.css +154 -0
  42. package/dist/tokens-domains/prediction.css +153 -0
  43. package/dist/tokens-domains/prediction.md +70 -0
  44. package/dist/tokens-domains/tailwind.js +59 -0
  45. package/package.json +27 -6
  46. package/dist/chunks/{chunk-5ZVPTIL3.mjs → chunk-3VFBPFZF.mjs} +1 -1
  47. package/dist/chunks/{chunk-7F4SOLAC.js → chunk-U53UA76K.js} +1 -1
@@ -0,0 +1,405 @@
1
+ /**
2
+ * Company CSS — 순수 CSS 변수 (:root + .dark)
3
+ * Tailwind 없이 var(--*) 로 사용 가능
4
+ * 자동 생성: scripts/generate-css.js
5
+ * 생성일: 2026-05-06T03:32:31.085Z
6
+ */
7
+
8
+ :root {
9
+ --color-bg-default: #FFFFFF;
10
+ --color-bg-subtle: #F3F6F8;
11
+ --color-bg-strong: #EAEDEE;
12
+ --color-surface-default: #FFFFFF;
13
+ --color-surface-default-dim: #F3F6F8;
14
+ --color-surface-default-hover: #F3F6F8;
15
+ --color-surface-default-pressed: #EAEDEE;
16
+ --color-surface-default-disabled: #EAEDEE;
17
+ --color-surface-subtle: #F3F6F8;
18
+ --color-surface-subtle-hover: #EAEDEE;
19
+ --color-surface-strong: #EAEDEE;
20
+ --color-surface-inverted: #161A21;
21
+ --color-text-highlight: #000000;
22
+ --color-text-primary: #1E232E;
23
+ --color-text-primary-hover: #000000;
24
+ --color-text-primary-pressed: #000000;
25
+ --color-text-secondary: #7E8597;
26
+ --color-text-secondary-hover: #3B4153;
27
+ --color-text-secondary-pressed: #3B4153;
28
+ --color-text-tertiary: #7E8597;
29
+ --color-text-tertiary-hover: #62697A;
30
+ --color-text-tertiary-pressed: #62697A;
31
+ --color-text-muted: #A2AABA;
32
+ --color-text-inverted: #FFFFFF;
33
+ --color-icon-highlight: #000000;
34
+ --color-icon-primary: #1E232E;
35
+ --color-icon-primary-hover: #000000;
36
+ --color-icon-primary-pressed: #000000;
37
+ --color-icon-secondary: #7E8597;
38
+ --color-icon-secondary-hover: #3B4153;
39
+ --color-icon-secondary-pressed: #3B4153;
40
+ --color-icon-tertiary: #7E8597;
41
+ --color-icon-tertiary-hover: #62697A;
42
+ --color-icon-tertiary-pressed: #62697A;
43
+ --color-icon-muted: #A2AABA;
44
+ --color-icon-inverted: #FFFFFF;
45
+ --color-border-default: #EAEDEE;
46
+ --color-border-default-hover: #A2AABA;
47
+ --color-border-default-focus: #62697A;
48
+ --color-border-subtle: #F3F6F8;
49
+ --color-border-medium: #C6D0DA;
50
+ --color-border-strong: #000000;
51
+ --color-accent-primary: #09B498;
52
+ --color-accent-primary-hover: #07C6A6;
53
+ --color-accent-primary-pressed: #0F947E;
54
+ --color-accent-primary-disabled: #CDF4ED;
55
+ --color-accent-primary-focus: #09B498;
56
+ --color-accent-primary-intense: #0F947E;
57
+ --color-accent-primary-dim: #83DCC9;
58
+ --color-accent-on-primary: #FFFFFF;
59
+ --color-accent-secondary: #7346F3;
60
+ --color-accent-secondary-intense: #7346F3;
61
+ --color-accent-secondary-dim: #E0CDF8;
62
+ --color-accent-secondary-hover: #7D4FFF;
63
+ --color-accent-secondary-pressed: #9975FF;
64
+ --color-accent-secondary-disabled: #F4EBFF;
65
+ --color-accent-secondary-focus: #7D4FFF;
66
+ --color-accent-on-secondary: #FFFFFF;
67
+ --color-accent-primary-bg: #EAFAF6;
68
+ --color-accent-secondary-bg: #F9F5FF;
69
+ --color-status-success: #00B784;
70
+ --color-status-success-hover: #00C890;
71
+ --color-status-success-pressed: #1B9674;
72
+ --color-status-success-disabled: #CDF4EA;
73
+ --color-status-success-intense: #1B9674;
74
+ --color-status-success-dim: #9FECD7;
75
+ --color-status-warning: #FF9D00;
76
+ --color-status-warning-hover: #FFAA00;
77
+ --color-status-warning-pressed: #F9C127;
78
+ --color-status-warning-disabled: #FFF2D2;
79
+ --color-status-warning-intense: #D9840C;
80
+ --color-status-warning-dim: #FFDB6E;
81
+ --color-status-danger: #DB0A2D;
82
+ --color-status-danger-hover: #E62848;
83
+ --color-status-danger-pressed: #AF2239;
84
+ --color-status-danger-disabled: #FDE8EB;
85
+ --color-status-danger-intense: #D20625;
86
+ --color-status-danger-dim: #FFBBC4;
87
+ --color-status-danger-focus: #E62848;
88
+ --color-status-info: #0095FF;
89
+ --color-status-info-hover: #20B1FF;
90
+ --color-status-info-pressed: #1087FF;
91
+ --color-status-info-disabled: #CCEFFF;
92
+ --color-status-info-intense: #1672D0;
93
+ --color-status-info-dim: #92DDFF;
94
+ --color-overlay-dim: #000000;
95
+ --color-overlay-light: #000000;
96
+ --color-static-white: #FFFFFF;
97
+ --color-static-black: #000000;
98
+ --shadow-none: none;
99
+ --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.12);
100
+ --shadow-md: 0 1px 3px 0 rgb(0 0 0 / 0.12);
101
+ --shadow-lg: 0 2px 8px -1px rgb(0 0 0 / 0.12);
102
+ --shadow-xl: 0 4px 15px -3px rgb(0 0 0 / 0.12);
103
+ --shadow-2xl: 0 5px 25px -5px rgb(0 0 0 / 0.12);
104
+ --radius-corner-none: 0px;
105
+ --radius-corner-sm: 4px;
106
+ --radius-corner-md: 8px;
107
+ --radius-corner-lg: 12px;
108
+ --radius-corner-xl: 16px;
109
+ --radius-corner-2xl: 24px;
110
+ --radius-corner-full: 9999px;
111
+ --breakpoint-screen-xs: 320px;
112
+ --breakpoint-screen-sm: 640px;
113
+ --breakpoint-screen-md: 768px;
114
+ --breakpoint-screen-lg: 1024px;
115
+ --breakpoint-screen-xl: 1280px;
116
+ --breakpoint-screen-2xl: 1440px;
117
+ --text-text-xs: 0.75rem;
118
+ --text-text-xs--line-height: 1.5;
119
+ --text-text-sm: 0.875rem;
120
+ --text-text-sm--line-height: 1.5;
121
+ --text-text-base: 1rem;
122
+ --text-text-base--line-height: 1.5;
123
+ --text-text-lg: 1.125rem;
124
+ --text-text-lg--line-height: 1.5;
125
+ --text-text-xl: 1.25rem;
126
+ --text-text-xl--line-height: 1.5;
127
+ --text-text-medium-xs: 0.75rem;
128
+ --text-text-medium-xs--line-height: 1.5;
129
+ --text-text-medium-sm: 0.875rem;
130
+ --text-text-medium-sm--line-height: 1.5;
131
+ --text-text-medium-base: 1rem;
132
+ --text-text-medium-base--line-height: 1.5;
133
+ --text-text-medium-lg: 1.125rem;
134
+ --text-text-medium-lg--line-height: 1.5;
135
+ --text-text-medium-xl: 1.25rem;
136
+ --text-text-medium-xl--line-height: 1.5;
137
+ --text-text-semibold-xs: 0.75rem;
138
+ --text-text-semibold-xs--line-height: 1.5;
139
+ --text-text-semibold-sm: 0.875rem;
140
+ --text-text-semibold-sm--line-height: 1.5;
141
+ --text-text-semibold-base: 1rem;
142
+ --text-text-semibold-base--line-height: 1.5;
143
+ --text-text-semibold-lg: 1.125rem;
144
+ --text-text-semibold-lg--line-height: 1.5;
145
+ --text-text-semibold-xl: 1.25rem;
146
+ --text-text-semibold-xl--line-height: 1.5;
147
+ --text-heading-h7: 0.875rem;
148
+ --text-heading-h7--line-height: 1.25;
149
+ --text-heading-h6: 1rem;
150
+ --text-heading-h6--line-height: 1.25;
151
+ --text-heading-h5: 1.125rem;
152
+ --text-heading-h5--line-height: 1.25;
153
+ --text-heading-h4: 1.25rem;
154
+ --text-heading-h4--line-height: 1.25;
155
+ --text-heading-h3: 1.5rem;
156
+ --text-heading-h3--line-height: 1.25;
157
+ --text-heading-h2: 1.875rem;
158
+ --text-heading-h2--line-height: 1.25;
159
+ --text-heading-h1: 2.25rem;
160
+ --text-heading-h1--line-height: 1.25;
161
+ --text-display-sm: 2.25rem;
162
+ --text-display-sm--line-height: 1.25;
163
+ --text-display-md: 3rem;
164
+ --text-display-md--line-height: 1.25;
165
+ --text-display-lg: 3.75rem;
166
+ --text-display-lg--line-height: 1.25;
167
+ --text-label-sm: 0.75rem;
168
+ --text-label-sm--line-height: 1;
169
+ --text-label-md: 0.875rem;
170
+ --text-label-md--line-height: 1;
171
+ --text-label-lg: 1rem;
172
+ --text-label-lg--line-height: 1;
173
+ --text-label-semibold-sm: 0.75rem;
174
+ --text-label-semibold-sm--line-height: 1;
175
+ --text-label-semibold-md: 0.875rem;
176
+ --text-label-semibold-md--line-height: 1;
177
+ --text-label-semibold-lg: 1rem;
178
+ --text-label-semibold-lg--line-height: 1;
179
+ --ease-transition-instant: linear;
180
+ --ease-transition-fast: cubic-bezier(0, 0, 0.2, 1);
181
+ --ease-transition-normal: cubic-bezier(0, 0, 0.2, 1);
182
+ --ease-transition-slow: cubic-bezier(0, 0, 0.2, 1);
183
+ --ease-animation-enter: cubic-bezier(0, 0, 0.2, 1);
184
+ --ease-animation-exit: cubic-bezier(0.4, 0, 1, 1);
185
+ --ease-animation-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
186
+ --spacing-padding-none: 0;
187
+ --spacing-padding-2xs: 0.25rem;
188
+ --spacing-padding-xs: 0.5rem;
189
+ --spacing-padding-sm: 0.75rem;
190
+ --spacing-padding-md: 1rem;
191
+ --spacing-padding-lg: 1.5rem;
192
+ --spacing-padding-xl: 2rem;
193
+ --spacing-padding-2xl: 2.5rem;
194
+ --spacing-gap-none: 0;
195
+ --spacing-gap-xs: 0.25rem;
196
+ --spacing-gap-sm: 0.5rem;
197
+ --spacing-gap-md: 1rem;
198
+ --spacing-gap-lg: 1.5rem;
199
+ --spacing-gap-xl: 2rem;
200
+ --border-width-stroke-none: 0px;
201
+ --border-width-stroke-hairline: 0.5px;
202
+ --border-width-stroke-thin: 1px;
203
+ --border-width-stroke-default: 1px;
204
+ --border-width-stroke-thick: 1.5px;
205
+ --border-width-stroke-heavy: 2px;
206
+ --opacity-overlay-dim: 0.5;
207
+ --opacity-overlay-light: 0.3;
208
+ --opacity-overlay-heavy: 0.7;
209
+ --opacity-disabled-element: 0.4;
210
+ --opacity-disabled-text: 0.5;
211
+ --opacity-hover-subtle: 0.05;
212
+ --opacity-hover-default: 0.1;
213
+ --opacity-pressed-subtle: 0.1;
214
+ --opacity-pressed-default: 0.2;
215
+ --size-icon-xs: 12px;
216
+ --size-icon-sm: 16px;
217
+ --size-icon-md: 20px;
218
+ --size-icon-lg: 24px;
219
+ --size-icon-xl: 32px;
220
+ --size-control-xs: 24px;
221
+ --size-control-sm: 32px;
222
+ --size-control-md: 40px;
223
+ --size-control-lg: 48px;
224
+ --size-touch-min: 44px;
225
+ --size-avatar-xs: 24px;
226
+ --size-avatar-sm: 32px;
227
+ --size-avatar-md: 40px;
228
+ --size-avatar-lg: 48px;
229
+ --size-avatar-xl: 64px;
230
+ --size-avatar-2xl: 96px;
231
+ --z-index-layer-base: 0;
232
+ --z-index-layer-dropdown: 10;
233
+ --z-index-layer-sticky: 20;
234
+ --z-index-layer-popover: 30;
235
+ --z-index-layer-modal: 40;
236
+ --z-index-layer-toast: 50;
237
+ --z-index-layer-tooltip: 100;
238
+ --duration-transition-instant: 0ms;
239
+ --duration-transition-fast: 150ms;
240
+ --duration-transition-normal: 200ms;
241
+ --duration-transition-slow: 300ms;
242
+ --duration-animation-enter: 200ms;
243
+ --duration-animation-exit: 150ms;
244
+ --duration-animation-bounce: 500ms;
245
+ --font-weight-text-xs: 400;
246
+ --letter-spacing-text-xs: -0.01em;
247
+ --font-weight-text-sm: 400;
248
+ --letter-spacing-text-sm: -0.01em;
249
+ --font-weight-text-base: 400;
250
+ --letter-spacing-text-base: -0.01em;
251
+ --font-weight-text-lg: 400;
252
+ --letter-spacing-text-lg: -0.01em;
253
+ --font-weight-text-xl: 400;
254
+ --letter-spacing-text-xl: -0.01em;
255
+ --font-weight-text-medium-xs: 500;
256
+ --letter-spacing-text-medium-xs: -0.01em;
257
+ --font-weight-text-medium-sm: 500;
258
+ --letter-spacing-text-medium-sm: -0.01em;
259
+ --font-weight-text-medium-base: 500;
260
+ --letter-spacing-text-medium-base: -0.01em;
261
+ --font-weight-text-medium-lg: 500;
262
+ --letter-spacing-text-medium-lg: -0.01em;
263
+ --font-weight-text-medium-xl: 500;
264
+ --letter-spacing-text-medium-xl: -0.01em;
265
+ --font-weight-text-semibold-xs: 600;
266
+ --letter-spacing-text-semibold-xs: -0.01em;
267
+ --font-weight-text-semibold-sm: 600;
268
+ --letter-spacing-text-semibold-sm: -0.01em;
269
+ --font-weight-text-semibold-base: 600;
270
+ --letter-spacing-text-semibold-base: -0.01em;
271
+ --font-weight-text-semibold-lg: 600;
272
+ --letter-spacing-text-semibold-lg: -0.01em;
273
+ --font-weight-text-semibold-xl: 600;
274
+ --letter-spacing-text-semibold-xl: -0.01em;
275
+ --font-weight-heading-h7: 600;
276
+ --letter-spacing-heading-h7: 0;
277
+ --font-weight-heading-h6: 600;
278
+ --letter-spacing-heading-h6: 0;
279
+ --font-weight-heading-h5: 600;
280
+ --letter-spacing-heading-h5: 0;
281
+ --font-weight-heading-h4: 600;
282
+ --letter-spacing-heading-h4: 0;
283
+ --font-weight-heading-h3: 600;
284
+ --letter-spacing-heading-h3: 0;
285
+ --font-weight-heading-h2: 700;
286
+ --letter-spacing-heading-h2: 0;
287
+ --font-weight-heading-h1: 700;
288
+ --letter-spacing-heading-h1: 0;
289
+ --font-weight-display-sm: 700;
290
+ --letter-spacing-display-sm: 0;
291
+ --font-weight-display-md: 700;
292
+ --letter-spacing-display-md: 0;
293
+ --font-weight-display-lg: 700;
294
+ --letter-spacing-display-lg: 0;
295
+ --font-weight-label-sm: 500;
296
+ --letter-spacing-label-sm: 0;
297
+ --font-weight-label-md: 500;
298
+ --letter-spacing-label-md: 0;
299
+ --font-weight-label-lg: 500;
300
+ --letter-spacing-label-lg: 0;
301
+ --font-weight-label-semibold-sm: 600;
302
+ --letter-spacing-label-semibold-sm: 0;
303
+ --font-weight-label-semibold-md: 600;
304
+ --letter-spacing-label-semibold-md: 0;
305
+ --font-weight-label-semibold-lg: 600;
306
+ --letter-spacing-label-semibold-lg: 0;
307
+ }
308
+
309
+ .dark {
310
+ --color-bg-default: #1E232E;
311
+ --color-bg-subtle: #161A21;
312
+ --color-bg-strong: #000000;
313
+ --color-surface-default: #1E232E;
314
+ --color-surface-default-dim: #161A21;
315
+ --color-surface-default-hover: #252B39;
316
+ --color-surface-default-pressed: #363B4C;
317
+ --color-surface-default-disabled: #363B4C;
318
+ --color-surface-subtle: #252B39;
319
+ --color-surface-subtle-hover: #363B4C;
320
+ --color-surface-strong: #363B4C;
321
+ --color-surface-inverted: #F3F6F8;
322
+ --color-text-highlight: #FFFFFF;
323
+ --color-text-primary: #EAEDEE;
324
+ --color-text-primary-hover: #FFFFFF;
325
+ --color-text-primary-pressed: #FFFFFF;
326
+ --color-text-secondary: #A2AABA;
327
+ --color-text-secondary-hover: #C6D0DA;
328
+ --color-text-secondary-pressed: #C6D0DA;
329
+ --color-text-tertiary: #7E8597;
330
+ --color-text-tertiary-hover: #A2AABA;
331
+ --color-text-tertiary-pressed: #A2AABA;
332
+ --color-text-muted: #62697A;
333
+ --color-text-inverted: #000000;
334
+ --color-icon-highlight: #FFFFFF;
335
+ --color-icon-primary: #EAEDEE;
336
+ --color-icon-primary-hover: #FFFFFF;
337
+ --color-icon-primary-pressed: #FFFFFF;
338
+ --color-icon-secondary: #A2AABA;
339
+ --color-icon-secondary-hover: #C6D0DA;
340
+ --color-icon-secondary-pressed: #C6D0DA;
341
+ --color-icon-tertiary: #7E8597;
342
+ --color-icon-tertiary-hover: #A2AABA;
343
+ --color-icon-tertiary-pressed: #A2AABA;
344
+ --color-icon-muted: #62697A;
345
+ --color-icon-inverted: #000000;
346
+ --color-border-default: #3B4153;
347
+ --color-border-default-hover: #62697A;
348
+ --color-border-default-focus: #A2AABA;
349
+ --color-border-subtle: #252B39;
350
+ --color-border-medium: #62697A;
351
+ --color-border-strong: #FFFFFF;
352
+ --color-accent-primary: #00D5AA;
353
+ --color-accent-primary-hover: #12DFB6;
354
+ --color-accent-primary-pressed: #07C6A6;
355
+ --color-accent-primary-disabled: #123F3C;
356
+ --color-accent-primary-focus: #07C6A6;
357
+ --color-accent-primary-intense: #12DFB6;
358
+ --color-accent-primary-dim: #0F947E;
359
+ --color-accent-on-primary: #000000;
360
+ --color-accent-secondary: #7D4FFF;
361
+ --color-accent-secondary-intense: #9975FF;
362
+ --color-accent-secondary-dim: #7346F3;
363
+ --color-accent-secondary-hover: #9975FF;
364
+ --color-accent-secondary-pressed: #7346F3;
365
+ --color-accent-secondary-disabled: #3A1D7C;
366
+ --color-accent-secondary-focus: #9975FF;
367
+ --color-accent-on-secondary: #FFFFFF;
368
+ --color-accent-primary-bg: #113535;
369
+ --color-accent-secondary-bg: #2F1766;
370
+ --color-status-success: #02D69C;
371
+ --color-status-success-hover: #0BDFA5;
372
+ --color-status-success-pressed: #00C890;
373
+ --color-status-success-disabled: #0D4431;
374
+ --color-status-success-intense: #0BDFA5;
375
+ --color-status-success-dim: #1B9674;
376
+ --color-status-warning: #FFAA00;
377
+ --color-status-warning-hover: #FF9D00;
378
+ --color-status-warning-pressed: #F9C127;
379
+ --color-status-warning-disabled: #4A3F2B;
380
+ --color-status-warning-intense: #FFAA00;
381
+ --color-status-warning-dim: #9F701A;
382
+ --color-status-danger: #DB0A2D;
383
+ --color-status-danger-hover: #E62848;
384
+ --color-status-danger-pressed: #D20625;
385
+ --color-status-danger-disabled: #5B121E;
386
+ --color-status-danger-intense: #EC3C56;
387
+ --color-status-danger-dim: #AF2239;
388
+ --color-status-danger-focus: #AF2239;
389
+ --color-status-info: #0095FF;
390
+ --color-status-info-hover: #20B1FF;
391
+ --color-status-info-pressed: #1087FF;
392
+ --color-status-info-disabled: #143A67;
393
+ --color-status-info-intense: #20B1FF;
394
+ --color-status-info-dim: #1672D0;
395
+ --color-overlay-dim: #000000;
396
+ --color-overlay-light: #000000;
397
+ --color-static-white: #FFFFFF;
398
+ --color-static-black: #000000;
399
+ --shadow-none: none;
400
+ --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
401
+ --shadow-md: 0 1px 3px 0 rgb(0 0 0 / 0.4), 0 1px 2px -1px rgb(0 0 0 / 0.3);
402
+ --shadow-lg: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
403
+ --shadow-xl: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
404
+ --shadow-2xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.3);
405
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "primitive": {
3
+ "0": "0px",
4
+ "1": "1px",
5
+ "2": "2px",
6
+ "4": "4px",
7
+ "0.5": "0.5px",
8
+ "1.5": "1.5px"
9
+ },
10
+ "semantic": {
11
+ "stroke": {
12
+ "none": {
13
+ "source": "0",
14
+ "description": "No border"
15
+ },
16
+ "hairline": {
17
+ "source": "0.5",
18
+ "description": "Hairline border (0.5px)"
19
+ },
20
+ "thin": {
21
+ "source": "1",
22
+ "description": "Thin border"
23
+ },
24
+ "default": {
25
+ "source": "1",
26
+ "description": "Default border"
27
+ },
28
+ "thick": {
29
+ "source": "1.5",
30
+ "description": "Thick border"
31
+ },
32
+ "heavy": {
33
+ "source": "2",
34
+ "description": "Heavy border"
35
+ }
36
+ }
37
+ }
38
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "primitive": {
3
+ "320": "320px",
4
+ "375": "375px",
5
+ "480": "480px",
6
+ "640": "640px",
7
+ "768": "768px",
8
+ "1024": "1024px",
9
+ "1280": "1280px",
10
+ "1440": "1440px",
11
+ "1920": "1920px"
12
+ },
13
+ "semantic": {
14
+ "screen": {
15
+ "xs": { "source": "320", "description": "Extra small screens" },
16
+ "sm": { "source": "640", "description": "Small screens" },
17
+ "md": { "source": "768", "description": "Medium screens" },
18
+ "lg": { "source": "1024", "description": "Large screens" },
19
+ "xl": { "source": "1280", "description": "Extra large screens" },
20
+ "2xl": { "source": "1440", "description": "2X large screens" }
21
+ }
22
+ }
23
+ }