@chakrabortyrajarshi2005/chai-tailwind-css 1.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.
- package/README.md +485 -0
- package/package.json +33 -0
- package/src/apply.js +80 -0
- package/src/config/propertyMap.js +1255 -0
- package/src/main.js +19 -0
- package/src/parser.js +21 -0
- package/src/scanner.js +17 -0
|
@@ -0,0 +1,1255 @@
|
|
|
1
|
+
export const propertyMap = {
|
|
2
|
+
p: "padding",
|
|
3
|
+
pt: "paddingTop",
|
|
4
|
+
pb: "paddingBottom",
|
|
5
|
+
pl: "paddingLeft",
|
|
6
|
+
pr: "paddingRight",
|
|
7
|
+
px: ["paddingLeft", "paddingRight"],
|
|
8
|
+
py: ["paddingTop", "paddingBottom"],
|
|
9
|
+
ps: "paddingInlineStart",
|
|
10
|
+
pe: "paddingInlineEnd",
|
|
11
|
+
pi: "paddingInline",
|
|
12
|
+
pb2: "paddingBlock",
|
|
13
|
+
pbs: "paddingBlockStart",
|
|
14
|
+
pbe: "paddingBlockEnd",
|
|
15
|
+
m: "margin",
|
|
16
|
+
mt: "marginTop",
|
|
17
|
+
mb: "marginBottom",
|
|
18
|
+
ml: "marginLeft",
|
|
19
|
+
mr: "marginRight",
|
|
20
|
+
mx: ["marginLeft", "marginRight"],
|
|
21
|
+
my: ["marginTop", "marginBottom"],
|
|
22
|
+
ms: "marginInlineStart",
|
|
23
|
+
me: "marginInlineEnd",
|
|
24
|
+
mi: "marginInline",
|
|
25
|
+
mb2: "marginBlock",
|
|
26
|
+
mbs: "marginBlockStart",
|
|
27
|
+
mbe: "marginBlockEnd",
|
|
28
|
+
|
|
29
|
+
w: "width",
|
|
30
|
+
h: "height",
|
|
31
|
+
minW: "minWidth",
|
|
32
|
+
maxW: "maxWidth",
|
|
33
|
+
minH: "minHeight",
|
|
34
|
+
maxH: "maxHeight",
|
|
35
|
+
size: ["width", "height"],
|
|
36
|
+
inlineSize: "inlineSize",
|
|
37
|
+
blockSize: "blockSize",
|
|
38
|
+
minInline: "minInlineSize",
|
|
39
|
+
maxInline: "maxInlineSize",
|
|
40
|
+
minBlock: "minBlockSize",
|
|
41
|
+
maxBlock: "maxBlockSize",
|
|
42
|
+
boxSize: "boxSizing",
|
|
43
|
+
bg: "backgroundColor",
|
|
44
|
+
text: "color",
|
|
45
|
+
fill: "fill",
|
|
46
|
+
stroke: "stroke",
|
|
47
|
+
caretColor: "caretColor",
|
|
48
|
+
accentColor: "accentColor",
|
|
49
|
+
outlineColor: "outlineColor",
|
|
50
|
+
columnRuleColor: "columnRuleColor",
|
|
51
|
+
textDecoColor: "textDecorationColor",
|
|
52
|
+
scrollbarColor: "scrollbarColor",
|
|
53
|
+
bgImage: "backgroundImage",
|
|
54
|
+
bgSize: "backgroundSize",
|
|
55
|
+
bgPos: "backgroundPosition",
|
|
56
|
+
bgRepeat: "backgroundRepeat",
|
|
57
|
+
bgAttachment: "backgroundAttachment",
|
|
58
|
+
bgOrigin: "backgroundOrigin",
|
|
59
|
+
bgClip: "backgroundClip",
|
|
60
|
+
bgBlend: "backgroundBlendMode",
|
|
61
|
+
gradient: "backgroundImage",
|
|
62
|
+
font: "fontFamily",
|
|
63
|
+
fontSize: "fontSize",
|
|
64
|
+
fontWeight: "fontWeight",
|
|
65
|
+
fontStyle: "fontStyle",
|
|
66
|
+
fontVariant: "fontVariant",
|
|
67
|
+
fontStretch: "fontStretch",
|
|
68
|
+
fontSizeAdjust: "fontSizeAdjust",
|
|
69
|
+
fontKerning: "fontKerning",
|
|
70
|
+
fontOptical: "fontOpticalSizing",
|
|
71
|
+
lineHeight: "lineHeight",
|
|
72
|
+
letterSpacing: "letterSpacing",
|
|
73
|
+
wordSpacing: "wordSpacing",
|
|
74
|
+
textAlign: "textAlign",
|
|
75
|
+
textAlignLast: "textAlignLast",
|
|
76
|
+
textTransform: "textTransform",
|
|
77
|
+
textDecor: "textDecoration",
|
|
78
|
+
textDecoLine: "textDecorationLine",
|
|
79
|
+
textDecoStyle: "textDecorationStyle",
|
|
80
|
+
textDecoThick: "textDecorationThickness",
|
|
81
|
+
textIndent: "textIndent",
|
|
82
|
+
textJustify: "textJustify",
|
|
83
|
+
textOverflow: "textOverflow",
|
|
84
|
+
textShadow: "textShadow",
|
|
85
|
+
textWrap: "textWrap",
|
|
86
|
+
textUnderlinePos: "textUnderlinePosition",
|
|
87
|
+
textUnderlineOff: "textUnderlineOffset",
|
|
88
|
+
textRendering: "textRendering",
|
|
89
|
+
textStroke: "-webkit-text-stroke",
|
|
90
|
+
textStrokeW: "-webkit-text-stroke-width",
|
|
91
|
+
textStrokeC: "-webkit-text-stroke-color",
|
|
92
|
+
wordBreak: "wordBreak",
|
|
93
|
+
wordWrap: "wordWrap",
|
|
94
|
+
overflowWrap: "overflowWrap",
|
|
95
|
+
whiteSpace: "whiteSpace",
|
|
96
|
+
hyphens: "hyphens",
|
|
97
|
+
lineBreak: "lineBreak",
|
|
98
|
+
writingMode: "writingMode",
|
|
99
|
+
textOrientation: "textOrientation",
|
|
100
|
+
unicodeBidi: "unicodeBidi",
|
|
101
|
+
direction: "direction",
|
|
102
|
+
quotes: "quotes",
|
|
103
|
+
content: "content",
|
|
104
|
+
verticalAlign: "verticalAlign",
|
|
105
|
+
tabSize: "tabSize",
|
|
106
|
+
hangingPunctuation: "hangingPunctuation",
|
|
107
|
+
border: "border",
|
|
108
|
+
borderW: "borderWidth",
|
|
109
|
+
borderStyle: "borderStyle",
|
|
110
|
+
borderColor: "borderColor",
|
|
111
|
+
borderT: "borderTop",
|
|
112
|
+
borderB: "borderBottom",
|
|
113
|
+
borderL: "borderLeft",
|
|
114
|
+
borderR: "borderRight",
|
|
115
|
+
borderTW: "borderTopWidth",
|
|
116
|
+
borderBW: "borderBottomWidth",
|
|
117
|
+
borderLW: "borderLeftWidth",
|
|
118
|
+
borderRW: "borderRightWidth",
|
|
119
|
+
borderTS: "borderTopStyle",
|
|
120
|
+
borderBS: "borderBottomStyle",
|
|
121
|
+
borderLS: "borderLeftStyle",
|
|
122
|
+
borderRS: "borderRightStyle",
|
|
123
|
+
borderTC: "borderTopColor",
|
|
124
|
+
borderBC: "borderBottomColor",
|
|
125
|
+
borderLC: "borderLeftColor",
|
|
126
|
+
borderRC: "borderRightColor",
|
|
127
|
+
borderX: ["borderLeft", "borderRight"],
|
|
128
|
+
borderY: ["borderTop", "borderBottom"],
|
|
129
|
+
borderInline: "borderInline",
|
|
130
|
+
borderBlock: "borderBlock",
|
|
131
|
+
borderIs: "borderInlineStart",
|
|
132
|
+
borderIe: "borderInlineEnd",
|
|
133
|
+
borderBs: "borderBlockStart",
|
|
134
|
+
borderBe: "borderBlockEnd",
|
|
135
|
+
borderIsW: "borderInlineStartWidth",
|
|
136
|
+
borderIeW: "borderInlineEndWidth",
|
|
137
|
+
borderBsW: "borderBlockStartWidth",
|
|
138
|
+
borderBeW: "borderBlockEndWidth",
|
|
139
|
+
borderIsC: "borderInlineStartColor",
|
|
140
|
+
borderIeC: "borderInlineEndColor",
|
|
141
|
+
borderBsC: "borderBlockStartColor",
|
|
142
|
+
borderBeC: "borderBlockEndColor",
|
|
143
|
+
borderImage: "borderImage",
|
|
144
|
+
borderImageSrc: "borderImageSource",
|
|
145
|
+
borderImageSlice: "borderImageSlice",
|
|
146
|
+
borderImageW: "borderImageWidth",
|
|
147
|
+
borderImageOut: "borderImageOutset",
|
|
148
|
+
borderImageRep: "borderImageRepeat",
|
|
149
|
+
borderCollapse: "borderCollapse",
|
|
150
|
+
borderSpacing: "borderSpacing",
|
|
151
|
+
rounded: "borderRadius",
|
|
152
|
+
roundedTL: "borderTopLeftRadius",
|
|
153
|
+
roundedTR: "borderTopRightRadius",
|
|
154
|
+
roundedBL: "borderBottomLeftRadius",
|
|
155
|
+
roundedBR: "borderBottomRightRadius",
|
|
156
|
+
roundedT: ["borderTopLeftRadius", "borderTopRightRadius"],
|
|
157
|
+
roundedB: ["borderBottomLeftRadius", "borderBottomRightRadius"],
|
|
158
|
+
roundedL: ["borderTopLeftRadius", "borderBottomLeftRadius"],
|
|
159
|
+
roundedR: ["borderTopRightRadius", "borderBottomRightRadius"],
|
|
160
|
+
roundedSS: "borderStartStartRadius",
|
|
161
|
+
roundedSE: "borderStartEndRadius",
|
|
162
|
+
roundedES: "borderEndStartRadius",
|
|
163
|
+
roundedEE: "borderEndEndRadius",
|
|
164
|
+
outline: "outline",
|
|
165
|
+
outlineW: "outlineWidth",
|
|
166
|
+
outlineStyle: "outlineStyle",
|
|
167
|
+
outlineOffset: "outlineOffset",
|
|
168
|
+
flex: "flex",
|
|
169
|
+
flexDir: "flexDirection",
|
|
170
|
+
flexWrap: "flexWrap",
|
|
171
|
+
flexFlow: "flexFlow",
|
|
172
|
+
flexGrow: "flexGrow",
|
|
173
|
+
flexShrink: "flexShrink",
|
|
174
|
+
flexBasis: "flexBasis",
|
|
175
|
+
alignItems: "alignItems",
|
|
176
|
+
alignSelf: "alignSelf",
|
|
177
|
+
alignContent: "alignContent",
|
|
178
|
+
justifyContent: "justifyContent",
|
|
179
|
+
justifyItems: "justifyItems",
|
|
180
|
+
justifySelf: "justifySelf",
|
|
181
|
+
placeItems: "placeItems",
|
|
182
|
+
placeContent: "placeContent",
|
|
183
|
+
placeSelf: "placeSelf",
|
|
184
|
+
order: "order",
|
|
185
|
+
gap: "gap",
|
|
186
|
+
gapX: "columnGap",
|
|
187
|
+
gapY: "rowGap",
|
|
188
|
+
rowGap: "rowGap",
|
|
189
|
+
colGap: "columnGap",
|
|
190
|
+
grid: "grid",
|
|
191
|
+
gridCols: "gridTemplateColumns",
|
|
192
|
+
gridRows: "gridTemplateRows",
|
|
193
|
+
gridAreas: "gridTemplateAreas",
|
|
194
|
+
gridTemplate: "gridTemplate",
|
|
195
|
+
gridAutoFlow: "gridAutoFlow",
|
|
196
|
+
gridAutoCols: "gridAutoColumns",
|
|
197
|
+
gridAutoRows: "gridAutoRows",
|
|
198
|
+
gridColSpan: "gridColumn",
|
|
199
|
+
gridRowSpan: "gridRow",
|
|
200
|
+
gridColStart: "gridColumnStart",
|
|
201
|
+
gridColEnd: "gridColumnEnd",
|
|
202
|
+
gridRowStart: "gridRowStart",
|
|
203
|
+
gridRowEnd: "gridRowEnd",
|
|
204
|
+
gridArea: "gridArea",
|
|
205
|
+
pos: "position",
|
|
206
|
+
position: "position",
|
|
207
|
+
top: "top",
|
|
208
|
+
bottom: "bottom",
|
|
209
|
+
left: "left",
|
|
210
|
+
right: "right",
|
|
211
|
+
inset: "inset",
|
|
212
|
+
insetX: ["left", "right"],
|
|
213
|
+
insetY: ["top", "bottom"],
|
|
214
|
+
insetIs: "insetInlineStart",
|
|
215
|
+
insetIe: "insetInlineEnd",
|
|
216
|
+
insetBs: "insetBlockStart",
|
|
217
|
+
insetBe: "insetBlockEnd",
|
|
218
|
+
insetInline: "insetInline",
|
|
219
|
+
insetBlock: "insetBlock",
|
|
220
|
+
zIndex: "zIndex",
|
|
221
|
+
z: "zIndex",
|
|
222
|
+
display: "display",
|
|
223
|
+
d: "display",
|
|
224
|
+
visibility: "visibility",
|
|
225
|
+
visible: "visibility",
|
|
226
|
+
opacity: "opacity",
|
|
227
|
+
overflow: "overflow",
|
|
228
|
+
overflowX: "overflowX",
|
|
229
|
+
overflowY: "overflowY",
|
|
230
|
+
overscroll: "overscrollBehavior",
|
|
231
|
+
overscrollX: "overscrollBehaviorX",
|
|
232
|
+
overscrollY: "overscrollBehaviorY",
|
|
233
|
+
clip: "clip",
|
|
234
|
+
clipPath: "clipPath",
|
|
235
|
+
objectFit: "objectFit",
|
|
236
|
+
objectPos: "objectPosition",
|
|
237
|
+
isolation: "isolation",
|
|
238
|
+
mixBlend: "mixBlendMode",
|
|
239
|
+
pointerEvents: "pointerEvents",
|
|
240
|
+
userSelect: "userSelect",
|
|
241
|
+
cursor: "cursor",
|
|
242
|
+
resize: "resize",
|
|
243
|
+
appearance: "appearance",
|
|
244
|
+
caretShape: "caretShape",
|
|
245
|
+
shadow: "boxShadow",
|
|
246
|
+
boxShadow: "boxShadow",
|
|
247
|
+
insetShadow: "boxShadow",
|
|
248
|
+
dropShadow: "filter",
|
|
249
|
+
textShadow2: "textShadow",
|
|
250
|
+
transform: "transform",
|
|
251
|
+
transformOrigin: "transformOrigin",
|
|
252
|
+
transformStyle: "transformStyle",
|
|
253
|
+
transformBox: "transformBox",
|
|
254
|
+
perspective: "perspective",
|
|
255
|
+
perspectiveOrigin: "perspectiveOrigin",
|
|
256
|
+
backfaceVisibility: "backfaceVisibility",
|
|
257
|
+
translate: "translate",
|
|
258
|
+
translateX: "--tw-translate-x",
|
|
259
|
+
translateY: "--tw-translate-y",
|
|
260
|
+
translateZ: "--tw-translate-z",
|
|
261
|
+
rotate: "rotate",
|
|
262
|
+
rotateX: "--tw-rotate-x",
|
|
263
|
+
rotateY: "--tw-rotate-y",
|
|
264
|
+
rotateZ: "--tw-rotate-z",
|
|
265
|
+
scale: "scale",
|
|
266
|
+
scaleX: "--tw-scale-x",
|
|
267
|
+
scaleY: "--tw-scale-y",
|
|
268
|
+
scaleZ: "--tw-scale-z",
|
|
269
|
+
skew: "--tw-skew",
|
|
270
|
+
skewX: "--tw-skew-x",
|
|
271
|
+
skewY: "--tw-skew-y",
|
|
272
|
+
matrix: "transform",
|
|
273
|
+
matrix3d: "transform",
|
|
274
|
+
transition: "transition",
|
|
275
|
+
transitionProp: "transitionProperty",
|
|
276
|
+
transitionDuration: "transitionDuration",
|
|
277
|
+
transitionTiming: "transitionTimingFunction",
|
|
278
|
+
transitionDelay: "transitionDelay",
|
|
279
|
+
duration: "transitionDuration",
|
|
280
|
+
delay: "transitionDelay",
|
|
281
|
+
ease: "transitionTimingFunction",
|
|
282
|
+
animation: "animation",
|
|
283
|
+
animName: "animationName",
|
|
284
|
+
animDuration: "animationDuration",
|
|
285
|
+
animTiming: "animationTimingFunction",
|
|
286
|
+
animDelay: "animationDelay",
|
|
287
|
+
animIter: "animationIterationCount",
|
|
288
|
+
animDir: "animationDirection",
|
|
289
|
+
animFill: "animationFillMode",
|
|
290
|
+
animPlay: "animationPlayState",
|
|
291
|
+
animRange: "animationRange",
|
|
292
|
+
animTimeline: "animationTimeline",
|
|
293
|
+
willChange: "willChange",
|
|
294
|
+
offsetPath: "offsetPath",
|
|
295
|
+
offsetDist: "offsetDistance",
|
|
296
|
+
offsetAnchor: "offsetAnchor",
|
|
297
|
+
offsetRotate: "offsetRotate",
|
|
298
|
+
offsetPos: "offsetPosition",
|
|
299
|
+
filter: "filter",
|
|
300
|
+
backdropFilter: "backdropFilter",
|
|
301
|
+
blur: "filter",
|
|
302
|
+
brightness: "filter",
|
|
303
|
+
contrast: "filter",
|
|
304
|
+
grayscale: "filter",
|
|
305
|
+
hueRotate: "filter",
|
|
306
|
+
invert: "filter",
|
|
307
|
+
saturate: "filter",
|
|
308
|
+
sepia: "filter",
|
|
309
|
+
bdBlur: "backdropFilter",
|
|
310
|
+
bdBrightness: "backdropFilter",
|
|
311
|
+
bdContrast: "backdropFilter",
|
|
312
|
+
bdGrayscale: "backdropFilter",
|
|
313
|
+
bdHueRotate: "backdropFilter",
|
|
314
|
+
bdInvert: "backdropFilter",
|
|
315
|
+
bdSaturate: "backdropFilter",
|
|
316
|
+
bdSepia: "backdropFilter",
|
|
317
|
+
bdOpacity: "backdropFilter",
|
|
318
|
+
columns: "columns",
|
|
319
|
+
colCount: "columnCount",
|
|
320
|
+
colWidth: "columnWidth",
|
|
321
|
+
colFill: "columnFill",
|
|
322
|
+
colRule: "columnRule",
|
|
323
|
+
colRuleW: "columnRuleWidth",
|
|
324
|
+
colRuleStyle: "columnRuleStyle",
|
|
325
|
+
colRuleColor: "columnRuleColor",
|
|
326
|
+
colSpan2: "columnSpan",
|
|
327
|
+
listStyle: "listStyle",
|
|
328
|
+
listType: "listStyleType",
|
|
329
|
+
listPos: "listStylePosition",
|
|
330
|
+
listImage: "listStyleImage",
|
|
331
|
+
tableLayout: "tableLayout",
|
|
332
|
+
captionSide: "captionSide",
|
|
333
|
+
emptyCells: "emptyCells",
|
|
334
|
+
vertAlign: "verticalAlign",
|
|
335
|
+
scrollBehavior: "scrollBehavior",
|
|
336
|
+
scrollMargin: "scrollMargin",
|
|
337
|
+
scrollMarginT: "scrollMarginTop",
|
|
338
|
+
scrollMarginB: "scrollMarginBottom",
|
|
339
|
+
scrollMarginL: "scrollMarginLeft",
|
|
340
|
+
scrollMarginR: "scrollMarginRight",
|
|
341
|
+
scrollMarginX: ["scrollMarginLeft", "scrollMarginRight"],
|
|
342
|
+
scrollMarginY: ["scrollMarginTop", "scrollMarginBottom"],
|
|
343
|
+
scrollPadding: "scrollPadding",
|
|
344
|
+
scrollPaddingT: "scrollPaddingTop",
|
|
345
|
+
scrollPaddingB: "scrollPaddingBottom",
|
|
346
|
+
scrollPaddingL: "scrollPaddingLeft",
|
|
347
|
+
scrollPaddingR: "scrollPaddingRight",
|
|
348
|
+
scrollPaddingX: ["scrollPaddingLeft", "scrollPaddingRight"],
|
|
349
|
+
scrollPaddingY: ["scrollPaddingTop", "scrollPaddingBottom"],
|
|
350
|
+
scrollSnapType: "scrollSnapType",
|
|
351
|
+
scrollSnapAlign: "scrollSnapAlign",
|
|
352
|
+
scrollSnapStop: "scrollSnapStop",
|
|
353
|
+
scrollSnapMargin: "scrollSnapMargin",
|
|
354
|
+
scrollbarWidth: "scrollbarWidth",
|
|
355
|
+
scrollbarGutter: "scrollbarGutter",
|
|
356
|
+
scrollTimeline: "scrollTimeline",
|
|
357
|
+
scrollTimelineAxis: "scrollTimelineAxis",
|
|
358
|
+
scrollTimelineName: "scrollTimelineName",
|
|
359
|
+
fillOpacity: "fillOpacity",
|
|
360
|
+
fillRule: "fillRule",
|
|
361
|
+
strokeWidth: "strokeWidth",
|
|
362
|
+
strokeOpacity: "strokeOpacity",
|
|
363
|
+
strokeLinecap: "strokeLinecap",
|
|
364
|
+
strokeLinejoin: "strokeLinejoin",
|
|
365
|
+
strokeDasharray: "strokeDasharray",
|
|
366
|
+
strokeDashoffset: "strokeDashoffset",
|
|
367
|
+
strokeMiterlimit: "strokeMiterlimit",
|
|
368
|
+
markerStart: "markerStart",
|
|
369
|
+
markerMid: "markerMid",
|
|
370
|
+
markerEnd: "markerEnd",
|
|
371
|
+
shapeRendering: "shapeRendering",
|
|
372
|
+
imageRendering: "imageRendering",
|
|
373
|
+
colorInterpolation: "colorInterpolation",
|
|
374
|
+
floodColor: "floodColor",
|
|
375
|
+
floodOpacity: "floodOpacity",
|
|
376
|
+
lightingColor: "lightingColor",
|
|
377
|
+
stopColor: "stopColor",
|
|
378
|
+
stopOpacity: "stopOpacity",
|
|
379
|
+
vectorEffect: "vectorEffect",
|
|
380
|
+
paintOrder: "paintOrder",
|
|
381
|
+
dominantBaseline: "dominantBaseline",
|
|
382
|
+
textAnchor: "textAnchor",
|
|
383
|
+
clipRule: "clipRule",
|
|
384
|
+
mask: "mask",
|
|
385
|
+
maskType: "maskType",
|
|
386
|
+
maskMode: "maskMode",
|
|
387
|
+
maskRepeat: "maskRepeat",
|
|
388
|
+
maskPos: "maskPosition",
|
|
389
|
+
maskSize: "maskSize",
|
|
390
|
+
maskOrigin: "maskOrigin",
|
|
391
|
+
maskClip: "maskClip",
|
|
392
|
+
maskComposite: "maskComposite",
|
|
393
|
+
maskImage: "maskImage",
|
|
394
|
+
shapeOutside: "shapeOutside",
|
|
395
|
+
shapeMargin: "shapeMargin",
|
|
396
|
+
shapeImageThresh: "shapeImageThreshold",
|
|
397
|
+
touchAction: "touchAction",
|
|
398
|
+
tabIndex: "tabIndex",
|
|
399
|
+
focusVisible: "outline",
|
|
400
|
+
forcedColorAdjust: "forcedColorAdjust",
|
|
401
|
+
colorScheme: "colorScheme",
|
|
402
|
+
printColorAdjust: "printColorAdjust",
|
|
403
|
+
containerType: "containerType",
|
|
404
|
+
containerName: "containerName",
|
|
405
|
+
container: "container",
|
|
406
|
+
inlineStart: "insetInlineStart",
|
|
407
|
+
inlineEnd: "insetInlineEnd",
|
|
408
|
+
blockStart: "insetBlockStart",
|
|
409
|
+
blockEnd: "insetBlockEnd",
|
|
410
|
+
marginIs: "marginInlineStart",
|
|
411
|
+
marginIe: "marginInlineEnd",
|
|
412
|
+
marginBs: "marginBlockStart",
|
|
413
|
+
marginBe: "marginBlockEnd",
|
|
414
|
+
paddingIs: "paddingInlineStart",
|
|
415
|
+
paddingIe: "paddingInlineEnd",
|
|
416
|
+
paddingBs: "paddingBlockStart",
|
|
417
|
+
paddingBe: "paddingBlockEnd",
|
|
418
|
+
aspect: "aspectRatio",
|
|
419
|
+
aspectRatio: "aspectRatio",
|
|
420
|
+
spaceX: "--space-x",
|
|
421
|
+
spaceY: "--space-y",
|
|
422
|
+
var: "--",
|
|
423
|
+
cols: "gridTemplateColumns",
|
|
424
|
+
rows: "gridTemplateRows",
|
|
425
|
+
areas: "gridTemplateAreas",
|
|
426
|
+
colStart: "gridColumnStart",
|
|
427
|
+
colEnd: "gridColumnEnd",
|
|
428
|
+
rowStart: "gridRowStart",
|
|
429
|
+
rowEnd: "gridRowEnd",
|
|
430
|
+
colAuto: "gridAutoColumns",
|
|
431
|
+
rowAuto: "gridAutoRows",
|
|
432
|
+
float: "float",
|
|
433
|
+
breakBefore: "breakBefore",
|
|
434
|
+
breakAfter: "breakAfter",
|
|
435
|
+
breakInside: "breakInside",
|
|
436
|
+
pageBreakBefore: "pageBreakBefore",
|
|
437
|
+
pageBreakAfter: "pageBreakAfter",
|
|
438
|
+
pageBreakInside: "pageBreakInside",
|
|
439
|
+
widows: "widows",
|
|
440
|
+
page: "page",
|
|
441
|
+
pageSize: "size",
|
|
442
|
+
marks: "marks",
|
|
443
|
+
counterReset: "counterReset",
|
|
444
|
+
counterIncrement: "counterIncrement",
|
|
445
|
+
counterSet: "counterSet",
|
|
446
|
+
boxDecorationBreak: "boxDecorationBreak",
|
|
447
|
+
overflowClipMargin: "overflowClipMargin",
|
|
448
|
+
rubyPosition: "rubyPosition",
|
|
449
|
+
rubyAlign: "rubyAlign",
|
|
450
|
+
rubyMerge: "rubyMerge",
|
|
451
|
+
lineClamp: "-webkit-line-clamp",
|
|
452
|
+
webkitBoxOrient: "-webkit-box-orient",
|
|
453
|
+
offsetPath2: "offsetPath",
|
|
454
|
+
motionPath: "offsetPath",
|
|
455
|
+
motionDist: "offsetDistance",
|
|
456
|
+
motionRotate: "offsetRotate",
|
|
457
|
+
subgridCols: "gridTemplateColumns",
|
|
458
|
+
safeAreaT: "paddingTop",
|
|
459
|
+
safeAreaB: "paddingBottom",
|
|
460
|
+
safeAreaL: "paddingLeft",
|
|
461
|
+
layer: "@layer",
|
|
462
|
+
scope: "@scope",
|
|
463
|
+
fontDisplay: "fontDisplay",
|
|
464
|
+
fontFaceFormat: "format",
|
|
465
|
+
fontNamedInstance: "fontNamedInstance",
|
|
466
|
+
fontPalette: "fontPalette",
|
|
467
|
+
fontVariationSettings: "fontVariationSettings",
|
|
468
|
+
fontFeatureSettings: "fontFeatureSettings",
|
|
469
|
+
fontLanguageOverride: "fontLanguageOverride",
|
|
470
|
+
fontSynthesis: "fontSynthesis",
|
|
471
|
+
fontSynthesisWeight: "fontSynthesisWeight",
|
|
472
|
+
fontSynthesisStyle: "fontSynthesisStyle",
|
|
473
|
+
fontSynthesisSmallCaps: "fontSynthesisSmallCaps",
|
|
474
|
+
initialLetter: "initialLetter",
|
|
475
|
+
initialLetterAlign: "initialLetterAlign",
|
|
476
|
+
lineGrid: "lineGrid",
|
|
477
|
+
lineSnap: "lineSnap",
|
|
478
|
+
runIn: "display",
|
|
479
|
+
rubyOverhang: "rubyOverhang",
|
|
480
|
+
hyphenateCharacter: "hyphenateCharacter",
|
|
481
|
+
hyphenateLimitChars: "hyphenateLimitChars",
|
|
482
|
+
hyphenateLimitLines: "hyphenateLimitLines",
|
|
483
|
+
hyphenateLimitZone: "hyphenateLimitZone",
|
|
484
|
+
hyphenateAfter: "hyphenateAfter",
|
|
485
|
+
hyphenateBefore: "hyphenateBefore",
|
|
486
|
+
gridMasonry: "gridTemplateMasonry",
|
|
487
|
+
masonryAutoFlow: "masonryAutoFlow",
|
|
488
|
+
viewTransitionName: "viewTransitionName",
|
|
489
|
+
anchorName: "anchorName",
|
|
490
|
+
anchorScope: "anchorScope",
|
|
491
|
+
positionAnchor: "positionAnchor",
|
|
492
|
+
positionArea: "positionArea",
|
|
493
|
+
positionTryOrder: "positionTryOrder",
|
|
494
|
+
positionTryFallbacks: "positionTryFallbacks",
|
|
495
|
+
positionVisibility: "positionVisibility",
|
|
496
|
+
viewTimeline: "viewTimeline",
|
|
497
|
+
viewTimelineAxis: "viewTimelineAxis",
|
|
498
|
+
viewTimelineInset: "viewTimelineInset",
|
|
499
|
+
viewTimelineName: "viewTimelineName",
|
|
500
|
+
overflowInline: "overflowInline",
|
|
501
|
+
overflowBlock: "overflowBlock",
|
|
502
|
+
overflowClip: "overflow",
|
|
503
|
+
overflowAnchor: "overflowAnchor",
|
|
504
|
+
textOverflowX: "textOverflow",
|
|
505
|
+
contain: "contain",
|
|
506
|
+
containIntrinsicW: "containIntrinsicWidth",
|
|
507
|
+
containIntrinsicH: "containIntrinsicHeight",
|
|
508
|
+
containIntrinsicSize: "containIntrinsicSize",
|
|
509
|
+
containIntrinsicInline: "containIntrinsicInlineSize",
|
|
510
|
+
containIntrinsicBlock: "containIntrinsicBlockSize",
|
|
511
|
+
gridGap: "gap",
|
|
512
|
+
gridRowGap: "rowGap",
|
|
513
|
+
gridColGap: "columnGap",
|
|
514
|
+
flexAuto: "flex",
|
|
515
|
+
flexNone: "flex",
|
|
516
|
+
flexInitial: "flex",
|
|
517
|
+
flexColumn: "flexDirection",
|
|
518
|
+
flexRow: "flexDirection",
|
|
519
|
+
flexReverse: "flexDirection",
|
|
520
|
+
flexWrapReverse: "flexWrap",
|
|
521
|
+
flexStart: "justifyContent",
|
|
522
|
+
flexEnd: "justifyContent",
|
|
523
|
+
flexCenter: "justifyContent",
|
|
524
|
+
flexBetween: "justifyContent",
|
|
525
|
+
flexAround: "justifyContent",
|
|
526
|
+
flexEvenly: "justifyContent",
|
|
527
|
+
x: ["left", "right"],
|
|
528
|
+
y: ["top", "bottom"],
|
|
529
|
+
t: "top",
|
|
530
|
+
b: "bottom",
|
|
531
|
+
l: "left",
|
|
532
|
+
r: "right",
|
|
533
|
+
bw: "borderWidth",
|
|
534
|
+
bc: "borderColor",
|
|
535
|
+
bs: "borderStyle",
|
|
536
|
+
btw: "borderTopWidth",
|
|
537
|
+
bbw: "borderBottomWidth",
|
|
538
|
+
blw: "borderLeftWidth",
|
|
539
|
+
brw: "borderRightWidth",
|
|
540
|
+
shadowSm: "boxShadow",
|
|
541
|
+
shadowMd: "boxShadow",
|
|
542
|
+
shadowLg: "boxShadow",
|
|
543
|
+
shadowXl: "boxShadow",
|
|
544
|
+
shadow2xl: "boxShadow",
|
|
545
|
+
shadowInner: "boxShadow",
|
|
546
|
+
shadowNone: "boxShadow",
|
|
547
|
+
all: "all",
|
|
548
|
+
unset: "all",
|
|
549
|
+
revert: "all",
|
|
550
|
+
revertLayer: "all",
|
|
551
|
+
inherit: "all",
|
|
552
|
+
initial: "all",
|
|
553
|
+
fieldSizing: "fieldSizing",
|
|
554
|
+
mathDepth: "mathDepth",
|
|
555
|
+
mathStyle: "mathStyle",
|
|
556
|
+
textSpacingTrim: "textSpacingTrim",
|
|
557
|
+
textAutospace: "textAutospace",
|
|
558
|
+
lineHeightStep: "lineHeightStep",
|
|
559
|
+
leadingTrim: "textBoxTrim",
|
|
560
|
+
textBoxTrim: "textBoxTrim",
|
|
561
|
+
textBoxEdge: "textBoxEdge",
|
|
562
|
+
textEdge: "textEdge",
|
|
563
|
+
interCharacterRuby: "interCharacterRuby",
|
|
564
|
+
baselineSource: "baselineSource",
|
|
565
|
+
baselineShift: "baselineShift",
|
|
566
|
+
alignmentBaseline: "alignmentBaseline",
|
|
567
|
+
glyphOrientationV: "glyphOrientationVertical",
|
|
568
|
+
kerning: "kerning",
|
|
569
|
+
wordLimit: "maxWords",
|
|
570
|
+
zoom: "zoom",
|
|
571
|
+
imageResolution: "imageResolution",
|
|
572
|
+
imageOrientation: "imageOrientation",
|
|
573
|
+
};
|
|
574
|
+
|
|
575
|
+
export const categoryGroups = {
|
|
576
|
+
spacing: [
|
|
577
|
+
"p",
|
|
578
|
+
"pt",
|
|
579
|
+
"pb",
|
|
580
|
+
"pl",
|
|
581
|
+
"pr",
|
|
582
|
+
"px",
|
|
583
|
+
"py",
|
|
584
|
+
"ps",
|
|
585
|
+
"pe",
|
|
586
|
+
"pi",
|
|
587
|
+
"pb2",
|
|
588
|
+
"pbs",
|
|
589
|
+
"pbe",
|
|
590
|
+
"m",
|
|
591
|
+
"mt",
|
|
592
|
+
"mb",
|
|
593
|
+
"ml",
|
|
594
|
+
"mr",
|
|
595
|
+
"mx",
|
|
596
|
+
"my",
|
|
597
|
+
"ms",
|
|
598
|
+
"me",
|
|
599
|
+
"mi",
|
|
600
|
+
"mb2",
|
|
601
|
+
"mbs",
|
|
602
|
+
"mbe",
|
|
603
|
+
"gap",
|
|
604
|
+
"gapX",
|
|
605
|
+
"gapY",
|
|
606
|
+
"rowGap",
|
|
607
|
+
"colGap",
|
|
608
|
+
],
|
|
609
|
+
sizing: [
|
|
610
|
+
"w",
|
|
611
|
+
"h",
|
|
612
|
+
"minW",
|
|
613
|
+
"maxW",
|
|
614
|
+
"minH",
|
|
615
|
+
"maxH",
|
|
616
|
+
"size",
|
|
617
|
+
"inlineSize",
|
|
618
|
+
"blockSize",
|
|
619
|
+
"minInline",
|
|
620
|
+
"maxInline",
|
|
621
|
+
"minBlock",
|
|
622
|
+
"maxBlock",
|
|
623
|
+
"boxSize",
|
|
624
|
+
],
|
|
625
|
+
colors: [
|
|
626
|
+
"bg",
|
|
627
|
+
"text",
|
|
628
|
+
"fill",
|
|
629
|
+
"stroke",
|
|
630
|
+
"caretColor",
|
|
631
|
+
"accentColor",
|
|
632
|
+
"outlineColor",
|
|
633
|
+
"columnRuleColor",
|
|
634
|
+
"textDecoColor",
|
|
635
|
+
"scrollbarColor",
|
|
636
|
+
],
|
|
637
|
+
background: [
|
|
638
|
+
"bgImage",
|
|
639
|
+
"bgSize",
|
|
640
|
+
"bgPos",
|
|
641
|
+
"bgRepeat",
|
|
642
|
+
"bgAttachment",
|
|
643
|
+
"bgOrigin",
|
|
644
|
+
"bgClip",
|
|
645
|
+
"bgBlend",
|
|
646
|
+
"gradient",
|
|
647
|
+
],
|
|
648
|
+
typography: [
|
|
649
|
+
"font",
|
|
650
|
+
"fontSize",
|
|
651
|
+
"fontWeight",
|
|
652
|
+
"fontStyle",
|
|
653
|
+
"fontVariant",
|
|
654
|
+
"fontStretch",
|
|
655
|
+
"lineHeight",
|
|
656
|
+
"letterSpacing",
|
|
657
|
+
"wordSpacing",
|
|
658
|
+
"textAlign",
|
|
659
|
+
"textAlignLast",
|
|
660
|
+
"textTransform",
|
|
661
|
+
"textDecor",
|
|
662
|
+
"textDecoLine",
|
|
663
|
+
"textDecoStyle",
|
|
664
|
+
"textDecoThick",
|
|
665
|
+
"textIndent",
|
|
666
|
+
"textJustify",
|
|
667
|
+
"textOverflow",
|
|
668
|
+
"textShadow",
|
|
669
|
+
"textWrap",
|
|
670
|
+
"wordBreak",
|
|
671
|
+
"wordWrap",
|
|
672
|
+
"overflowWrap",
|
|
673
|
+
"whiteSpace",
|
|
674
|
+
"hyphens",
|
|
675
|
+
"lineBreak",
|
|
676
|
+
"writingMode",
|
|
677
|
+
"textOrientation",
|
|
678
|
+
"direction",
|
|
679
|
+
"verticalAlign",
|
|
680
|
+
"tabSize",
|
|
681
|
+
"lineClamp",
|
|
682
|
+
],
|
|
683
|
+
borders: [
|
|
684
|
+
"border",
|
|
685
|
+
"borderW",
|
|
686
|
+
"borderStyle",
|
|
687
|
+
"borderColor",
|
|
688
|
+
"borderT",
|
|
689
|
+
"borderB",
|
|
690
|
+
"borderL",
|
|
691
|
+
"borderR",
|
|
692
|
+
"borderTW",
|
|
693
|
+
"borderBW",
|
|
694
|
+
"borderLW",
|
|
695
|
+
"borderRW",
|
|
696
|
+
"borderTS",
|
|
697
|
+
"borderBS",
|
|
698
|
+
"borderLS",
|
|
699
|
+
"borderRS",
|
|
700
|
+
"borderTC",
|
|
701
|
+
"borderBC",
|
|
702
|
+
"borderLC",
|
|
703
|
+
"borderRC",
|
|
704
|
+
"borderX",
|
|
705
|
+
"borderY",
|
|
706
|
+
"borderInline",
|
|
707
|
+
"borderBlock",
|
|
708
|
+
"borderIs",
|
|
709
|
+
"borderIe",
|
|
710
|
+
"borderBs",
|
|
711
|
+
"borderBe",
|
|
712
|
+
"borderImage",
|
|
713
|
+
"borderCollapse",
|
|
714
|
+
"borderSpacing",
|
|
715
|
+
],
|
|
716
|
+
radius: [
|
|
717
|
+
"rounded",
|
|
718
|
+
"roundedTL",
|
|
719
|
+
"roundedTR",
|
|
720
|
+
"roundedBL",
|
|
721
|
+
"roundedBR",
|
|
722
|
+
"roundedT",
|
|
723
|
+
"roundedB",
|
|
724
|
+
"roundedL",
|
|
725
|
+
"roundedR",
|
|
726
|
+
"roundedSS",
|
|
727
|
+
"roundedSE",
|
|
728
|
+
"roundedES",
|
|
729
|
+
"roundedEE",
|
|
730
|
+
],
|
|
731
|
+
outline: ["outline", "outlineW", "outlineStyle", "outlineOffset"],
|
|
732
|
+
flexbox: [
|
|
733
|
+
"flex",
|
|
734
|
+
"flexDir",
|
|
735
|
+
"flexWrap",
|
|
736
|
+
"flexFlow",
|
|
737
|
+
"flexGrow",
|
|
738
|
+
"flexShrink",
|
|
739
|
+
"flexBasis",
|
|
740
|
+
"alignItems",
|
|
741
|
+
"alignSelf",
|
|
742
|
+
"alignContent",
|
|
743
|
+
"justifyContent",
|
|
744
|
+
"justifyItems",
|
|
745
|
+
"justifySelf",
|
|
746
|
+
"placeItems",
|
|
747
|
+
"placeContent",
|
|
748
|
+
"placeSelf",
|
|
749
|
+
"order",
|
|
750
|
+
],
|
|
751
|
+
grid: [
|
|
752
|
+
"grid",
|
|
753
|
+
"gridCols",
|
|
754
|
+
"gridRows",
|
|
755
|
+
"gridAreas",
|
|
756
|
+
"gridTemplate",
|
|
757
|
+
"gridAutoFlow",
|
|
758
|
+
"gridAutoCols",
|
|
759
|
+
"gridAutoRows",
|
|
760
|
+
"gridColSpan",
|
|
761
|
+
"gridRowSpan",
|
|
762
|
+
"gridColStart",
|
|
763
|
+
"gridColEnd",
|
|
764
|
+
"gridRowStart",
|
|
765
|
+
"gridRowEnd",
|
|
766
|
+
"gridArea",
|
|
767
|
+
"cols",
|
|
768
|
+
"rows",
|
|
769
|
+
"areas",
|
|
770
|
+
"colStart",
|
|
771
|
+
"colEnd",
|
|
772
|
+
"rowStart",
|
|
773
|
+
"rowEnd",
|
|
774
|
+
"colAuto",
|
|
775
|
+
"rowAuto",
|
|
776
|
+
"autoFlow",
|
|
777
|
+
"subgridCols",
|
|
778
|
+
"subgridRows",
|
|
779
|
+
],
|
|
780
|
+
position: [
|
|
781
|
+
"pos",
|
|
782
|
+
"position",
|
|
783
|
+
"top",
|
|
784
|
+
"bottom",
|
|
785
|
+
"left",
|
|
786
|
+
"right",
|
|
787
|
+
"inset",
|
|
788
|
+
"insetX",
|
|
789
|
+
"insetY",
|
|
790
|
+
"insetIs",
|
|
791
|
+
"insetIe",
|
|
792
|
+
"insetBs",
|
|
793
|
+
"insetBe",
|
|
794
|
+
"insetInline",
|
|
795
|
+
"insetBlock",
|
|
796
|
+
"zIndex",
|
|
797
|
+
"z",
|
|
798
|
+
],
|
|
799
|
+
display: [
|
|
800
|
+
"display",
|
|
801
|
+
"d",
|
|
802
|
+
"visibility",
|
|
803
|
+
"visible",
|
|
804
|
+
"opacity",
|
|
805
|
+
"overflow",
|
|
806
|
+
"overflowX",
|
|
807
|
+
"overflowY",
|
|
808
|
+
"overscroll",
|
|
809
|
+
"overscrollX",
|
|
810
|
+
"overscrollY",
|
|
811
|
+
"clip",
|
|
812
|
+
"clipPath",
|
|
813
|
+
"objectFit",
|
|
814
|
+
"objectPos",
|
|
815
|
+
"isolation",
|
|
816
|
+
"mixBlend",
|
|
817
|
+
"pointerEvents",
|
|
818
|
+
"userSelect",
|
|
819
|
+
"cursor",
|
|
820
|
+
"resize",
|
|
821
|
+
"appearance",
|
|
822
|
+
],
|
|
823
|
+
shadow: ["shadow", "boxShadow", "insetShadow", "dropShadow", "textShadow2"],
|
|
824
|
+
transform: [
|
|
825
|
+
"transform",
|
|
826
|
+
"transformOrigin",
|
|
827
|
+
"transformStyle",
|
|
828
|
+
"transformBox",
|
|
829
|
+
"perspective",
|
|
830
|
+
"perspectiveOrigin",
|
|
831
|
+
"backfaceVisibility",
|
|
832
|
+
"translate",
|
|
833
|
+
"translateX",
|
|
834
|
+
"translateY",
|
|
835
|
+
"translateZ",
|
|
836
|
+
"rotate",
|
|
837
|
+
"rotateX",
|
|
838
|
+
"rotateY",
|
|
839
|
+
"rotateZ",
|
|
840
|
+
"scale",
|
|
841
|
+
"scaleX",
|
|
842
|
+
"scaleY",
|
|
843
|
+
"scaleZ",
|
|
844
|
+
"skew",
|
|
845
|
+
"skewX",
|
|
846
|
+
"skewY",
|
|
847
|
+
],
|
|
848
|
+
transition: [
|
|
849
|
+
"transition",
|
|
850
|
+
"transitionProp",
|
|
851
|
+
"transitionDuration",
|
|
852
|
+
"transitionTiming",
|
|
853
|
+
"transitionDelay",
|
|
854
|
+
"duration",
|
|
855
|
+
"delay",
|
|
856
|
+
"ease",
|
|
857
|
+
],
|
|
858
|
+
animation: [
|
|
859
|
+
"animation",
|
|
860
|
+
"animName",
|
|
861
|
+
"animDuration",
|
|
862
|
+
"animTiming",
|
|
863
|
+
"animDelay",
|
|
864
|
+
"animIter",
|
|
865
|
+
"animDir",
|
|
866
|
+
"animFill",
|
|
867
|
+
"animPlay",
|
|
868
|
+
"animRange",
|
|
869
|
+
"animTimeline",
|
|
870
|
+
"willChange",
|
|
871
|
+
"offsetPath",
|
|
872
|
+
"offsetDist",
|
|
873
|
+
"offsetAnchor",
|
|
874
|
+
"offsetRotate",
|
|
875
|
+
"offsetPos",
|
|
876
|
+
],
|
|
877
|
+
filter: [
|
|
878
|
+
"filter",
|
|
879
|
+
"backdropFilter",
|
|
880
|
+
"blur",
|
|
881
|
+
"brightness",
|
|
882
|
+
"contrast",
|
|
883
|
+
"grayscale",
|
|
884
|
+
"hueRotate",
|
|
885
|
+
"invert",
|
|
886
|
+
"saturate",
|
|
887
|
+
"sepia",
|
|
888
|
+
"bdBlur",
|
|
889
|
+
"bdBrightness",
|
|
890
|
+
"bdContrast",
|
|
891
|
+
"bdGrayscale",
|
|
892
|
+
"bdHueRotate",
|
|
893
|
+
"bdInvert",
|
|
894
|
+
"bdSaturate",
|
|
895
|
+
"bdSepia",
|
|
896
|
+
"bdOpacity",
|
|
897
|
+
],
|
|
898
|
+
scroll: [
|
|
899
|
+
"scrollBehavior",
|
|
900
|
+
"scrollMargin",
|
|
901
|
+
"scrollMarginT",
|
|
902
|
+
"scrollMarginB",
|
|
903
|
+
"scrollMarginL",
|
|
904
|
+
"scrollMarginR",
|
|
905
|
+
"scrollMarginX",
|
|
906
|
+
"scrollMarginY",
|
|
907
|
+
"scrollPadding",
|
|
908
|
+
"scrollPaddingT",
|
|
909
|
+
"scrollPaddingB",
|
|
910
|
+
"scrollPaddingL",
|
|
911
|
+
"scrollPaddingR",
|
|
912
|
+
"scrollPaddingX",
|
|
913
|
+
"scrollPaddingY",
|
|
914
|
+
"scrollSnapType",
|
|
915
|
+
"scrollSnapAlign",
|
|
916
|
+
"scrollSnapStop",
|
|
917
|
+
"scrollbarWidth",
|
|
918
|
+
"scrollbarGutter",
|
|
919
|
+
],
|
|
920
|
+
columns: [
|
|
921
|
+
"columns",
|
|
922
|
+
"colCount",
|
|
923
|
+
"colWidth",
|
|
924
|
+
"colFill",
|
|
925
|
+
"colRule",
|
|
926
|
+
"colRuleW",
|
|
927
|
+
"colRuleStyle",
|
|
928
|
+
"colRuleColor",
|
|
929
|
+
"colSpan2",
|
|
930
|
+
],
|
|
931
|
+
list: ["listStyle", "listType", "listPos", "listImage"],
|
|
932
|
+
table: ["tableLayout", "captionSide", "emptyCells", "vertAlign"],
|
|
933
|
+
svg: [
|
|
934
|
+
"fillOpacity",
|
|
935
|
+
"fillRule",
|
|
936
|
+
"strokeWidth",
|
|
937
|
+
"strokeOpacity",
|
|
938
|
+
"strokeLinecap",
|
|
939
|
+
"strokeLinejoin",
|
|
940
|
+
"strokeDasharray",
|
|
941
|
+
"strokeDashoffset",
|
|
942
|
+
"strokeMiterlimit",
|
|
943
|
+
"markerStart",
|
|
944
|
+
"markerMid",
|
|
945
|
+
"markerEnd",
|
|
946
|
+
"shapeRendering",
|
|
947
|
+
"imageRendering",
|
|
948
|
+
"dominantBaseline",
|
|
949
|
+
"textAnchor",
|
|
950
|
+
"clipRule",
|
|
951
|
+
"mask",
|
|
952
|
+
"maskType",
|
|
953
|
+
"maskMode",
|
|
954
|
+
"maskRepeat",
|
|
955
|
+
"maskPos",
|
|
956
|
+
"maskSize",
|
|
957
|
+
"maskOrigin",
|
|
958
|
+
"maskClip",
|
|
959
|
+
"maskComposite",
|
|
960
|
+
"maskImage",
|
|
961
|
+
"shapeOutside",
|
|
962
|
+
"shapeMargin",
|
|
963
|
+
],
|
|
964
|
+
interaction: [
|
|
965
|
+
"touchAction",
|
|
966
|
+
"cursor",
|
|
967
|
+
"pointerEvents",
|
|
968
|
+
"userSelect",
|
|
969
|
+
"resize",
|
|
970
|
+
"appearance",
|
|
971
|
+
"colorScheme",
|
|
972
|
+
"forcedColorAdjust",
|
|
973
|
+
],
|
|
974
|
+
logical: [
|
|
975
|
+
"inlineStart",
|
|
976
|
+
"inlineEnd",
|
|
977
|
+
"blockStart",
|
|
978
|
+
"blockEnd",
|
|
979
|
+
"marginIs",
|
|
980
|
+
"marginIe",
|
|
981
|
+
"marginBs",
|
|
982
|
+
"marginBe",
|
|
983
|
+
"paddingIs",
|
|
984
|
+
"paddingIe",
|
|
985
|
+
"paddingBs",
|
|
986
|
+
"paddingBe",
|
|
987
|
+
"borderIs",
|
|
988
|
+
"borderIe",
|
|
989
|
+
"borderBs",
|
|
990
|
+
"borderBe",
|
|
991
|
+
],
|
|
992
|
+
misc: [
|
|
993
|
+
"aspect",
|
|
994
|
+
"aspectRatio",
|
|
995
|
+
"boxDecorationBreak",
|
|
996
|
+
"float",
|
|
997
|
+
"clear",
|
|
998
|
+
"breakBefore",
|
|
999
|
+
"breakAfter",
|
|
1000
|
+
"breakInside",
|
|
1001
|
+
"widows",
|
|
1002
|
+
"orphans",
|
|
1003
|
+
"counterReset",
|
|
1004
|
+
"counterIncrement",
|
|
1005
|
+
"counterSet",
|
|
1006
|
+
"content",
|
|
1007
|
+
"quotes",
|
|
1008
|
+
"rubyPosition",
|
|
1009
|
+
],
|
|
1010
|
+
colors: {
|
|
1011
|
+
"black": "#000000",
|
|
1012
|
+
"white": "#ffffff",
|
|
1013
|
+
"transparent": "transparent",
|
|
1014
|
+
"current": "currentColor",
|
|
1015
|
+
"slate-50": "#f8fafc",
|
|
1016
|
+
"slate-100": "#f1f5f9",
|
|
1017
|
+
"slate-200": "#e2e8f0",
|
|
1018
|
+
"slate-300": "#cbd5e1",
|
|
1019
|
+
"slate-400": "#94a3b8",
|
|
1020
|
+
"slate-500": "#64748b",
|
|
1021
|
+
"slate-600": "#475569",
|
|
1022
|
+
"slate-700": "#334155",
|
|
1023
|
+
"slate-800": "#1e293b",
|
|
1024
|
+
"slate-900": "#0f172a",
|
|
1025
|
+
"slate-950": "#020617",
|
|
1026
|
+
"gray-50": "#f9fafb",
|
|
1027
|
+
"gray-100": "#f3f4f6",
|
|
1028
|
+
"gray-200": "#e5e7eb",
|
|
1029
|
+
"gray-300": "#d1d5db",
|
|
1030
|
+
"gray-400": "#9ca3af",
|
|
1031
|
+
"gray-500": "#6b7280",
|
|
1032
|
+
"gray-600": "#4b5563",
|
|
1033
|
+
"gray-700": "#374151",
|
|
1034
|
+
"gray-800": "#1f2937",
|
|
1035
|
+
"gray-900": "#111827",
|
|
1036
|
+
"zinc-50": "#fafafa",
|
|
1037
|
+
"zinc-100": "#f4f4f5",
|
|
1038
|
+
"zinc-200": "#e4e4e7",
|
|
1039
|
+
"zinc-300": "#d4d4d8",
|
|
1040
|
+
"zinc-400": "#a1a1aa",
|
|
1041
|
+
"zinc-500": "#71717a",
|
|
1042
|
+
"zinc-600": "#52525b",
|
|
1043
|
+
"zinc-700": "#3f3f46",
|
|
1044
|
+
"zinc-800": "#27272a",
|
|
1045
|
+
"zinc-900": "#18181b",
|
|
1046
|
+
"zinc-950": "#09090b",
|
|
1047
|
+
"neutral-50": "#fafafa",
|
|
1048
|
+
"neutral-100": "#f5f5f5",
|
|
1049
|
+
"neutral-200": "#e5e5e5",
|
|
1050
|
+
"neutral-300": "#d4d4d4",
|
|
1051
|
+
"neutral-400": "#a3a3a3",
|
|
1052
|
+
"neutral-500": "#737373",
|
|
1053
|
+
"neutral-600": "#525252",
|
|
1054
|
+
"neutral-700": "#404040",
|
|
1055
|
+
"neutral-800": "#262626",
|
|
1056
|
+
"neutral-900": "#171717",
|
|
1057
|
+
"neutral-950": "#0a0a0a",
|
|
1058
|
+
"stone-50": "#fafaf9",
|
|
1059
|
+
"stone-100": "#f5f5f4",
|
|
1060
|
+
"stone-200": "#e7e5e4",
|
|
1061
|
+
"stone-300": "#d6d3d1",
|
|
1062
|
+
"stone-400": "#a8a29e",
|
|
1063
|
+
"stone-500": "#78716c",
|
|
1064
|
+
"stone-600": "#57534e",
|
|
1065
|
+
"stone-700": "#44403c",
|
|
1066
|
+
"stone-800": "#292524",
|
|
1067
|
+
"stone-900": "#1c1917",
|
|
1068
|
+
"stone-950": "#0c0a09",
|
|
1069
|
+
"red-50": "#fef2f2",
|
|
1070
|
+
"red-100": "#fee2e2",
|
|
1071
|
+
"red-200": "#fecaca",
|
|
1072
|
+
"red-300": "#fca5a5",
|
|
1073
|
+
"red-400": "#f87171",
|
|
1074
|
+
"red-500": "#ef4444",
|
|
1075
|
+
"red-600": "#dc2626",
|
|
1076
|
+
"red-700": "#b91c1c",
|
|
1077
|
+
"red-800": "#991b1b",
|
|
1078
|
+
"red-900": "#7f1d1d",
|
|
1079
|
+
"red-950": "#450a0a",
|
|
1080
|
+
"orange-50": "#fff7ed",
|
|
1081
|
+
"orange-100": "#ffedd5",
|
|
1082
|
+
"orange-200": "#fed7aa",
|
|
1083
|
+
"orange-300": "#fdba74",
|
|
1084
|
+
"orange-400": "#fb923c",
|
|
1085
|
+
"orange-500": "#f97316",
|
|
1086
|
+
"orange-600": "#ea580c",
|
|
1087
|
+
"orange-700": "#c2410c",
|
|
1088
|
+
"orange-800": "#9a3412",
|
|
1089
|
+
"orange-900": "#7c2d12",
|
|
1090
|
+
"amber-50": "#fffbeb",
|
|
1091
|
+
"amber-100": "#fef3c7",
|
|
1092
|
+
"amber-200": "#fde68a",
|
|
1093
|
+
"amber-300": "#fcd34d",
|
|
1094
|
+
"amber-400": "#fbbf24",
|
|
1095
|
+
"amber-500": "#f59e0b",
|
|
1096
|
+
"amber-600": "#d97706",
|
|
1097
|
+
"amber-700": "#b45309",
|
|
1098
|
+
"amber-800": "#92400e",
|
|
1099
|
+
"amber-900": "#78350f",
|
|
1100
|
+
"yellow-50": "#fefce8",
|
|
1101
|
+
"yellow-100": "#fef9c3",
|
|
1102
|
+
"yellow-200": "#fef08a",
|
|
1103
|
+
"yellow-300": "#fde047",
|
|
1104
|
+
"yellow-400": "#facc15",
|
|
1105
|
+
"yellow-500": "#eab308",
|
|
1106
|
+
"yellow-600": "#ca8a04",
|
|
1107
|
+
"yellow-700": "#a16207",
|
|
1108
|
+
"yellow-800": "#854d0e",
|
|
1109
|
+
"yellow-900": "#713f12",
|
|
1110
|
+
"yellow-950": "#422006",
|
|
1111
|
+
"lime-50": "#f7fee7",
|
|
1112
|
+
"lime-100": "#ecfccb",
|
|
1113
|
+
"lime-200": "#d9f99d",
|
|
1114
|
+
"lime-300": "#bef264",
|
|
1115
|
+
"lime-400": "#a3e635",
|
|
1116
|
+
"lime-500": "#84cc16",
|
|
1117
|
+
"lime-600": "#65a30d",
|
|
1118
|
+
"lime-700": "#4d7c0f",
|
|
1119
|
+
"lime-800": "#3f6212",
|
|
1120
|
+
"lime-900": "#365314",
|
|
1121
|
+
"lime-950": "#1a2e05",
|
|
1122
|
+
"green-50": "#f0fdf4",
|
|
1123
|
+
"green-100": "#dcfce7",
|
|
1124
|
+
"green-200": "#bbf7d0",
|
|
1125
|
+
"green-300": "#86efac",
|
|
1126
|
+
"green-400": "#4ade80",
|
|
1127
|
+
"green-500": "#22c55e",
|
|
1128
|
+
"green-600": "#16a34a",
|
|
1129
|
+
"green-700": "#15803d",
|
|
1130
|
+
"green-800": "#166534",
|
|
1131
|
+
"green-900": "#14532d",
|
|
1132
|
+
"green-950": "#052e16",
|
|
1133
|
+
"emerald-50": "#ecfdf5",
|
|
1134
|
+
"emerald-100": "#d1fae5",
|
|
1135
|
+
"emerald-200": "#a7f3d0",
|
|
1136
|
+
"emerald-300": "#6ee7b7",
|
|
1137
|
+
"emerald-400": "#34d399",
|
|
1138
|
+
"emerald-500": "#10b981",
|
|
1139
|
+
"emerald-600": "#059669",
|
|
1140
|
+
"emerald-700": "#047857",
|
|
1141
|
+
"emerald-800": "#065f46",
|
|
1142
|
+
"emerald-900": "#064e3b",
|
|
1143
|
+
"emerald-950": "#022c22",
|
|
1144
|
+
|
|
1145
|
+
"teal-50": "#f0fdfa",
|
|
1146
|
+
"teal-100": "#ccfbf1",
|
|
1147
|
+
"teal-200": "#99f6e4",
|
|
1148
|
+
"teal-300": "#5eead4",
|
|
1149
|
+
"teal-400": "#2dd4bf",
|
|
1150
|
+
"teal-500": "#14b8a6",
|
|
1151
|
+
"teal-600": "#0d9488",
|
|
1152
|
+
"teal-700": "#0f766e",
|
|
1153
|
+
"teal-800": "#115e59",
|
|
1154
|
+
"teal-900": "#134e4a",
|
|
1155
|
+
"teal-950": "#042f2e",
|
|
1156
|
+
"cyan-50": "#ecfeff",
|
|
1157
|
+
"cyan-100": "#cffafe",
|
|
1158
|
+
"cyan-200": "#a5f3fc",
|
|
1159
|
+
"cyan-300": "#67e8f9",
|
|
1160
|
+
"cyan-400": "#22d3ee",
|
|
1161
|
+
"cyan-500": "#06b6d4",
|
|
1162
|
+
"cyan-600": "#0891b2",
|
|
1163
|
+
"cyan-700": "#0e7490",
|
|
1164
|
+
"cyan-800": "#155e75",
|
|
1165
|
+
"cyan-900": "#164e63",
|
|
1166
|
+
"cyan-950": "#083344",
|
|
1167
|
+
"sky-50": "#f0f9ff",
|
|
1168
|
+
"sky-100": "#e0f2fe",
|
|
1169
|
+
"sky-200": "#bae6fd",
|
|
1170
|
+
"sky-300": "#7dd3fc",
|
|
1171
|
+
"sky-400": "#38bdf8",
|
|
1172
|
+
"sky-500": "#0ea5e9",
|
|
1173
|
+
"sky-600": "#0284c7",
|
|
1174
|
+
"sky-700": "#0369a1",
|
|
1175
|
+
"sky-800": "#075985",
|
|
1176
|
+
"sky-900": "#0c4a6e",
|
|
1177
|
+
"sky-950": "#082f49",
|
|
1178
|
+
"blue-50": "#eff6ff",
|
|
1179
|
+
"blue-100": "#dbeafe",
|
|
1180
|
+
"blue-200": "#bfdbfe",
|
|
1181
|
+
"blue-300": "#93c5fd",
|
|
1182
|
+
"blue-400": "#60a5fa",
|
|
1183
|
+
"blue-500": "#3b82f6",
|
|
1184
|
+
"blue-600": "#2563eb",
|
|
1185
|
+
"blue-700": "#1d4ed8",
|
|
1186
|
+
"blue-800": "#1e40af",
|
|
1187
|
+
"blue-900": "#1e3a8a",
|
|
1188
|
+
"blue-950": "#172554",
|
|
1189
|
+
"indigo-50": "#eef2ff",
|
|
1190
|
+
"indigo-100": "#e0e7ff",
|
|
1191
|
+
"indigo-200": "#c7d2fe",
|
|
1192
|
+
"indigo-300": "#a5b4fc",
|
|
1193
|
+
"indigo-400": "#818cf8",
|
|
1194
|
+
"indigo-500": "#6366f1",
|
|
1195
|
+
"indigo-600": "#4f46e5",
|
|
1196
|
+
"indigo-700": "#4338ca",
|
|
1197
|
+
"indigo-800": "#3730a3",
|
|
1198
|
+
"indigo-900": "#312e81",
|
|
1199
|
+
"indigo-950": "#1e1b4b",
|
|
1200
|
+
"violet-50": "#f5f3ff",
|
|
1201
|
+
"violet-100": "#ede9fe",
|
|
1202
|
+
"violet-200": "#ddd6fe",
|
|
1203
|
+
"violet-300": "#c4b5fd",
|
|
1204
|
+
"violet-400": "#a78bfa",
|
|
1205
|
+
"violet-500": "#8b5cf6",
|
|
1206
|
+
"violet-600": "#7c3aed",
|
|
1207
|
+
"violet-700": "#6d28d9",
|
|
1208
|
+
"violet-800": "#5b21b6",
|
|
1209
|
+
"violet-900": "#4c1d95",
|
|
1210
|
+
"violet-950": "#2e1065",
|
|
1211
|
+
"purple-50": "#faf5ff",
|
|
1212
|
+
"purple-100": "#f3e8ff",
|
|
1213
|
+
"purple-200": "#e9d5ff",
|
|
1214
|
+
"purple-300": "#d8b4fe",
|
|
1215
|
+
"purple-400": "#c084fc",
|
|
1216
|
+
"purple-500": "#a855f7",
|
|
1217
|
+
"purple-600": "#9333ea",
|
|
1218
|
+
"purple-700": "#7e22ce",
|
|
1219
|
+
"purple-800": "#6b21a8",
|
|
1220
|
+
"purple-900": "#581c87",
|
|
1221
|
+
"purple-950": "#3b0764",
|
|
1222
|
+
"fuchsia-50": "#fdf4ff",
|
|
1223
|
+
"fuchsia-100": "#fae8ff",
|
|
1224
|
+
"fuchsia-200": "#f5d0fe",
|
|
1225
|
+
"fuchsia-300": "#f0abfc",
|
|
1226
|
+
"fuchsia-400": "#e879f9",
|
|
1227
|
+
"fuchsia-500": "#d946ef",
|
|
1228
|
+
"fuchsia-600": "#c026d3",
|
|
1229
|
+
"fuchsia-700": "#a21caf",
|
|
1230
|
+
"fuchsia-800": "#86198f",
|
|
1231
|
+
"fuchsia-900": "#701a75",
|
|
1232
|
+
"pink-50": "#fdf2f8",
|
|
1233
|
+
"pink-100": "#fce7f3",
|
|
1234
|
+
"pink-200": "#fbcfe8",
|
|
1235
|
+
"pink-300": "#f9a8d4",
|
|
1236
|
+
"pink-400": "#f472b6",
|
|
1237
|
+
"pink-500": "#ec4899",
|
|
1238
|
+
"pink-600": "#db2777",
|
|
1239
|
+
"pink-700": "#be185d",
|
|
1240
|
+
"pink-800": "#9d174d",
|
|
1241
|
+
"pink-900": "#831843",
|
|
1242
|
+
"pink-950": "#500724",
|
|
1243
|
+
"rose-50": "#fff1f2",
|
|
1244
|
+
"rose-100": "#ffe4e6",
|
|
1245
|
+
"rose-200": "#fecdd3",
|
|
1246
|
+
"rose-300": "#fda4af",
|
|
1247
|
+
"rose-400": "#fb7185",
|
|
1248
|
+
"rose-500": "#f43f5e",
|
|
1249
|
+
"rose-600": "#e11d48",
|
|
1250
|
+
"rose-700": "#be123c",
|
|
1251
|
+
"rose-800": "#9f1239",
|
|
1252
|
+
"rose-900": "#881337",
|
|
1253
|
+
"rose-950": "#4c0519",
|
|
1254
|
+
},
|
|
1255
|
+
};
|