@mgcrea/react-native-tailwind 0.9.0 → 0.9.1
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/dist/babel/index.cjs +28 -13
- package/dist/babel/plugin.d.ts +2 -1
- package/dist/babel/plugin.test.ts +86 -0
- package/dist/babel/plugin.ts +7 -4
- package/dist/babel/utils/styleInjection.d.ts +1 -1
- package/dist/babel/utils/styleInjection.ts +24 -7
- package/dist/parser/aspectRatio.js +1 -1
- package/dist/parser/aspectRatio.test.js +1 -1
- package/dist/parser/spacing.d.ts +1 -1
- package/dist/parser/spacing.js +1 -1
- package/dist/parser/spacing.test.js +1 -1
- package/dist/runtime.cjs +1 -1
- package/dist/runtime.cjs.map +3 -3
- package/dist/runtime.js +1 -1
- package/dist/runtime.js.map +3 -3
- package/dist/runtime.test.js +1 -1
- package/package.json +2 -3
- package/src/babel/plugin.test.ts +86 -0
- package/src/babel/plugin.ts +7 -4
- package/src/babel/utils/styleInjection.ts +24 -7
- package/src/parser/aspectRatio.test.ts +25 -2
- package/src/parser/aspectRatio.ts +3 -3
- package/src/parser/spacing.test.ts +63 -0
- package/src/parser/spacing.ts +10 -6
- package/src/runtime.test.ts +27 -0
- package/src/runtime.ts +2 -1
- package/dist/babel/index.test.ts +0 -481
- package/dist/config/palettes.d.ts +0 -302
- package/dist/config/palettes.js +0 -1
- package/dist/parser/__snapshots__/aspectRatio.test.js.snap +0 -9
- package/dist/parser/__snapshots__/borders.test.js.snap +0 -23
- package/dist/parser/__snapshots__/colors.test.js.snap +0 -251
- package/dist/parser/__snapshots__/shadows.test.js.snap +0 -76
- package/dist/parser/__snapshots__/sizing.test.js.snap +0 -61
- package/dist/parser/__snapshots__/spacing.test.js.snap +0 -40
- package/dist/parser/__snapshots__/transforms.test.js.snap +0 -58
- package/dist/parser/__snapshots__/typography.test.js.snap +0 -30
- package/dist/parser/aspectRatio.test.d.ts +0 -1
- package/dist/parser/borders.test.d.ts +0 -1
- package/dist/parser/colors.test.d.ts +0 -1
- package/dist/parser/layout.test.d.ts +0 -1
- package/dist/parser/modifiers.test.d.ts +0 -1
- package/dist/parser/shadows.test.d.ts +0 -1
- package/dist/parser/sizing.test.d.ts +0 -1
- package/dist/parser/spacing.test.d.ts +0 -1
- package/dist/parser/typography.test.d.ts +0 -1
- package/dist/types.d.ts +0 -42
- package/dist/types.js +0 -1
|
@@ -1,302 +0,0 @@
|
|
|
1
|
-
export type TailwindPalette = {
|
|
2
|
-
"50": string;
|
|
3
|
-
"100": string;
|
|
4
|
-
"200": string;
|
|
5
|
-
"300": string;
|
|
6
|
-
"400": string;
|
|
7
|
-
"500": string;
|
|
8
|
-
"600": string;
|
|
9
|
-
"700": string;
|
|
10
|
-
"800": string;
|
|
11
|
-
"900": string;
|
|
12
|
-
"950": string;
|
|
13
|
-
};
|
|
14
|
-
export declare const TAILWIND_PALETTES: {
|
|
15
|
-
red: {
|
|
16
|
-
"50": string;
|
|
17
|
-
"100": string;
|
|
18
|
-
"200": string;
|
|
19
|
-
"300": string;
|
|
20
|
-
"400": string;
|
|
21
|
-
"500": string;
|
|
22
|
-
"600": string;
|
|
23
|
-
"700": string;
|
|
24
|
-
"800": string;
|
|
25
|
-
"900": string;
|
|
26
|
-
"950": string;
|
|
27
|
-
};
|
|
28
|
-
orange: {
|
|
29
|
-
"50": string;
|
|
30
|
-
"100": string;
|
|
31
|
-
"200": string;
|
|
32
|
-
"300": string;
|
|
33
|
-
"400": string;
|
|
34
|
-
"500": string;
|
|
35
|
-
"600": string;
|
|
36
|
-
"700": string;
|
|
37
|
-
"800": string;
|
|
38
|
-
"900": string;
|
|
39
|
-
"950": string;
|
|
40
|
-
};
|
|
41
|
-
amber: {
|
|
42
|
-
"50": string;
|
|
43
|
-
"100": string;
|
|
44
|
-
"200": string;
|
|
45
|
-
"300": string;
|
|
46
|
-
"400": string;
|
|
47
|
-
"500": string;
|
|
48
|
-
"600": string;
|
|
49
|
-
"700": string;
|
|
50
|
-
"800": string;
|
|
51
|
-
"900": string;
|
|
52
|
-
"950": string;
|
|
53
|
-
};
|
|
54
|
-
yellow: {
|
|
55
|
-
"50": string;
|
|
56
|
-
"100": string;
|
|
57
|
-
"200": string;
|
|
58
|
-
"300": string;
|
|
59
|
-
"400": string;
|
|
60
|
-
"500": string;
|
|
61
|
-
"600": string;
|
|
62
|
-
"700": string;
|
|
63
|
-
"800": string;
|
|
64
|
-
"900": string;
|
|
65
|
-
"950": string;
|
|
66
|
-
};
|
|
67
|
-
lime: {
|
|
68
|
-
"50": string;
|
|
69
|
-
"100": string;
|
|
70
|
-
"200": string;
|
|
71
|
-
"300": string;
|
|
72
|
-
"400": string;
|
|
73
|
-
"500": string;
|
|
74
|
-
"600": string;
|
|
75
|
-
"700": string;
|
|
76
|
-
"800": string;
|
|
77
|
-
"900": string;
|
|
78
|
-
"950": string;
|
|
79
|
-
};
|
|
80
|
-
green: {
|
|
81
|
-
"50": string;
|
|
82
|
-
"100": string;
|
|
83
|
-
"200": string;
|
|
84
|
-
"300": string;
|
|
85
|
-
"400": string;
|
|
86
|
-
"500": string;
|
|
87
|
-
"600": string;
|
|
88
|
-
"700": string;
|
|
89
|
-
"800": string;
|
|
90
|
-
"900": string;
|
|
91
|
-
"950": string;
|
|
92
|
-
};
|
|
93
|
-
emerald: {
|
|
94
|
-
"50": string;
|
|
95
|
-
"100": string;
|
|
96
|
-
"200": string;
|
|
97
|
-
"300": string;
|
|
98
|
-
"400": string;
|
|
99
|
-
"500": string;
|
|
100
|
-
"600": string;
|
|
101
|
-
"700": string;
|
|
102
|
-
"800": string;
|
|
103
|
-
"900": string;
|
|
104
|
-
"950": string;
|
|
105
|
-
};
|
|
106
|
-
teal: {
|
|
107
|
-
"50": string;
|
|
108
|
-
"100": string;
|
|
109
|
-
"200": string;
|
|
110
|
-
"300": string;
|
|
111
|
-
"400": string;
|
|
112
|
-
"500": string;
|
|
113
|
-
"600": string;
|
|
114
|
-
"700": string;
|
|
115
|
-
"800": string;
|
|
116
|
-
"900": string;
|
|
117
|
-
"950": string;
|
|
118
|
-
};
|
|
119
|
-
cyan: {
|
|
120
|
-
"50": string;
|
|
121
|
-
"100": string;
|
|
122
|
-
"200": string;
|
|
123
|
-
"300": string;
|
|
124
|
-
"400": string;
|
|
125
|
-
"500": string;
|
|
126
|
-
"600": string;
|
|
127
|
-
"700": string;
|
|
128
|
-
"800": string;
|
|
129
|
-
"900": string;
|
|
130
|
-
"950": string;
|
|
131
|
-
};
|
|
132
|
-
sky: {
|
|
133
|
-
"50": string;
|
|
134
|
-
"100": string;
|
|
135
|
-
"200": string;
|
|
136
|
-
"300": string;
|
|
137
|
-
"400": string;
|
|
138
|
-
"500": string;
|
|
139
|
-
"600": string;
|
|
140
|
-
"700": string;
|
|
141
|
-
"800": string;
|
|
142
|
-
"900": string;
|
|
143
|
-
"950": string;
|
|
144
|
-
};
|
|
145
|
-
blue: {
|
|
146
|
-
"50": string;
|
|
147
|
-
"100": string;
|
|
148
|
-
"200": string;
|
|
149
|
-
"300": string;
|
|
150
|
-
"400": string;
|
|
151
|
-
"500": string;
|
|
152
|
-
"600": string;
|
|
153
|
-
"700": string;
|
|
154
|
-
"800": string;
|
|
155
|
-
"900": string;
|
|
156
|
-
"950": string;
|
|
157
|
-
};
|
|
158
|
-
indigo: {
|
|
159
|
-
"50": string;
|
|
160
|
-
"100": string;
|
|
161
|
-
"200": string;
|
|
162
|
-
"300": string;
|
|
163
|
-
"400": string;
|
|
164
|
-
"500": string;
|
|
165
|
-
"600": string;
|
|
166
|
-
"700": string;
|
|
167
|
-
"800": string;
|
|
168
|
-
"900": string;
|
|
169
|
-
"950": string;
|
|
170
|
-
};
|
|
171
|
-
violet: {
|
|
172
|
-
"50": string;
|
|
173
|
-
"100": string;
|
|
174
|
-
"200": string;
|
|
175
|
-
"300": string;
|
|
176
|
-
"400": string;
|
|
177
|
-
"500": string;
|
|
178
|
-
"600": string;
|
|
179
|
-
"700": string;
|
|
180
|
-
"800": string;
|
|
181
|
-
"900": string;
|
|
182
|
-
"950": string;
|
|
183
|
-
};
|
|
184
|
-
purple: {
|
|
185
|
-
"50": string;
|
|
186
|
-
"100": string;
|
|
187
|
-
"200": string;
|
|
188
|
-
"300": string;
|
|
189
|
-
"400": string;
|
|
190
|
-
"500": string;
|
|
191
|
-
"600": string;
|
|
192
|
-
"700": string;
|
|
193
|
-
"800": string;
|
|
194
|
-
"900": string;
|
|
195
|
-
"950": string;
|
|
196
|
-
};
|
|
197
|
-
fuchsia: {
|
|
198
|
-
"50": string;
|
|
199
|
-
"100": string;
|
|
200
|
-
"200": string;
|
|
201
|
-
"300": string;
|
|
202
|
-
"400": string;
|
|
203
|
-
"500": string;
|
|
204
|
-
"600": string;
|
|
205
|
-
"700": string;
|
|
206
|
-
"800": string;
|
|
207
|
-
"900": string;
|
|
208
|
-
"950": string;
|
|
209
|
-
};
|
|
210
|
-
pink: {
|
|
211
|
-
"50": string;
|
|
212
|
-
"100": string;
|
|
213
|
-
"200": string;
|
|
214
|
-
"300": string;
|
|
215
|
-
"400": string;
|
|
216
|
-
"500": string;
|
|
217
|
-
"600": string;
|
|
218
|
-
"700": string;
|
|
219
|
-
"800": string;
|
|
220
|
-
"900": string;
|
|
221
|
-
"950": string;
|
|
222
|
-
};
|
|
223
|
-
rose: {
|
|
224
|
-
"50": string;
|
|
225
|
-
"100": string;
|
|
226
|
-
"200": string;
|
|
227
|
-
"300": string;
|
|
228
|
-
"400": string;
|
|
229
|
-
"500": string;
|
|
230
|
-
"600": string;
|
|
231
|
-
"700": string;
|
|
232
|
-
"800": string;
|
|
233
|
-
"900": string;
|
|
234
|
-
"950": string;
|
|
235
|
-
};
|
|
236
|
-
slate: {
|
|
237
|
-
"50": string;
|
|
238
|
-
"100": string;
|
|
239
|
-
"200": string;
|
|
240
|
-
"300": string;
|
|
241
|
-
"400": string;
|
|
242
|
-
"500": string;
|
|
243
|
-
"600": string;
|
|
244
|
-
"700": string;
|
|
245
|
-
"800": string;
|
|
246
|
-
"900": string;
|
|
247
|
-
"950": string;
|
|
248
|
-
};
|
|
249
|
-
gray: {
|
|
250
|
-
"50": string;
|
|
251
|
-
"100": string;
|
|
252
|
-
"200": string;
|
|
253
|
-
"300": string;
|
|
254
|
-
"400": string;
|
|
255
|
-
"500": string;
|
|
256
|
-
"600": string;
|
|
257
|
-
"700": string;
|
|
258
|
-
"800": string;
|
|
259
|
-
"900": string;
|
|
260
|
-
"950": string;
|
|
261
|
-
};
|
|
262
|
-
zinc: {
|
|
263
|
-
"50": string;
|
|
264
|
-
"100": string;
|
|
265
|
-
"200": string;
|
|
266
|
-
"300": string;
|
|
267
|
-
"400": string;
|
|
268
|
-
"500": string;
|
|
269
|
-
"600": string;
|
|
270
|
-
"700": string;
|
|
271
|
-
"800": string;
|
|
272
|
-
"900": string;
|
|
273
|
-
"950": string;
|
|
274
|
-
};
|
|
275
|
-
neutral: {
|
|
276
|
-
"50": string;
|
|
277
|
-
"100": string;
|
|
278
|
-
"200": string;
|
|
279
|
-
"300": string;
|
|
280
|
-
"400": string;
|
|
281
|
-
"500": string;
|
|
282
|
-
"600": string;
|
|
283
|
-
"700": string;
|
|
284
|
-
"800": string;
|
|
285
|
-
"900": string;
|
|
286
|
-
"950": string;
|
|
287
|
-
};
|
|
288
|
-
stone: {
|
|
289
|
-
"50": string;
|
|
290
|
-
"100": string;
|
|
291
|
-
"200": string;
|
|
292
|
-
"300": string;
|
|
293
|
-
"400": string;
|
|
294
|
-
"500": string;
|
|
295
|
-
"600": string;
|
|
296
|
-
"700": string;
|
|
297
|
-
"800": string;
|
|
298
|
-
"900": string;
|
|
299
|
-
"950": string;
|
|
300
|
-
};
|
|
301
|
-
};
|
|
302
|
-
export type TailwindColor = keyof typeof TAILWIND_PALETTES;
|
package/dist/config/palettes.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Object.defineProperty(exports,"__esModule",{value:true});exports.TAILWIND_PALETTES=void 0;var TAILWIND_PALETTES=exports.TAILWIND_PALETTES={red:{"50":"#fef2f2","100":"#ffe2e2","200":"#ffc9c9","300":"#ffa2a2","400":"#ff6467","500":"#fb2c36","600":"#e7000b","700":"#c10007","800":"#9f0712","900":"#82181a","950":"#460809"},orange:{"50":"#fff7ed","100":"#ffedd4","200":"#ffd6a7","300":"#ffb86a","400":"#ff8904","500":"#ff6900","600":"#f54900","700":"#ca3500","800":"#9f2d00","900":"#7e2a0c","950":"#441306"},amber:{"50":"#fffbeb","100":"#fef3c6","200":"#fee685","300":"#ffd230","400":"#ffb900","500":"#fe9a00","600":"#e17100","700":"#bb4d00","800":"#973c00","900":"#7b3306","950":"#461901"},yellow:{"50":"#fefce8","100":"#fef9c2","200":"#fff085","300":"#ffdf20","400":"#fdc700","500":"#f0b100","600":"#d08700","700":"#a65f00","800":"#894b00","900":"#733e0a","950":"#432004"},lime:{"50":"#f7fee7","100":"#ecfcca","200":"#d8f999","300":"#bbf451","400":"#9ae600","500":"#7ccf00","600":"#5ea500","700":"#497d00","800":"#3c6300","900":"#35530e","950":"#192e03"},green:{"50":"#f0fdf4","100":"#dcfce7","200":"#b9f8cf","300":"#7bf1a8","400":"#05df72","500":"#00c950","600":"#00a63e","700":"#008236","800":"#016630","900":"#0d542b","950":"#032e15"},emerald:{"50":"#ecfdf5","100":"#d0fae5","200":"#a4f4cf","300":"#5ee9b5","400":"#00d492","500":"#00bc7d","600":"#009966","700":"#007a55","800":"#006045","900":"#004f3b","950":"#002c22"},teal:{"50":"#f0fdfa","100":"#cbfbf1","200":"#96f7e4","300":"#46ecd5","400":"#00d5be","500":"#00bba7","600":"#009689","700":"#00786f","800":"#005f5a","900":"#0b4f4a","950":"#022f2e"},cyan:{"50":"#ecfeff","100":"#cefafe","200":"#a2f4fd","300":"#53eafd","400":"#00d3f2","500":"#00b8db","600":"#0092b8","700":"#007595","800":"#005f78","900":"#104e64","950":"#053345"},sky:{"50":"#f0f9ff","100":"#dff2fe","200":"#b8e6fe","300":"#74d4ff","400":"#00bcff","500":"#00a6f4","600":"#0084d1","700":"#0069a8","800":"#00598a","900":"#024a70","950":"#052f4a"},blue:{"50":"#eff6ff","100":"#dbeafe","200":"#bedbff","300":"#8ec5ff","400":"#51a2ff","500":"#2b7fff","600":"#155dfc","700":"#1447e6","800":"#193cb8","900":"#1c398e","950":"#162456"},indigo:{"50":"#eef2ff","100":"#e0e7ff","200":"#c6d2ff","300":"#a3b3ff","400":"#7c86ff","500":"#615fff","600":"#4f39f6","700":"#432dd7","800":"#372aac","900":"#312c85","950":"#1e1a4d"},violet:{"50":"#f5f3ff","100":"#ede9fe","200":"#ddd6ff","300":"#c4b4ff","400":"#a684ff","500":"#8e51ff","600":"#7f22fe","700":"#7008e7","800":"#5d0ec0","900":"#4d179a","950":"#2f0d68"},purple:{"50":"#faf5ff","100":"#f3e8ff","200":"#e9d4ff","300":"#dab2ff","400":"#c27aff","500":"#ad46ff","600":"#9810fa","700":"#8200db","800":"#6e11b0","900":"#59168b","950":"#3c0366"},fuchsia:{"50":"#fdf4ff","100":"#fae8ff","200":"#f6cfff","300":"#f4a8ff","400":"#ed6aff","500":"#e12afb","600":"#c800de","700":"#a800b7","800":"#8a0194","900":"#721378","950":"#4b004f"},pink:{"50":"#fdf2f8","100":"#fce7f3","200":"#fccee8","300":"#fda5d5","400":"#fb64b6","500":"#f6339a","600":"#e60076","700":"#c6005c","800":"#a3004c","900":"#861043","950":"#510424"},rose:{"50":"#fff1f2","100":"#ffe4e6","200":"#ffccd3","300":"#ffa1ad","400":"#ff637e","500":"#ff2056","600":"#ec003f","700":"#c70036","800":"#a50036","900":"#8b0836","950":"#4d0218"},slate:{"50":"#f8fafc","100":"#f1f5f9","200":"#e2e8f0","300":"#cad5e2","400":"#90a1b9","500":"#62748e","600":"#45556c","700":"#314158","800":"#1d293d","900":"#0f172b","950":"#020618"},gray:{"50":"#f9fafb","100":"#f3f4f6","200":"#e5e7eb","300":"#d1d5dc","400":"#99a1af","500":"#6a7282","600":"#4a5565","700":"#364153","800":"#1e2939","900":"#101828","950":"#030712"},zinc:{"50":"#fafafa","100":"#f4f4f5","200":"#e4e4e7","300":"#d4d4d8","400":"#9f9fa9","500":"#71717b","600":"#52525c","700":"#3f3f46","800":"#27272a","900":"#18181b","950":"#09090b"},neutral:{"50":"#fafafa","100":"#f5f5f5","200":"#e5e5e5","300":"#d4d4d4","400":"#a1a1a1","500":"#737373","600":"#525252","700":"#404040","800":"#262626","900":"#171717","950":"#0a0a0a"},stone:{"50":"#fafaf9","100":"#f5f5f4","200":"#e7e5e4","300":"#d6d3d1","400":"#a6a09b","500":"#79716b","600":"#57534d","700":"#44403b","800":"#292524","900":"#1c1917","950":"#0c0a09"}};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
|
|
2
|
-
|
|
3
|
-
exports[`BORDER_WIDTH_SCALE should export complete border width scale 1`] = `
|
|
4
|
-
{
|
|
5
|
-
"0": 0,
|
|
6
|
-
"2": 2,
|
|
7
|
-
"4": 4,
|
|
8
|
-
"8": 8,
|
|
9
|
-
}
|
|
10
|
-
`;
|
|
11
|
-
|
|
12
|
-
exports[`BORDER_RADIUS_SCALE should export complete border radius scale 1`] = `
|
|
13
|
-
{
|
|
14
|
-
"2xl": 16,
|
|
15
|
-
"3xl": 24,
|
|
16
|
-
"full": 9999,
|
|
17
|
-
"lg": 8,
|
|
18
|
-
"md": 6,
|
|
19
|
-
"none": 0,
|
|
20
|
-
"sm": 2,
|
|
21
|
-
"xl": 12,
|
|
22
|
-
}
|
|
23
|
-
`;
|
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
|
|
2
|
-
|
|
3
|
-
exports[`COLORS should export complete color palette 1`] = `
|
|
4
|
-
{
|
|
5
|
-
"amber-100": "#fef3c6",
|
|
6
|
-
"amber-200": "#fee685",
|
|
7
|
-
"amber-300": "#ffd230",
|
|
8
|
-
"amber-400": "#ffb900",
|
|
9
|
-
"amber-50": "#fffbeb",
|
|
10
|
-
"amber-500": "#fe9a00",
|
|
11
|
-
"amber-600": "#e17100",
|
|
12
|
-
"amber-700": "#bb4d00",
|
|
13
|
-
"amber-800": "#973c00",
|
|
14
|
-
"amber-900": "#7b3306",
|
|
15
|
-
"amber-950": "#461901",
|
|
16
|
-
"black": "#000000",
|
|
17
|
-
"blue-100": "#dbeafe",
|
|
18
|
-
"blue-200": "#bedbff",
|
|
19
|
-
"blue-300": "#8ec5ff",
|
|
20
|
-
"blue-400": "#51a2ff",
|
|
21
|
-
"blue-50": "#eff6ff",
|
|
22
|
-
"blue-500": "#2b7fff",
|
|
23
|
-
"blue-600": "#155dfc",
|
|
24
|
-
"blue-700": "#1447e6",
|
|
25
|
-
"blue-800": "#193cb8",
|
|
26
|
-
"blue-900": "#1c398e",
|
|
27
|
-
"blue-950": "#162456",
|
|
28
|
-
"cyan-100": "#cefafe",
|
|
29
|
-
"cyan-200": "#a2f4fd",
|
|
30
|
-
"cyan-300": "#53eafd",
|
|
31
|
-
"cyan-400": "#00d3f2",
|
|
32
|
-
"cyan-50": "#ecfeff",
|
|
33
|
-
"cyan-500": "#00b8db",
|
|
34
|
-
"cyan-600": "#0092b8",
|
|
35
|
-
"cyan-700": "#007595",
|
|
36
|
-
"cyan-800": "#005f78",
|
|
37
|
-
"cyan-900": "#104e64",
|
|
38
|
-
"cyan-950": "#053345",
|
|
39
|
-
"emerald-100": "#d0fae5",
|
|
40
|
-
"emerald-200": "#a4f4cf",
|
|
41
|
-
"emerald-300": "#5ee9b5",
|
|
42
|
-
"emerald-400": "#00d492",
|
|
43
|
-
"emerald-50": "#ecfdf5",
|
|
44
|
-
"emerald-500": "#00bc7d",
|
|
45
|
-
"emerald-600": "#009966",
|
|
46
|
-
"emerald-700": "#007a55",
|
|
47
|
-
"emerald-800": "#006045",
|
|
48
|
-
"emerald-900": "#004f3b",
|
|
49
|
-
"emerald-950": "#002c22",
|
|
50
|
-
"fuchsia-100": "#fae8ff",
|
|
51
|
-
"fuchsia-200": "#f6cfff",
|
|
52
|
-
"fuchsia-300": "#f4a8ff",
|
|
53
|
-
"fuchsia-400": "#ed6aff",
|
|
54
|
-
"fuchsia-50": "#fdf4ff",
|
|
55
|
-
"fuchsia-500": "#e12afb",
|
|
56
|
-
"fuchsia-600": "#c800de",
|
|
57
|
-
"fuchsia-700": "#a800b7",
|
|
58
|
-
"fuchsia-800": "#8a0194",
|
|
59
|
-
"fuchsia-900": "#721378",
|
|
60
|
-
"fuchsia-950": "#4b004f",
|
|
61
|
-
"gray-100": "#f3f4f6",
|
|
62
|
-
"gray-200": "#e5e7eb",
|
|
63
|
-
"gray-300": "#d1d5dc",
|
|
64
|
-
"gray-400": "#99a1af",
|
|
65
|
-
"gray-50": "#f9fafb",
|
|
66
|
-
"gray-500": "#6a7282",
|
|
67
|
-
"gray-600": "#4a5565",
|
|
68
|
-
"gray-700": "#364153",
|
|
69
|
-
"gray-800": "#1e2939",
|
|
70
|
-
"gray-900": "#101828",
|
|
71
|
-
"gray-950": "#030712",
|
|
72
|
-
"green-100": "#dcfce7",
|
|
73
|
-
"green-200": "#b9f8cf",
|
|
74
|
-
"green-300": "#7bf1a8",
|
|
75
|
-
"green-400": "#05df72",
|
|
76
|
-
"green-50": "#f0fdf4",
|
|
77
|
-
"green-500": "#00c950",
|
|
78
|
-
"green-600": "#00a63e",
|
|
79
|
-
"green-700": "#008236",
|
|
80
|
-
"green-800": "#016630",
|
|
81
|
-
"green-900": "#0d542b",
|
|
82
|
-
"green-950": "#032e15",
|
|
83
|
-
"indigo-100": "#e0e7ff",
|
|
84
|
-
"indigo-200": "#c6d2ff",
|
|
85
|
-
"indigo-300": "#a3b3ff",
|
|
86
|
-
"indigo-400": "#7c86ff",
|
|
87
|
-
"indigo-50": "#eef2ff",
|
|
88
|
-
"indigo-500": "#615fff",
|
|
89
|
-
"indigo-600": "#4f39f6",
|
|
90
|
-
"indigo-700": "#432dd7",
|
|
91
|
-
"indigo-800": "#372aac",
|
|
92
|
-
"indigo-900": "#312c85",
|
|
93
|
-
"indigo-950": "#1e1a4d",
|
|
94
|
-
"lime-100": "#ecfcca",
|
|
95
|
-
"lime-200": "#d8f999",
|
|
96
|
-
"lime-300": "#bbf451",
|
|
97
|
-
"lime-400": "#9ae600",
|
|
98
|
-
"lime-50": "#f7fee7",
|
|
99
|
-
"lime-500": "#7ccf00",
|
|
100
|
-
"lime-600": "#5ea500",
|
|
101
|
-
"lime-700": "#497d00",
|
|
102
|
-
"lime-800": "#3c6300",
|
|
103
|
-
"lime-900": "#35530e",
|
|
104
|
-
"lime-950": "#192e03",
|
|
105
|
-
"neutral-100": "#f5f5f5",
|
|
106
|
-
"neutral-200": "#e5e5e5",
|
|
107
|
-
"neutral-300": "#d4d4d4",
|
|
108
|
-
"neutral-400": "#a1a1a1",
|
|
109
|
-
"neutral-50": "#fafafa",
|
|
110
|
-
"neutral-500": "#737373",
|
|
111
|
-
"neutral-600": "#525252",
|
|
112
|
-
"neutral-700": "#404040",
|
|
113
|
-
"neutral-800": "#262626",
|
|
114
|
-
"neutral-900": "#171717",
|
|
115
|
-
"neutral-950": "#0a0a0a",
|
|
116
|
-
"orange-100": "#ffedd4",
|
|
117
|
-
"orange-200": "#ffd6a7",
|
|
118
|
-
"orange-300": "#ffb86a",
|
|
119
|
-
"orange-400": "#ff8904",
|
|
120
|
-
"orange-50": "#fff7ed",
|
|
121
|
-
"orange-500": "#ff6900",
|
|
122
|
-
"orange-600": "#f54900",
|
|
123
|
-
"orange-700": "#ca3500",
|
|
124
|
-
"orange-800": "#9f2d00",
|
|
125
|
-
"orange-900": "#7e2a0c",
|
|
126
|
-
"orange-950": "#441306",
|
|
127
|
-
"pink-100": "#fce7f3",
|
|
128
|
-
"pink-200": "#fccee8",
|
|
129
|
-
"pink-300": "#fda5d5",
|
|
130
|
-
"pink-400": "#fb64b6",
|
|
131
|
-
"pink-50": "#fdf2f8",
|
|
132
|
-
"pink-500": "#f6339a",
|
|
133
|
-
"pink-600": "#e60076",
|
|
134
|
-
"pink-700": "#c6005c",
|
|
135
|
-
"pink-800": "#a3004c",
|
|
136
|
-
"pink-900": "#861043",
|
|
137
|
-
"pink-950": "#510424",
|
|
138
|
-
"purple-100": "#f3e8ff",
|
|
139
|
-
"purple-200": "#e9d4ff",
|
|
140
|
-
"purple-300": "#dab2ff",
|
|
141
|
-
"purple-400": "#c27aff",
|
|
142
|
-
"purple-50": "#faf5ff",
|
|
143
|
-
"purple-500": "#ad46ff",
|
|
144
|
-
"purple-600": "#9810fa",
|
|
145
|
-
"purple-700": "#8200db",
|
|
146
|
-
"purple-800": "#6e11b0",
|
|
147
|
-
"purple-900": "#59168b",
|
|
148
|
-
"purple-950": "#3c0366",
|
|
149
|
-
"red-100": "#ffe2e2",
|
|
150
|
-
"red-200": "#ffc9c9",
|
|
151
|
-
"red-300": "#ffa2a2",
|
|
152
|
-
"red-400": "#ff6467",
|
|
153
|
-
"red-50": "#fef2f2",
|
|
154
|
-
"red-500": "#fb2c36",
|
|
155
|
-
"red-600": "#e7000b",
|
|
156
|
-
"red-700": "#c10007",
|
|
157
|
-
"red-800": "#9f0712",
|
|
158
|
-
"red-900": "#82181a",
|
|
159
|
-
"red-950": "#460809",
|
|
160
|
-
"rose-100": "#ffe4e6",
|
|
161
|
-
"rose-200": "#ffccd3",
|
|
162
|
-
"rose-300": "#ffa1ad",
|
|
163
|
-
"rose-400": "#ff637e",
|
|
164
|
-
"rose-50": "#fff1f2",
|
|
165
|
-
"rose-500": "#ff2056",
|
|
166
|
-
"rose-600": "#ec003f",
|
|
167
|
-
"rose-700": "#c70036",
|
|
168
|
-
"rose-800": "#a50036",
|
|
169
|
-
"rose-900": "#8b0836",
|
|
170
|
-
"rose-950": "#4d0218",
|
|
171
|
-
"sky-100": "#dff2fe",
|
|
172
|
-
"sky-200": "#b8e6fe",
|
|
173
|
-
"sky-300": "#74d4ff",
|
|
174
|
-
"sky-400": "#00bcff",
|
|
175
|
-
"sky-50": "#f0f9ff",
|
|
176
|
-
"sky-500": "#00a6f4",
|
|
177
|
-
"sky-600": "#0084d1",
|
|
178
|
-
"sky-700": "#0069a8",
|
|
179
|
-
"sky-800": "#00598a",
|
|
180
|
-
"sky-900": "#024a70",
|
|
181
|
-
"sky-950": "#052f4a",
|
|
182
|
-
"slate-100": "#f1f5f9",
|
|
183
|
-
"slate-200": "#e2e8f0",
|
|
184
|
-
"slate-300": "#cad5e2",
|
|
185
|
-
"slate-400": "#90a1b9",
|
|
186
|
-
"slate-50": "#f8fafc",
|
|
187
|
-
"slate-500": "#62748e",
|
|
188
|
-
"slate-600": "#45556c",
|
|
189
|
-
"slate-700": "#314158",
|
|
190
|
-
"slate-800": "#1d293d",
|
|
191
|
-
"slate-900": "#0f172b",
|
|
192
|
-
"slate-950": "#020618",
|
|
193
|
-
"stone-100": "#f5f5f4",
|
|
194
|
-
"stone-200": "#e7e5e4",
|
|
195
|
-
"stone-300": "#d6d3d1",
|
|
196
|
-
"stone-400": "#a6a09b",
|
|
197
|
-
"stone-50": "#fafaf9",
|
|
198
|
-
"stone-500": "#79716b",
|
|
199
|
-
"stone-600": "#57534d",
|
|
200
|
-
"stone-700": "#44403b",
|
|
201
|
-
"stone-800": "#292524",
|
|
202
|
-
"stone-900": "#1c1917",
|
|
203
|
-
"stone-950": "#0c0a09",
|
|
204
|
-
"teal-100": "#cbfbf1",
|
|
205
|
-
"teal-200": "#96f7e4",
|
|
206
|
-
"teal-300": "#46ecd5",
|
|
207
|
-
"teal-400": "#00d5be",
|
|
208
|
-
"teal-50": "#f0fdfa",
|
|
209
|
-
"teal-500": "#00bba7",
|
|
210
|
-
"teal-600": "#009689",
|
|
211
|
-
"teal-700": "#00786f",
|
|
212
|
-
"teal-800": "#005f5a",
|
|
213
|
-
"teal-900": "#0b4f4a",
|
|
214
|
-
"teal-950": "#022f2e",
|
|
215
|
-
"transparent": "transparent",
|
|
216
|
-
"violet-100": "#ede9fe",
|
|
217
|
-
"violet-200": "#ddd6ff",
|
|
218
|
-
"violet-300": "#c4b4ff",
|
|
219
|
-
"violet-400": "#a684ff",
|
|
220
|
-
"violet-50": "#f5f3ff",
|
|
221
|
-
"violet-500": "#8e51ff",
|
|
222
|
-
"violet-600": "#7f22fe",
|
|
223
|
-
"violet-700": "#7008e7",
|
|
224
|
-
"violet-800": "#5d0ec0",
|
|
225
|
-
"violet-900": "#4d179a",
|
|
226
|
-
"violet-950": "#2f0d68",
|
|
227
|
-
"white": "#FFFFFF",
|
|
228
|
-
"yellow-100": "#fef9c2",
|
|
229
|
-
"yellow-200": "#fff085",
|
|
230
|
-
"yellow-300": "#ffdf20",
|
|
231
|
-
"yellow-400": "#fdc700",
|
|
232
|
-
"yellow-50": "#fefce8",
|
|
233
|
-
"yellow-500": "#f0b100",
|
|
234
|
-
"yellow-600": "#d08700",
|
|
235
|
-
"yellow-700": "#a65f00",
|
|
236
|
-
"yellow-800": "#894b00",
|
|
237
|
-
"yellow-900": "#733e0a",
|
|
238
|
-
"yellow-950": "#432004",
|
|
239
|
-
"zinc-100": "#f4f4f5",
|
|
240
|
-
"zinc-200": "#e4e4e7",
|
|
241
|
-
"zinc-300": "#d4d4d8",
|
|
242
|
-
"zinc-400": "#9f9fa9",
|
|
243
|
-
"zinc-50": "#fafafa",
|
|
244
|
-
"zinc-500": "#71717b",
|
|
245
|
-
"zinc-600": "#52525c",
|
|
246
|
-
"zinc-700": "#3f3f46",
|
|
247
|
-
"zinc-800": "#27272a",
|
|
248
|
-
"zinc-900": "#18181b",
|
|
249
|
-
"zinc-950": "#09090b",
|
|
250
|
-
}
|
|
251
|
-
`;
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
|
|
2
|
-
|
|
3
|
-
exports[`SHADOW_SCALE should export complete shadow scale 1`] = `
|
|
4
|
-
{
|
|
5
|
-
"shadow": {
|
|
6
|
-
"elevation": 2,
|
|
7
|
-
"shadowColor": "#000000",
|
|
8
|
-
"shadowOffset": {
|
|
9
|
-
"height": 1,
|
|
10
|
-
"width": 0,
|
|
11
|
-
},
|
|
12
|
-
"shadowOpacity": 0.1,
|
|
13
|
-
"shadowRadius": 2,
|
|
14
|
-
},
|
|
15
|
-
"shadow-2xl": {
|
|
16
|
-
"elevation": 16,
|
|
17
|
-
"shadowColor": "#000000",
|
|
18
|
-
"shadowOffset": {
|
|
19
|
-
"height": 20,
|
|
20
|
-
"width": 0,
|
|
21
|
-
},
|
|
22
|
-
"shadowOpacity": 0.3,
|
|
23
|
-
"shadowRadius": 24,
|
|
24
|
-
},
|
|
25
|
-
"shadow-lg": {
|
|
26
|
-
"elevation": 8,
|
|
27
|
-
"shadowColor": "#000000",
|
|
28
|
-
"shadowOffset": {
|
|
29
|
-
"height": 6,
|
|
30
|
-
"width": 0,
|
|
31
|
-
},
|
|
32
|
-
"shadowOpacity": 0.2,
|
|
33
|
-
"shadowRadius": 8,
|
|
34
|
-
},
|
|
35
|
-
"shadow-md": {
|
|
36
|
-
"elevation": 4,
|
|
37
|
-
"shadowColor": "#000000",
|
|
38
|
-
"shadowOffset": {
|
|
39
|
-
"height": 3,
|
|
40
|
-
"width": 0,
|
|
41
|
-
},
|
|
42
|
-
"shadowOpacity": 0.15,
|
|
43
|
-
"shadowRadius": 4,
|
|
44
|
-
},
|
|
45
|
-
"shadow-none": {
|
|
46
|
-
"elevation": 0,
|
|
47
|
-
"shadowColor": "transparent",
|
|
48
|
-
"shadowOffset": {
|
|
49
|
-
"height": 0,
|
|
50
|
-
"width": 0,
|
|
51
|
-
},
|
|
52
|
-
"shadowOpacity": 0,
|
|
53
|
-
"shadowRadius": 0,
|
|
54
|
-
},
|
|
55
|
-
"shadow-sm": {
|
|
56
|
-
"elevation": 1,
|
|
57
|
-
"shadowColor": "#000000",
|
|
58
|
-
"shadowOffset": {
|
|
59
|
-
"height": 1,
|
|
60
|
-
"width": 0,
|
|
61
|
-
},
|
|
62
|
-
"shadowOpacity": 0.05,
|
|
63
|
-
"shadowRadius": 1,
|
|
64
|
-
},
|
|
65
|
-
"shadow-xl": {
|
|
66
|
-
"elevation": 12,
|
|
67
|
-
"shadowColor": "#000000",
|
|
68
|
-
"shadowOffset": {
|
|
69
|
-
"height": 10,
|
|
70
|
-
"width": 0,
|
|
71
|
-
},
|
|
72
|
-
"shadowOpacity": 0.25,
|
|
73
|
-
"shadowRadius": 12,
|
|
74
|
-
},
|
|
75
|
-
}
|
|
76
|
-
`;
|