@bookklik/senangstart-css 0.2.9 → 0.2.12

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 (69) hide show
  1. package/.agent/skills/add-utility/SKILL.md +65 -0
  2. package/.agent/workflows/add-utility.md +2 -0
  3. package/.agent/workflows/build.md +2 -0
  4. package/.agent/workflows/dev.md +2 -0
  5. package/AGENTS.md +30 -0
  6. package/dist/senangstart-css.js +607 -180
  7. package/dist/senangstart-css.min.js +234 -195
  8. package/dist/senangstart-tw.js +274 -8
  9. package/dist/senangstart-tw.min.js +1 -1
  10. package/docs/SYNTAX-REFERENCE.md +1731 -1590
  11. package/docs/guide/preflight.md +20 -1
  12. package/docs/ms/guide/preflight.md +19 -0
  13. package/docs/ms/reference/breakpoints.md +14 -0
  14. package/docs/ms/reference/visual/border-radius.md +50 -10
  15. package/docs/ms/reference/visual/contain.md +57 -0
  16. package/docs/ms/reference/visual/content-visibility.md +53 -0
  17. package/docs/ms/reference/visual/placeholder-color.md +92 -0
  18. package/docs/ms/reference/visual/ring-color.md +2 -2
  19. package/docs/ms/reference/visual/ring-offset.md +3 -3
  20. package/docs/ms/reference/visual/ring.md +5 -5
  21. package/docs/ms/reference/visual/writing-mode.md +53 -0
  22. package/docs/ms/reference/visual.md +6 -0
  23. package/docs/public/assets/senangstart-css.min.js +234 -195
  24. package/docs/public/llms.txt +45 -12
  25. package/docs/reference/breakpoints.md +14 -0
  26. package/docs/reference/visual/border-radius.md +50 -10
  27. package/docs/reference/visual/contain.md +57 -0
  28. package/docs/reference/visual/content-visibility.md +53 -0
  29. package/docs/reference/visual/placeholder-color.md +92 -0
  30. package/docs/reference/visual/ring-color.md +2 -2
  31. package/docs/reference/visual/ring-offset.md +3 -3
  32. package/docs/reference/visual/ring.md +5 -5
  33. package/docs/reference/visual/writing-mode.md +53 -0
  34. package/docs/reference/visual.md +7 -0
  35. package/docs/syntax-reference.json +2185 -2009
  36. package/package.json +1 -1
  37. package/scripts/convert-tailwind.js +300 -26
  38. package/scripts/generate-docs.js +403 -403
  39. package/src/cdn/senangstart-engine.js +5 -5
  40. package/src/cdn/tw-conversion-engine.js +305 -8
  41. package/src/cli/commands/build.js +51 -13
  42. package/src/cli/commands/dev.js +157 -93
  43. package/src/compiler/generators/css.js +467 -208
  44. package/src/compiler/generators/preflight.js +26 -13
  45. package/src/compiler/generators/typescript.js +3 -1
  46. package/src/compiler/index.js +27 -3
  47. package/src/compiler/parser.js +13 -6
  48. package/src/compiler/tokenizer.js +25 -23
  49. package/src/config/defaults.js +3 -0
  50. package/src/core/tokenizer-core.js +46 -19
  51. package/src/definitions/index.js +4 -1
  52. package/src/definitions/visual-borders.js +10 -10
  53. package/src/definitions/visual-performance.js +126 -0
  54. package/src/definitions/visual.js +25 -9
  55. package/src/utils/common.js +456 -27
  56. package/src/utils/node-io.js +82 -0
  57. package/tests/integration/dev-recovery.test.js +231 -0
  58. package/tests/unit/cli/memory-limits.test.js +169 -0
  59. package/tests/unit/compiler/css-generation-error-handling.test.js +204 -0
  60. package/tests/unit/compiler/generators/css-errors.test.js +102 -0
  61. package/tests/unit/compiler/generators/css.test.js +102 -5
  62. package/tests/unit/convert-tailwind.test.js +518 -431
  63. package/tests/unit/utils/common.test.js +376 -26
  64. package/tests/unit/utils/file-timeout.test.js +154 -0
  65. package/tests/unit/utils/theme-validation.test.js +181 -0
  66. package/tests/unit/compiler/generators/css.coverage.test.js +0 -833
  67. package/tests/unit/convert-tailwind.cli.test.js +0 -95
  68. package/tests/unit/security.test.js +0 -206
  69. /package/tests/unit/{convert-tailwind.coverage.test.js → convert-tailwind-edgecases.test.js} +0 -0
@@ -1,1590 +1,1731 @@
1
- # SenangStart CSS - Syntax Reference
2
-
3
- > Auto-generated on 2026-01-15
4
- > Total definitions: 149
5
-
6
- This document provides a complete reference of all utility syntax patterns in SenangStart CSS.
7
-
8
- ---
9
-
10
- ## Summary
11
-
12
- | Category | Count |
13
- |----------|-------|
14
- | Layout | 41 |
15
- | Space | 5 |
16
- | Visual | 103 |
17
- | **Total** | **149** |
18
-
19
- ---
20
-
21
- ## Layout Utilities
22
-
23
- | Name | Syntax | Description |
24
- |------|--------|-------------|
25
- | align-content | `content:[value]` | Align content rows in multi-line flex container |
26
- | align-items | `items:[value]` | Align items along the cross axis |
27
- | align-self | `self:[value]` | Override alignment for a single item |
28
- | aspect-ratio | `aspect:[value]` | Set element aspect ratio |
29
- | border-collapse | `border:[value]` | Control table border collapse |
30
- | border-spacing | `border-spacing:[value]` | Control spacing between table borders |
31
- | box-sizing | `box:[value]` | Control how width and height are calculated |
32
- | caption-side | `caption:[value]` | Control table caption position |
33
- | columns | `cols:[value]` | Create multi-column layouts |
34
- | container | `container` | Create a centered container with max-width |
35
- | display | `[display-value]` | Control the display type of elements |
36
- | flex | `flex:[value]` | Flex shorthand property |
37
- | flex-basis | `basis:[value]` | Set initial size of flex item |
38
- | flex-direction | `[direction]` | Set the direction of flex items |
39
- | flex-items | `[flex-item-value]` | Control flex grow and shrink behavior |
40
- | flex-wrap | `[wrap-value]` | Control how flex items wrap |
41
- | float-clear | `float:[value]` or `clear:[value]` | Control element floating and clearing |
42
- | grid-auto-flow | `grid-flow:[value]` | Control how auto-placed items flow in grid |
43
- | grid-auto-sizing | `auto-cols:[value]` or `auto-rows:[value]` | Control size of auto-generated grid tracks |
44
- | grid-column-span | `col-span:[value]` | Span across grid columns |
45
- | grid-columns | `grid-cols:[value]` | Define grid template columns |
46
- | grid-row-span | `row-span:[value]` | Span across grid rows |
47
- | grid-rows | `grid-rows:[value]` | Define grid template rows |
48
- | inset | `inset:[value]` or `top:[value]` | Control positioning offsets |
49
- | isolation | `isolation:[value]` | Create new stacking context |
50
- | justify-content | `justify:[value]` | Align items along the main axis |
51
- | justify-items | `justify-items:[value]` | Align grid items on inline axis |
52
- | justify-self | `justify-self:[value]` | Align single grid item on inline axis |
53
- | object-fit | `object:[value]` | Control how media content fits its container |
54
- | object-position | `object-pos:[value]` | Position replaced element content within container |
55
- | order | `order:[value]` | Control flex/grid item order |
56
- | overflow | `overflow:[value]` | Control content overflow behavior |
57
- | overscroll | `overscroll:[value]` | Control scroll chaining behavior |
58
- | place-content | `place-content:[value]` | Shorthand for align-content and justify-content |
59
- | place-items | `place-items:[value]` | Shorthand for align-items and justify-items |
60
- | place-self | `place-self:[value]` | Shorthand for align-self and justify-self |
61
- | position | `[position-value]` | Set the positioning method |
62
- | shorthand-alignment | `[alignment]` | Quick alignment shortcuts |
63
- | table-layout | `table:[value]` | Control table layout algorithm |
64
- | visibility | `[visibility-value]` | Control element visibility |
65
- | z-index | `z:[value]` | Control stacking order |
66
-
67
- ---
68
-
69
- ## Space Utilities
70
-
71
- | Name | Syntax | Description |
72
- |------|--------|-------------|
73
- | gap | `g:[value]` or `g-{axis}:[value]` | Add gap between flex/grid items |
74
- | height | `h:[value]` | Set element height |
75
- | margin | `m:[value]` or `m-{side}:[value]` | Add margin to elements |
76
- | padding | `p:[value]` or `p-{side}:[value]` | Add padding to elements |
77
- | width | `w:[value]` | Set element width |
78
-
79
- ---
80
-
81
- ## Visual Utilities
82
-
83
- | Name | Syntax | Description |
84
- |------|--------|-------------|
85
- | accent-color | `accent:[color]` | Set accent color for form controls |
86
- | animation-builtin | `animate:[value]` | Apply built-in animations |
87
- | animation-delay | `animation-delay:[value]` | Set animation delay |
88
- | animation-direction | `animation-direction:[value]` | Set animation direction |
89
- | animation-duration | `animation-duration:[value]` | Set animation duration |
90
- | animation-fill | `animation-fill:[value]` | Set animation fill mode |
91
- | animation-iteration | `animation-iteration:[value]` | Set animation iteration count |
92
- | animation-play | `animation-play:[value]` | Control animation play state |
93
- | appearance | `appearance:[value]` | Control native appearance |
94
- | backdrop-blur | `backdrop-blur:[value]` | Blur backdrop |
95
- | backdrop-brightness | `backdrop-brightness:[value]` | Adjust backdrop brightness |
96
- | backdrop-contrast | `backdrop-contrast:[value]` | Adjust backdrop contrast |
97
- | backdrop-grayscale | `backdrop-grayscale:[value]` | Apply grayscale to backdrop |
98
- | backdrop-hue-rotate | `backdrop-hue-rotate:[degrees]` | Rotate backdrop hue |
99
- | backdrop-invert | `backdrop-invert:[value]` | Invert backdrop colors |
100
- | backdrop-opacity | `backdrop-opacity:[value]` | Set backdrop opacity |
101
- | backdrop-saturate | `backdrop-saturate:[value]` | Adjust backdrop saturation |
102
- | backdrop-sepia | `backdrop-sepia:[value]` | Apply sepia to backdrop |
103
- | background-attachment | `bg-attachment:[value]` | Set background attachment behavior |
104
- | background-blend-mode | `bg-blend:[value]` | Set background blend mode |
105
- | background-clip | `bg-clip:[value]` | Set background clipping area |
106
- | background-color | `bg:[color]` | Set background color |
107
- | background-image | `bg-image:[value]` | Set background image or gradient |
108
- | background-origin | `bg-origin:[value]` | Set background positioning origin |
109
- | background-position | `bg-pos:[value]` | Set background position |
110
- | background-repeat | `bg-repeat:[value]` | Set background repeat behavior |
111
- | background-size | `bg-size:[value]` | Set background size |
112
- | blend-modes | `mix-blend:[value]` | Set mix blend mode |
113
- | border | `border:[color]` | `border-{t|b|l|r|x|y}:[color]` | Set border color for all sides or specific sides |
114
- | border-radius | `rounded:[value]` | Set border radius |
115
- | border-style | `border-style:[value]` | Set border style |
116
- | border-width | `border-w:[value]` | `border-{t|b|l|r|x|y}-w:[value]` | Set border width for all sides or specific sides |
117
- | box-shadow | `shadow:[value]` | Add box shadow |
118
- | caret-color | `caret:[color]` | Set text input caret color |
119
- | color-scheme | `color-scheme:[value]` | Set preferred color scheme |
120
- | cursor | `cursor:[value]` | Set cursor style |
121
- | field-sizing | `field-sizing:[value]` | Control form field sizing |
122
- | fill | `fill:[color]` | Set SVG fill color |
123
- | filter-blur | `blur:[value]` | Apply blur filter |
124
- | filter-brightness | `brightness:[value]` | Adjust brightness |
125
- | filter-contrast | `contrast:[value]` | Adjust contrast |
126
- | filter-drop-shadow | `drop-shadow:[value]` | Add drop shadow |
127
- | filter-grayscale | `grayscale:[value]` | Apply grayscale filter |
128
- | filter-hue-rotate | `hue-rotate:[degrees]` | Rotate hue colors |
129
- | filter-invert | `invert:[value]` | Invert colors |
130
- | filter-saturate | `saturate:[value]` | Adjust saturation |
131
- | filter-sepia | `sepia:[value]` | Apply sepia filter |
132
- | font-family | `font:[family]` | Set font family |
133
- | font-smoothing | `[smoothing-value]` | Control font smoothing |
134
- | font-style | `[style-value]` | Set font style |
135
- | font-variant-numeric | `[variant-value]` | Control numeric font variants |
136
- | font-weight | `font:[weight]` | Set font weight |
137
- | forced-color-adjust | `forced-color:[value]` | Control forced colors mode behavior |
138
- | hyphens | `hyphens:[value]` | Control hyphenation |
139
- | letter-spacing | `tracking:[value]` | Set letter spacing |
140
- | line-clamp | `line-clamp:[value]` | Limit text to specific lines |
141
- | line-height | `leading:[value]` | Set line height |
142
- | list-style | `list:[value]` | Set list style |
143
- | mask | `mask:[value]` | Apply mask to element |
144
- | opacity | `opacity:[value]` | Set element opacity (0-100) |
145
- | outline | `outline:[color]` | Set outline color |
146
- | pointer-events | `pointer-events:[value]` | Control pointer events |
147
- | resize | `resize:[value]` | Control element resizing |
148
- | scroll-behavior | `scroll-behavior:[value]` | Set scroll behavior |
149
- | scroll-margin | `scroll-m:[value]` | Set scroll margin for snap |
150
- | scroll-padding | `scroll-p:[value]` | Set scroll padding for snap |
151
- | scroll-snap-align | `snap-align:[value]` | Set scroll snap alignment |
152
- | scroll-snap-stop | `snap-stop:[value]` | Control scroll snap stop behavior |
153
- | scroll-snap-type | `snap-type:[value]` | Set scroll snap type |
154
- | state-prefixes | `hover:... focus:... active:...` | Apply styles on specific states |
155
- | stroke | `stroke:[color]` | Set SVG stroke color |
156
- | stroke-width | `stroke-w:[value]` | Set SVG stroke width |
157
- | text-alignment | `text:[alignment]` | Set text alignment |
158
- | text-color | `text:[color]` | Set text color |
159
- | text-decoration | `[decoration-value]` | Set text decoration |
160
- | text-indent | `indent:[value]` | Set text indentation |
161
- | text-overflow | `[overflow-value]` | Handle text overflow |
162
- | text-shadow | `text-shadow:[value]` | Add text shadow |
163
- | text-size | `text-size:[value]` | Set font size |
164
- | text-transform | `[transform-value]` | Transform text case |
165
- | text-wrap | `[wrap-value]` | Control text wrapping |
166
- | touch-action | `touch:[value]` | Control touch interactions |
167
- | transform-backface | `backface:[value]` | Control visibility of element back side when rotated in 3D |
168
- | transform-origin | `origin:[value]` | Set transform origin point |
169
- | transform-perspective | `perspective:[value]` | Set 3D perspective on container (apply to parent of transformed elements) |
170
- | transform-perspective-origin | `perspective-origin:[value]` | Set perspective vanishing point location |
171
- | transform-rotate | `rotate:[degrees]` | Rotate element |
172
- | transform-rotate-3d | `rotate-x:[degrees]` or `rotate-y:[degrees]` or `rotate-z:[degrees]` | Rotate element in 3D space along X, Y, or Z axis |
173
- | transform-scale | `scale:[value]` | Scale element |
174
- | transform-skew | `skew-x:[degrees]` or `skew-y:[degrees]` | Skew element |
175
- | transform-style | `transform-style:[value]` | Preserve 3D space for nested transformed elements |
176
- | transform-translate | `translate-x:[value]` or `translate-y:[value]` or `translate-z:[value]` | Translate element position along X, Y, or Z axis |
177
- | transform-translate-z | `translate-z:[value]` | Translate element along Z axis (depth) in 3D space |
178
- | transition-delay | `delay:[value]` | Set transition delay |
179
- | transition-duration | `duration:[value]` | Set transition duration |
180
- | transition-property | `transition:[value]` | Set transition properties |
181
- | transition-timing | `ease:[value]` | Set transition timing function |
182
- | typography-keywords | `[keyword]` | Typography utility keywords |
183
- | user-select | `select:[value]` | Control text selection |
184
- | vertical-align | `align:[value]` | Set vertical alignment |
185
- | whitespace | `whitespace:[value]` | Control whitespace handling |
186
- | will-change | `will-change:[value]` | Hint browser about upcoming changes |
187
- | word-break | `[break-value]` | Control word breaking |
188
-
189
- ---
190
-
191
- ## Detailed Values
192
-
193
- ### Layout Values
194
-
195
- #### align-content
196
-
197
- | Value | CSS Output |
198
- |-------|------------|
199
- | `start` | `align-content: flex-start;` |
200
- | `end` | `align-content: flex-end;` |
201
- | `center` | `align-content: center;` |
202
- | `between` | `align-content: space-between;` |
203
- | `around` | `align-content: space-around;` |
204
- | `evenly` | `align-content: space-evenly;` |
205
- | `stretch` | `align-content: stretch;` |
206
-
207
- #### align-items
208
-
209
- | Value | CSS Output |
210
- |-------|------------|
211
- | `start` | `align-items: flex-start;` |
212
- | `end` | `align-items: flex-end;` |
213
- | `center` | `align-items: center;` |
214
- | `baseline` | `align-items: baseline;` |
215
- | `stretch` | `align-items: stretch;` |
216
-
217
- #### align-self
218
-
219
- | Value | CSS Output |
220
- |-------|------------|
221
- | `auto` | `align-self: auto;` |
222
- | `start` | `align-self: flex-start;` |
223
- | `end` | `align-self: flex-end;` |
224
- | `center` | `align-self: center;` |
225
- | `baseline` | `align-self: baseline;` |
226
- | `stretch` | `align-self: stretch;` |
227
-
228
- #### aspect-ratio
229
-
230
- | Value | CSS Output |
231
- |-------|------------|
232
- | `auto` | `aspect-ratio: auto;` |
233
- | `square` | `aspect-ratio: 1 / 1;` |
234
- | `video` | `aspect-ratio: 16 / 9;` |
235
-
236
- #### border-collapse
237
-
238
- | Value | CSS Output |
239
- |-------|------------|
240
- | `collapse` | `border-collapse: collapse;` |
241
- | `separate` | `border-collapse: separate;` |
242
-
243
- #### border-spacing
244
-
245
- | Value | CSS Output |
246
- |-------|------------|
247
- | `border-spacing` | `border-spacing: {value};` |
248
- | `border-spacing-x` | `border-spacing: {value} 0;` |
249
- | `border-spacing-y` | `border-spacing: 0 {value};` |
250
-
251
- #### box-sizing
252
-
253
- | Value | CSS Output |
254
- |-------|------------|
255
- | `border` | `box-sizing: border-box;` |
256
- | `content` | `box-sizing: content-box;` |
257
-
258
- #### caption-side
259
-
260
- | Value | CSS Output |
261
- |-------|------------|
262
- | `top` | `caption-side: top;` |
263
- | `bottom` | `caption-side: bottom;` |
264
-
265
- #### columns
266
-
267
- | Value | CSS Output |
268
- |-------|------------|
269
- | `1-12` | `columns: {n};` |
270
- | `auto` | `columns: auto;` |
271
-
272
- #### container
273
-
274
- | Value | CSS Output |
275
- |-------|------------|
276
- | `container` | `width: 100%; margin-left: auto; margin-right: auto;` |
277
-
278
- #### display
279
-
280
- | Value | CSS Output |
281
- |-------|------------|
282
- | `flex` | `display: flex;` |
283
- | `inline-flex` | `display: inline-flex;` |
284
- | `grid` | `display: grid;` |
285
- | `inline-grid` | `display: inline-grid;` |
286
- | `block` | `display: block;` |
287
- | `inline` | `display: inline-block;` |
288
- | `hidden` | `display: none;` |
289
-
290
- #### flex
291
-
292
- | Value | CSS Output |
293
- |-------|------------|
294
- | `1` | `flex: 1 1 0%;` |
295
- | `auto` | `flex: 1 1 auto;` |
296
- | `initial` | `flex: 0 1 auto;` |
297
- | `none` | `flex: none;` |
298
-
299
- #### flex-basis
300
-
301
- | Value | CSS Output |
302
- |-------|------------|
303
- | `auto` | `flex-basis: auto;` |
304
- | `0` | `flex-basis: 0;` |
305
-
306
- #### flex-direction
307
-
308
- | Value | CSS Output |
309
- |-------|------------|
310
- | `row` | `flex-direction: row;` |
311
- | `col` | `flex-direction: column;` |
312
- | `row-reverse` | `flex-direction: row-reverse;` |
313
- | `col-reverse` | `flex-direction: column-reverse;` |
314
-
315
- #### flex-items
316
-
317
- | Value | CSS Output |
318
- |-------|------------|
319
- | `grow` | `flex-grow: 1;` |
320
- | `grow-0` | `flex-grow: 0;` |
321
- | `shrink` | `flex-shrink: 1;` |
322
- | `shrink-0` | `flex-shrink: 0;` |
323
-
324
- #### flex-wrap
325
-
326
- | Value | CSS Output |
327
- |-------|------------|
328
- | `wrap` | `flex-wrap: wrap;` |
329
- | `nowrap` | `flex-wrap: nowrap;` |
330
- | `wrap-reverse` | `flex-wrap: wrap-reverse;` |
331
-
332
- #### float-clear
333
-
334
- | Value | CSS Output |
335
- |-------|------------|
336
- | `left` | `float: left;` |
337
- | `right` | `float: right;` |
338
- | `none` | `float: none;` |
339
-
340
- #### grid-auto-flow
341
-
342
- | Value | CSS Output |
343
- |-------|------------|
344
- | `row` | `grid-auto-flow: row;` |
345
- | `col` | `grid-auto-flow: column;` |
346
- | `dense` | `grid-auto-flow: dense;` |
347
- | `row-dense` | `grid-auto-flow: row dense;` |
348
- | `col-dense` | `grid-auto-flow: column dense;` |
349
-
350
- #### grid-auto-sizing
351
-
352
- | Value | CSS Output |
353
- |-------|------------|
354
- | `auto` | `auto` |
355
- | `min` | `min-content` |
356
- | `max` | `max-content` |
357
- | `fr` | `minmax(0, 1fr)` |
358
-
359
- #### grid-column-span
360
-
361
- | Value | CSS Output |
362
- |-------|------------|
363
- | `1-12` | `grid-column: span {n} / span {n};` |
364
- | `full` | `grid-column: 1 / -1;` |
365
-
366
- #### grid-columns
367
-
368
- | Value | CSS Output |
369
- |-------|------------|
370
- | `1-12` | `grid-template-columns: repeat({n}, minmax(0, 1fr));` |
371
- | `none` | `grid-template-columns: none;` |
372
- | `subgrid` | `grid-template-columns: subgrid;` |
373
-
374
- #### grid-row-span
375
-
376
- | Value | CSS Output |
377
- |-------|------------|
378
- | `1-12` | `grid-row: span {n} / span {n};` |
379
- | `full` | `grid-row: 1 / -1;` |
380
-
381
- #### grid-rows
382
-
383
- | Value | CSS Output |
384
- |-------|------------|
385
- | `1-12` | `grid-template-rows: repeat({n}, minmax(0, 1fr));` |
386
- | `none` | `grid-template-rows: none;` |
387
- | `subgrid` | `grid-template-rows: subgrid;` |
388
-
389
- #### inset
390
-
391
- | Value | CSS Output |
392
- |-------|------------|
393
- | `inset` | `inset: {value};` |
394
- | `inset-x` | `left: {value}; right: {value};` |
395
- | `inset-y` | `top: {value}; bottom: {value};` |
396
- | `top` | `top: {value};` |
397
- | `right` | `right: {value};` |
398
- | `bottom` | `bottom: {value};` |
399
- | `left` | `left: {value};` |
400
-
401
- #### isolation
402
-
403
- | Value | CSS Output |
404
- |-------|------------|
405
- | `isolate` | `isolation: isolate;` |
406
- | `auto` | `isolation: auto;` |
407
-
408
- #### justify-content
409
-
410
- | Value | CSS Output |
411
- |-------|------------|
412
- | `start` | `justify-content: flex-start;` |
413
- | `end` | `justify-content: flex-end;` |
414
- | `center` | `justify-content: center;` |
415
- | `between` | `justify-content: space-between;` |
416
- | `around` | `justify-content: space-around;` |
417
- | `evenly` | `justify-content: space-evenly;` |
418
- | `stretch` | `justify-content: stretch;` |
419
-
420
- #### justify-items
421
-
422
- | Value | CSS Output |
423
- |-------|------------|
424
- | `start` | `justify-items: start;` |
425
- | `end` | `justify-items: end;` |
426
- | `center` | `justify-items: center;` |
427
- | `stretch` | `justify-items: stretch;` |
428
-
429
- #### justify-self
430
-
431
- | Value | CSS Output |
432
- |-------|------------|
433
- | `auto` | `justify-self: auto;` |
434
- | `start` | `justify-self: start;` |
435
- | `end` | `justify-self: end;` |
436
- | `center` | `justify-self: center;` |
437
- | `stretch` | `justify-self: stretch;` |
438
-
439
- #### object-fit
440
-
441
- | Value | CSS Output |
442
- |-------|------------|
443
- | `contain` | `object-fit: contain;` |
444
- | `cover` | `object-fit: cover;` |
445
- | `fill` | `object-fit: fill;` |
446
- | `none` | `object-fit: none;` |
447
- | `scale-down` | `object-fit: scale-down;` |
448
-
449
- #### object-position
450
-
451
- | Value | CSS Output |
452
- |-------|------------|
453
- | `center` | `object-position: center;` |
454
- | `top` | `object-position: top;` |
455
- | `bottom` | `object-position: bottom;` |
456
- | `left` | `object-position: left;` |
457
- | `right` | `object-position: right;` |
458
- | `top-left` | `object-position: top left;` |
459
- | `top-right` | `object-position: top right;` |
460
- | `bottom-left` | `object-position: bottom left;` |
461
- | `bottom-right` | `object-position: bottom right;` |
462
-
463
- #### order
464
-
465
- | Value | CSS Output |
466
- |-------|------------|
467
- | `first` | `order: -9999;` |
468
- | `last` | `order: 9999;` |
469
- | `none` | `order: 0;` |
470
- | `1-12` | `order: {n};` |
471
-
472
- #### overflow
473
-
474
- | Value | CSS Output |
475
- |-------|------------|
476
- | `auto` | `overflow: auto;` |
477
- | `hidden` | `overflow: hidden;` |
478
- | `visible` | `overflow: visible;` |
479
- | `scroll` | `overflow: scroll;` |
480
- | `clip` | `overflow: clip;` |
481
-
482
- #### overscroll
483
-
484
- | Value | CSS Output |
485
- |-------|------------|
486
- | `auto` | `overscroll-behavior: auto;` |
487
- | `contain` | `overscroll-behavior: contain;` |
488
- | `none` | `overscroll-behavior: none;` |
489
-
490
- #### place-content
491
-
492
- | Value | CSS Output |
493
- |-------|------------|
494
- | `start` | `place-content: start;` |
495
- | `end` | `place-content: end;` |
496
- | `center` | `place-content: center;` |
497
- | `between` | `place-content: space-between;` |
498
- | `around` | `place-content: space-around;` |
499
- | `evenly` | `place-content: space-evenly;` |
500
- | `stretch` | `place-content: stretch;` |
501
-
502
- #### place-items
503
-
504
- | Value | CSS Output |
505
- |-------|------------|
506
- | `start` | `place-items: start;` |
507
- | `end` | `place-items: end;` |
508
- | `center` | `place-items: center;` |
509
- | `stretch` | `place-items: stretch;` |
510
-
511
- #### place-self
512
-
513
- | Value | CSS Output |
514
- |-------|------------|
515
- | `auto` | `place-self: auto;` |
516
- | `start` | `place-self: start;` |
517
- | `end` | `place-self: end;` |
518
- | `center` | `place-self: center;` |
519
- | `stretch` | `place-self: stretch;` |
520
-
521
- #### position
522
-
523
- | Value | CSS Output |
524
- |-------|------------|
525
- | `static` | `position: static;` |
526
- | `relative` | `position: relative;` |
527
- | `absolute` | `position: absolute;` |
528
- | `fixed` | `position: fixed;` |
529
- | `sticky` | `position: sticky;` |
530
-
531
- #### shorthand-alignment
532
-
533
- | Value | CSS Output |
534
- |-------|------------|
535
- | `center` | `justify-content: center; align-items: center;` |
536
- | `start` | `justify-content: flex-start; align-items: flex-start;` |
537
- | `end` | `justify-content: flex-end; align-items: flex-end;` |
538
- | `between` | `justify-content: space-between;` |
539
- | `around` | `justify-content: space-around;` |
540
- | `evenly` | `justify-content: space-evenly;` |
541
-
542
- #### table-layout
543
-
544
- | Value | CSS Output |
545
- |-------|------------|
546
- | `auto` | `table-layout: auto;` |
547
- | `fixed` | `table-layout: fixed;` |
548
-
549
- #### visibility
550
-
551
- | Value | CSS Output |
552
- |-------|------------|
553
- | `visible` | `visibility: visible;` |
554
- | `invisible` | `visibility: hidden;` |
555
-
556
- #### z-index
557
-
558
- | Value | CSS Output |
559
- |-------|------------|
560
- | `base` | `z-index: var(--z-base);` |
561
- | `low` | `z-index: var(--z-low);` |
562
- | `mid` | `z-index: var(--z-mid);` |
563
- | `high` | `z-index: var(--z-high);` |
564
- | `top` | `z-index: var(--z-top);` |
565
-
566
- ### Space Values
567
-
568
- #### gap
569
-
570
- | Value | CSS Output |
571
- |-------|------------|
572
- | `undefined` | `gap: var(--s-{value});` |
573
- | `undefined` | `column-gap: var(--s-{value});` |
574
- | `undefined` | `row-gap: var(--s-{value});` |
575
-
576
- #### height
577
-
578
- | Value | CSS Output |
579
- |-------|------------|
580
- | `undefined` | `height: var(--s-{value});` |
581
- | `undefined` | `min-height: var(--s-{value});` |
582
- | `undefined` | `max-height: var(--s-{value});` |
583
-
584
- #### margin
585
-
586
- | Value | CSS Output |
587
- |-------|------------|
588
- | `undefined` | `margin: var(--s-{value});` |
589
- | `undefined` | `margin-top: var(--s-{value});` |
590
- | `undefined` | `margin-right: var(--s-{value});` |
591
- | `undefined` | `margin-bottom: var(--s-{value});` |
592
- | `undefined` | `margin-left: var(--s-{value});` |
593
- | `undefined` | `margin-left: var(--s-{value}); margin-right: var(--s-{value});` |
594
- | `undefined` | `margin-top: var(--s-{value}); margin-bottom: var(--s-{value});` |
595
-
596
- #### padding
597
-
598
- | Value | CSS Output |
599
- |-------|------------|
600
- | `undefined` | `padding: var(--s-{value});` |
601
- | `undefined` | `padding-top: var(--s-{value});` |
602
- | `undefined` | `padding-right: var(--s-{value});` |
603
- | `undefined` | `padding-bottom: var(--s-{value});` |
604
- | `undefined` | `padding-left: var(--s-{value});` |
605
- | `undefined` | `padding-left: var(--s-{value}); padding-right: var(--s-{value});` |
606
- | `undefined` | `padding-top: var(--s-{value}); padding-bottom: var(--s-{value});` |
607
-
608
- #### width
609
-
610
- | Value | CSS Output |
611
- |-------|------------|
612
- | `undefined` | `width: var(--s-{value});` |
613
- | `undefined` | `min-width: var(--s-{value});` |
614
- | `undefined` | `max-width: var(--s-{value});` |
615
-
616
- ### Visual Values
617
-
618
- #### animation-builtin
619
-
620
- | Value | CSS Output |
621
- |-------|------------|
622
- | `none` | `animation: none;` |
623
- | `spin` | `animation: spin 1s linear infinite;` |
624
- | `ping` | `animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;` |
625
- | `pulse` | `animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;` |
626
- | `bounce` | `animation: bounce 1s infinite;` |
627
-
628
- #### animation-delay
629
-
630
- | Value | CSS Output |
631
- |-------|------------|
632
- | `instant` | `animation-delay: 75ms;` |
633
- | `quick` | `animation-delay: 100ms;` |
634
- | `fast` | `animation-delay: 150ms;` |
635
- | `normal` | `animation-delay: 200ms;` |
636
- | `slow` | `animation-delay: 300ms;` |
637
-
638
- #### animation-direction
639
-
640
- | Value | CSS Output |
641
- |-------|------------|
642
- | `normal` | `animation-direction: normal;` |
643
- | `reverse` | `animation-direction: reverse;` |
644
- | `alternate` | `animation-direction: alternate;` |
645
- | `alternate-reverse` | `animation-direction: alternate-reverse;` |
646
-
647
- #### animation-duration
648
-
649
- | Value | CSS Output |
650
- |-------|------------|
651
- | `instant` | `animation-duration: 75ms;` |
652
- | `quick` | `animation-duration: 100ms;` |
653
- | `fast` | `animation-duration: 150ms;` |
654
- | `normal` | `animation-duration: 200ms;` |
655
- | `slow` | `animation-duration: 300ms;` |
656
- | `slower` | `animation-duration: 500ms;` |
657
- | `lazy` | `animation-duration: 700ms;` |
658
-
659
- #### animation-fill
660
-
661
- | Value | CSS Output |
662
- |-------|------------|
663
- | `none` | `animation-fill-mode: none;` |
664
- | `forwards` | `animation-fill-mode: forwards;` |
665
- | `backwards` | `animation-fill-mode: backwards;` |
666
- | `both` | `animation-fill-mode: both;` |
667
-
668
- #### animation-iteration
669
-
670
- | Value | CSS Output |
671
- |-------|------------|
672
- | `1` | `animation-iteration-count: 1;` |
673
- | `infinite` | `animation-iteration-count: infinite;` |
674
-
675
- #### animation-play
676
-
677
- | Value | CSS Output |
678
- |-------|------------|
679
- | `running` | `animation-play-state: running;` |
680
- | `paused` | `animation-play-state: paused;` |
681
-
682
- #### appearance
683
-
684
- | Value | CSS Output |
685
- |-------|------------|
686
- | `none` | `appearance: none;` |
687
- | `auto` | `appearance: auto;` |
688
-
689
- #### backdrop-blur
690
-
691
- | Value | CSS Output |
692
- |-------|------------|
693
- | `none` | `backdrop-filter: blur(0);` |
694
- | `tiny` | `backdrop-filter: blur(2px);` |
695
- | `small` | `backdrop-filter: blur(4px);` |
696
- | `medium` | `backdrop-filter: blur(8px);` |
697
- | `big` | `backdrop-filter: blur(12px);` |
698
- | `giant` | `backdrop-filter: blur(24px);` |
699
- | `vast` | `backdrop-filter: blur(48px);` |
700
-
701
- #### backdrop-brightness
702
-
703
- | Value | CSS Output |
704
- |-------|------------|
705
- | `dim` | `backdrop-filter: brightness(0.5);` |
706
- | `dark` | `backdrop-filter: brightness(0.75);` |
707
- | `normal` | `backdrop-filter: brightness(1);` |
708
- | `bright` | `backdrop-filter: brightness(1.25);` |
709
- | `vivid` | `backdrop-filter: brightness(1.5);` |
710
-
711
- #### backdrop-contrast
712
-
713
- | Value | CSS Output |
714
- |-------|------------|
715
- | `low` | `backdrop-filter: contrast(0.5);` |
716
- | `reduced` | `backdrop-filter: contrast(0.75);` |
717
- | `normal` | `backdrop-filter: contrast(1);` |
718
- | `high` | `backdrop-filter: contrast(1.25);` |
719
- | `max` | `backdrop-filter: contrast(1.5);` |
720
-
721
- #### backdrop-grayscale
722
-
723
- | Value | CSS Output |
724
- |-------|------------|
725
- | `none` | `backdrop-filter: grayscale(0%);` |
726
- | `partial` | `backdrop-filter: grayscale(50%);` |
727
- | `full` | `backdrop-filter: grayscale(100%);` |
728
-
729
- #### backdrop-hue-rotate
730
-
731
- | Value | CSS Output |
732
- |-------|------------|
733
- | `0` | `backdrop-filter: hue-rotate(0deg);` |
734
- | `90` | `backdrop-filter: hue-rotate(90deg);` |
735
- | `180` | `backdrop-filter: hue-rotate(180deg);` |
736
-
737
- #### backdrop-invert
738
-
739
- | Value | CSS Output |
740
- |-------|------------|
741
- | `none` | `backdrop-filter: invert(0%);` |
742
- | `partial` | `backdrop-filter: invert(50%);` |
743
- | `full` | `backdrop-filter: invert(100%);` |
744
-
745
- #### backdrop-opacity
746
-
747
- | Value | CSS Output |
748
- |-------|------------|
749
- | `0` | `backdrop-filter: opacity(0);` |
750
- | `50` | `backdrop-filter: opacity(0.5);` |
751
- | `100` | `backdrop-filter: opacity(1);` |
752
-
753
- #### backdrop-saturate
754
-
755
- | Value | CSS Output |
756
- |-------|------------|
757
- | `none` | `backdrop-filter: saturate(0);` |
758
- | `low` | `backdrop-filter: saturate(0.5);` |
759
- | `normal` | `backdrop-filter: saturate(1);` |
760
- | `high` | `backdrop-filter: saturate(1.5);` |
761
- | `vivid` | `backdrop-filter: saturate(2);` |
762
-
763
- #### backdrop-sepia
764
-
765
- | Value | CSS Output |
766
- |-------|------------|
767
- | `none` | `backdrop-filter: sepia(0%);` |
768
- | `partial` | `backdrop-filter: sepia(50%);` |
769
- | `full` | `backdrop-filter: sepia(100%);` |
770
-
771
- #### background-attachment
772
-
773
- | Value | CSS Output |
774
- |-------|------------|
775
- | `fixed` | `background-attachment: fixed;` |
776
- | `local` | `background-attachment: local;` |
777
- | `scroll` | `background-attachment: scroll;` |
778
-
779
- #### background-blend-mode
780
-
781
- | Value | CSS Output |
782
- |-------|------------|
783
- | `normal` | `background-blend-mode: normal;` |
784
- | `multiply` | `background-blend-mode: multiply;` |
785
- | `screen` | `background-blend-mode: screen;` |
786
- | `overlay` | `background-blend-mode: overlay;` |
787
- | `darken` | `background-blend-mode: darken;` |
788
- | `lighten` | `background-blend-mode: lighten;` |
789
-
790
- #### background-clip
791
-
792
- | Value | CSS Output |
793
- |-------|------------|
794
- | `border` | `background-clip: border-box;` |
795
- | `padding` | `background-clip: padding-box;` |
796
- | `content` | `background-clip: content-box;` |
797
- | `text` | `background-clip: text; -webkit-background-clip: text;` |
798
-
799
- #### background-image
800
-
801
- | Value | CSS Output |
802
- |-------|------------|
803
- | `none` | `background-image: none;` |
804
- | `gradient-to-t` | `background-image: linear-gradient(to top, var(--tw-gradient-stops));` |
805
- | `gradient-to-b` | `background-image: linear-gradient(to bottom, var(--tw-gradient-stops));` |
806
- | `gradient-to-l` | `background-image: linear-gradient(to left, var(--tw-gradient-stops));` |
807
- | `gradient-to-r` | `background-image: linear-gradient(to right, var(--tw-gradient-stops));` |
808
-
809
- #### background-origin
810
-
811
- | Value | CSS Output |
812
- |-------|------------|
813
- | `border` | `background-origin: border-box;` |
814
- | `padding` | `background-origin: padding-box;` |
815
- | `content` | `background-origin: content-box;` |
816
-
817
- #### background-position
818
-
819
- | Value | CSS Output |
820
- |-------|------------|
821
- | `center` | `background-position: center;` |
822
- | `top` | `background-position: top;` |
823
- | `bottom` | `background-position: bottom;` |
824
- | `left` | `background-position: left;` |
825
- | `right` | `background-position: right;` |
826
- | `top-left` | `background-position: top left;` |
827
- | `top-right` | `background-position: top right;` |
828
- | `bottom-left` | `background-position: bottom left;` |
829
- | `bottom-right` | `background-position: bottom right;` |
830
-
831
- #### background-repeat
832
-
833
- | Value | CSS Output |
834
- |-------|------------|
835
- | `repeat` | `background-repeat: repeat;` |
836
- | `no-repeat` | `background-repeat: no-repeat;` |
837
- | `repeat-x` | `background-repeat: repeat-x;` |
838
- | `repeat-y` | `background-repeat: repeat-y;` |
839
- | `round` | `background-repeat: round;` |
840
- | `space` | `background-repeat: space;` |
841
-
842
- #### background-size
843
-
844
- | Value | CSS Output |
845
- |-------|------------|
846
- | `auto` | `background-size: auto;` |
847
- | `cover` | `background-size: cover;` |
848
- | `contain` | `background-size: contain;` |
849
-
850
- #### blend-modes
851
-
852
- | Value | CSS Output |
853
- |-------|------------|
854
- | `normal` | `mix-blend-mode: normal;` |
855
- | `multiply` | `mix-blend-mode: multiply;` |
856
- | `screen` | `mix-blend-mode: screen;` |
857
- | `overlay` | `mix-blend-mode: overlay;` |
858
- | `darken` | `mix-blend-mode: darken;` |
859
- | `lighten` | `mix-blend-mode: lighten;` |
860
-
861
- #### border
862
-
863
- | Value | CSS Output |
864
- |-------|------------|
865
- | `primary` | `border-color: var(--c-primary); border-style: solid;` |
866
- | `gray-300` | `border-color: var(--c-gray-300); border-style: solid;` |
867
- | `danger` | `border-color: var(--c-danger); border-style: solid;` |
868
-
869
- #### border-radius
870
-
871
- | Value | CSS Output |
872
- |-------|------------|
873
- | `none` | `border-radius: var(--r-none);` |
874
- | `small` | `border-radius: var(--r-small);` |
875
- | `medium` | `border-radius: var(--r-medium);` |
876
- | `big` | `border-radius: var(--r-big);` |
877
- | `round` | `border-radius: var(--r-round);` |
878
-
879
- #### border-style
880
-
881
- | Value | CSS Output |
882
- |-------|------------|
883
- | `solid` | `border-style: solid;` |
884
- | `dashed` | `border-style: dashed;` |
885
- | `dotted` | `border-style: dotted;` |
886
- | `double` | `border-style: double;` |
887
- | `none` | `border-style: none;` |
888
-
889
- #### border-width
890
-
891
- | Value | CSS Output |
892
- |-------|------------|
893
- | `none` | `border-width: var(--s-none);` |
894
- | `thin` | `border-width: var(--s-thin);` |
895
- | `regular` | `border-width: var(--s-regular);` |
896
- | `thick` | `border-width: var(--s-thick);` |
897
-
898
- #### box-shadow
899
-
900
- | Value | CSS Output |
901
- |-------|------------|
902
- | `none` | `box-shadow: var(--shadow-none);` |
903
- | `small` | `box-shadow: var(--shadow-small);` |
904
- | `medium` | `box-shadow: var(--shadow-medium);` |
905
- | `big` | `box-shadow: var(--shadow-big);` |
906
- | `giant` | `box-shadow: var(--shadow-giant);` |
907
-
908
- #### color-scheme
909
-
910
- | Value | CSS Output |
911
- |-------|------------|
912
- | `light` | `color-scheme: light;` |
913
- | `dark` | `color-scheme: dark;` |
914
- | `normal` | `color-scheme: normal;` |
915
-
916
- #### cursor
917
-
918
- | Value | CSS Output |
919
- |-------|------------|
920
- | `auto` | `cursor: auto;` |
921
- | `default` | `cursor: default;` |
922
- | `pointer` | `cursor: pointer;` |
923
- | `wait` | `cursor: wait;` |
924
- | `text` | `cursor: text;` |
925
- | `move` | `cursor: move;` |
926
- | `not-allowed` | `cursor: not-allowed;` |
927
- | `grab` | `cursor: grab;` |
928
- | `grabbing` | `cursor: grabbing;` |
929
-
930
- #### field-sizing
931
-
932
- | Value | CSS Output |
933
- |-------|------------|
934
- | `fixed` | `field-sizing: fixed;` |
935
- | `content` | `field-sizing: content;` |
936
-
937
- #### fill
938
-
939
- | Value | CSS Output |
940
- |-------|------------|
941
- | `none` | `fill: none;` |
942
- | `current` | `fill: currentColor;` |
943
-
944
- #### filter-blur
945
-
946
- | Value | CSS Output |
947
- |-------|------------|
948
- | `none` | `filter: blur(0);` |
949
- | `tiny` | `filter: blur(2px);` |
950
- | `small` | `filter: blur(4px);` |
951
- | `medium` | `filter: blur(8px);` |
952
- | `big` | `filter: blur(12px);` |
953
- | `giant` | `filter: blur(24px);` |
954
- | `vast` | `filter: blur(48px);` |
955
-
956
- #### filter-brightness
957
-
958
- | Value | CSS Output |
959
- |-------|------------|
960
- | `dim` | `filter: brightness(0.5);` |
961
- | `dark` | `filter: brightness(0.75);` |
962
- | `normal` | `filter: brightness(1);` |
963
- | `bright` | `filter: brightness(1.25);` |
964
- | `vivid` | `filter: brightness(1.5);` |
965
-
966
- #### filter-contrast
967
-
968
- | Value | CSS Output |
969
- |-------|------------|
970
- | `low` | `filter: contrast(0.5);` |
971
- | `reduced` | `filter: contrast(0.75);` |
972
- | `normal` | `filter: contrast(1);` |
973
- | `high` | `filter: contrast(1.25);` |
974
- | `max` | `filter: contrast(1.5);` |
975
-
976
- #### filter-drop-shadow
977
-
978
- | Value | CSS Output |
979
- |-------|------------|
980
- | `none` | `filter: drop-shadow(none);` |
981
- | `tiny` | `filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));` |
982
- | `small` | `filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));` |
983
- | `medium` | `filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07));` |
984
- | `big` | `filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));` |
985
- | `giant` | `filter: drop-shadow(0 20px 13px rgba(0,0,0,0.03));` |
986
-
987
- #### filter-grayscale
988
-
989
- | Value | CSS Output |
990
- |-------|------------|
991
- | `none` | `filter: grayscale(0%);` |
992
- | `partial` | `filter: grayscale(50%);` |
993
- | `full` | `filter: grayscale(100%);` |
994
-
995
- #### filter-hue-rotate
996
-
997
- | Value | CSS Output |
998
- |-------|------------|
999
- | `0` | `filter: hue-rotate(0deg);` |
1000
- | `90` | `filter: hue-rotate(90deg);` |
1001
- | `180` | `filter: hue-rotate(180deg);` |
1002
-
1003
- #### filter-invert
1004
-
1005
- | Value | CSS Output |
1006
- |-------|------------|
1007
- | `none` | `filter: invert(0%);` |
1008
- | `partial` | `filter: invert(50%);` |
1009
- | `full` | `filter: invert(100%);` |
1010
-
1011
- #### filter-saturate
1012
-
1013
- | Value | CSS Output |
1014
- |-------|------------|
1015
- | `none` | `filter: saturate(0);` |
1016
- | `low` | `filter: saturate(0.5);` |
1017
- | `normal` | `filter: saturate(1);` |
1018
- | `high` | `filter: saturate(1.5);` |
1019
- | `vivid` | `filter: saturate(2);` |
1020
-
1021
- #### filter-sepia
1022
-
1023
- | Value | CSS Output |
1024
- |-------|------------|
1025
- | `none` | `filter: sepia(0%);` |
1026
- | `partial` | `filter: sepia(50%);` |
1027
- | `full` | `filter: sepia(100%);` |
1028
-
1029
- #### font-family
1030
-
1031
- | Value | CSS Output |
1032
- |-------|------------|
1033
- | `sans` | `font-family: ui-sans-serif, system-ui, sans-serif;` |
1034
- | `serif` | `font-family: ui-serif, Georgia, serif;` |
1035
- | `mono` | `font-family: ui-monospace, monospace;` |
1036
-
1037
- #### font-smoothing
1038
-
1039
- | Value | CSS Output |
1040
- |-------|------------|
1041
- | `antialiased` | `-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;` |
1042
- | `subpixel-antialiased` | `-webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto;` |
1043
-
1044
- #### font-style
1045
-
1046
- | Value | CSS Output |
1047
- |-------|------------|
1048
- | `italic` | `font-style: italic;` |
1049
- | `not-italic` | `font-style: normal;` |
1050
-
1051
- #### font-variant-numeric
1052
-
1053
- | Value | CSS Output |
1054
- |-------|------------|
1055
- | `normal-nums` | `font-variant-numeric: normal;` |
1056
- | `ordinal` | `font-variant-numeric: ordinal;` |
1057
- | `slashed-zero` | `font-variant-numeric: slashed-zero;` |
1058
- | `lining-nums` | `font-variant-numeric: lining-nums;` |
1059
- | `oldstyle-nums` | `font-variant-numeric: oldstyle-nums;` |
1060
- | `proportional-nums` | `font-variant-numeric: proportional-nums;` |
1061
- | `tabular-nums` | `font-variant-numeric: tabular-nums;` |
1062
-
1063
- #### font-weight
1064
-
1065
- | Value | CSS Output |
1066
- |-------|------------|
1067
- | `normal` | `font-weight: var(--fw-normal);` |
1068
- | `medium` | `font-weight: var(--fw-medium);` |
1069
- | `bold` | `font-weight: var(--fw-bold);` |
1070
-
1071
- #### forced-color-adjust
1072
-
1073
- | Value | CSS Output |
1074
- |-------|------------|
1075
- | `auto` | `forced-color-adjust: auto;` |
1076
- | `none` | `forced-color-adjust: none;` |
1077
-
1078
- #### hyphens
1079
-
1080
- | Value | CSS Output |
1081
- |-------|------------|
1082
- | `none` | `hyphens: none;` |
1083
- | `manual` | `hyphens: manual;` |
1084
- | `auto` | `hyphens: auto;` |
1085
-
1086
- #### letter-spacing
1087
-
1088
- | Value | CSS Output |
1089
- |-------|------------|
1090
- | `tighter` | `letter-spacing: -0.05em;` |
1091
- | `tight` | `letter-spacing: -0.025em;` |
1092
- | `normal` | `letter-spacing: 0;` |
1093
- | `wide` | `letter-spacing: 0.025em;` |
1094
- | `wider` | `letter-spacing: 0.05em;` |
1095
- | `widest` | `letter-spacing: 0.1em;` |
1096
-
1097
- #### line-clamp
1098
-
1099
- | Value | CSS Output |
1100
- |-------|------------|
1101
- | `1` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;` |
1102
- | `2` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;` |
1103
- | `3` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;` |
1104
- | `none` | `overflow: visible; display: block; -webkit-box-orient: horizontal; -webkit-line-clamp: none;` |
1105
-
1106
- #### line-height
1107
-
1108
- | Value | CSS Output |
1109
- |-------|------------|
1110
- | `none` | `line-height: 1;` |
1111
- | `tight` | `line-height: 1.25;` |
1112
- | `snug` | `line-height: 1.375;` |
1113
- | `normal` | `line-height: 1.5;` |
1114
- | `relaxed` | `line-height: 1.625;` |
1115
- | `loose` | `line-height: 2;` |
1116
-
1117
- #### list-style
1118
-
1119
- | Value | CSS Output |
1120
- |-------|------------|
1121
- | `none` | `list-style-type: none;` |
1122
- | `disc` | `list-style-type: disc;` |
1123
- | `decimal` | `list-style-type: decimal;` |
1124
- | `square` | `list-style-type: square;` |
1125
- | `inside` | `list-style-position: inside;` |
1126
- | `outside` | `list-style-position: outside;` |
1127
-
1128
- #### mask
1129
-
1130
- | Value | CSS Output |
1131
- |-------|------------|
1132
- | `none` | `mask-image: none;` |
1133
- | `fade-y` | `mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);` |
1134
- | `fade-x` | `mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);` |
1135
-
1136
- #### opacity
1137
-
1138
- | Value | CSS Output |
1139
- |-------|------------|
1140
- | `0` | `opacity: 0;` |
1141
- | `25` | `opacity: 0.25;` |
1142
- | `50` | `opacity: 0.5;` |
1143
- | `75` | `opacity: 0.75;` |
1144
- | `100` | `opacity: 1;` |
1145
-
1146
- #### pointer-events
1147
-
1148
- | Value | CSS Output |
1149
- |-------|------------|
1150
- | `none` | `pointer-events: none;` |
1151
- | `auto` | `pointer-events: auto;` |
1152
-
1153
- #### resize
1154
-
1155
- | Value | CSS Output |
1156
- |-------|------------|
1157
- | `none` | `resize: none;` |
1158
- | `both` | `resize: both;` |
1159
- | `x` | `resize: horizontal;` |
1160
- | `y` | `resize: vertical;` |
1161
-
1162
- #### scroll-behavior
1163
-
1164
- | Value | CSS Output |
1165
- |-------|------------|
1166
- | `auto` | `scroll-behavior: auto;` |
1167
- | `smooth` | `scroll-behavior: smooth;` |
1168
-
1169
- #### scroll-margin
1170
-
1171
- | Value | CSS Output |
1172
- |-------|------------|
1173
- | `scroll-m` | `scroll-margin: {value};` |
1174
- | `scroll-m-t` | `scroll-margin-top: {value};` |
1175
- | `scroll-m-r` | `scroll-margin-right: {value};` |
1176
- | `scroll-m-b` | `scroll-margin-bottom: {value};` |
1177
- | `scroll-m-l` | `scroll-margin-left: {value};` |
1178
-
1179
- #### scroll-padding
1180
-
1181
- | Value | CSS Output |
1182
- |-------|------------|
1183
- | `scroll-p` | `scroll-padding: {value};` |
1184
- | `scroll-p-t` | `scroll-padding-top: {value};` |
1185
- | `scroll-p-r` | `scroll-padding-right: {value};` |
1186
- | `scroll-p-b` | `scroll-padding-bottom: {value};` |
1187
- | `scroll-p-l` | `scroll-padding-left: {value};` |
1188
-
1189
- #### scroll-snap-align
1190
-
1191
- | Value | CSS Output |
1192
- |-------|------------|
1193
- | `start` | `scroll-snap-align: start;` |
1194
- | `end` | `scroll-snap-align: end;` |
1195
- | `center` | `scroll-snap-align: center;` |
1196
- | `none` | `scroll-snap-align: none;` |
1197
-
1198
- #### scroll-snap-stop
1199
-
1200
- | Value | CSS Output |
1201
- |-------|------------|
1202
- | `normal` | `scroll-snap-stop: normal;` |
1203
- | `always` | `scroll-snap-stop: always;` |
1204
-
1205
- #### scroll-snap-type
1206
-
1207
- | Value | CSS Output |
1208
- |-------|------------|
1209
- | `none` | `scroll-snap-type: none;` |
1210
- | `x` | `scroll-snap-type: x mandatory;` |
1211
- | `y` | `scroll-snap-type: y mandatory;` |
1212
- | `both` | `scroll-snap-type: both mandatory;` |
1213
- | `x-proximity` | `scroll-snap-type: x proximity;` |
1214
- | `y-proximity` | `scroll-snap-type: y proximity;` |
1215
-
1216
- #### state-prefixes
1217
-
1218
- | Value | CSS Output |
1219
- |-------|------------|
1220
- | `hover:` | `:hover` |
1221
- | `focus:` | `:focus` |
1222
- | `active:` | `:active` |
1223
- | `disabled:` | `:disabled` |
1224
- | `visited:` | `:visited` |
1225
- | `first:` | `:first-child` |
1226
- | `last:` | `:last-child` |
1227
- | `odd:` | `:nth-child(odd)` |
1228
- | `even:` | `:nth-child(even)` |
1229
-
1230
- #### stroke
1231
-
1232
- | Value | CSS Output |
1233
- |-------|------------|
1234
- | `none` | `stroke: none;` |
1235
- | `current` | `stroke: currentColor;` |
1236
-
1237
- #### stroke-width
1238
-
1239
- | Value | CSS Output |
1240
- |-------|------------|
1241
- | `0` | `stroke-width: 0;` |
1242
- | `1` | `stroke-width: 1px;` |
1243
- | `2` | `stroke-width: 2px;` |
1244
-
1245
- #### text-alignment
1246
-
1247
- | Value | CSS Output |
1248
- |-------|------------|
1249
- | `left` | `text-align: left;` |
1250
- | `center` | `text-align: center;` |
1251
- | `right` | `text-align: right;` |
1252
- | `justify` | `text-align: justify;` |
1253
-
1254
- #### text-color
1255
-
1256
- | Value | CSS Output |
1257
- |-------|------------|
1258
- | `left` | `text-align: left;` |
1259
- | `center` | `text-align: center;` |
1260
- | `right` | `text-align: right;` |
1261
- | `justify` | `text-align: justify;` |
1262
-
1263
- #### text-decoration
1264
-
1265
- | Value | CSS Output |
1266
- |-------|------------|
1267
- | `underline` | `text-decoration-line: underline;` |
1268
- | `overline` | `text-decoration-line: overline;` |
1269
- | `line-through` | `text-decoration-line: line-through;` |
1270
- | `no-underline` | `text-decoration-line: none;` |
1271
-
1272
- #### text-indent
1273
-
1274
- | Value | CSS Output |
1275
- |-------|------------|
1276
- | `0` | `text-indent: 0;` |
1277
-
1278
- #### text-overflow
1279
-
1280
- | Value | CSS Output |
1281
- |-------|------------|
1282
- | `truncate` | `overflow: hidden; text-overflow: ellipsis; white-space: nowrap;` |
1283
- | `text-ellipsis` | `text-overflow: ellipsis;` |
1284
- | `text-clip` | `text-overflow: clip;` |
1285
-
1286
- #### text-shadow
1287
-
1288
- | Value | CSS Output |
1289
- |-------|------------|
1290
- | `none` | `text-shadow: none;` |
1291
- | `small` | `text-shadow: 0 1px 2px rgba(0,0,0,0.1);` |
1292
- | `medium` | `text-shadow: 0 2px 4px rgba(0,0,0,0.1);` |
1293
- | `big` | `text-shadow: 0 4px 8px rgba(0,0,0,0.1);` |
1294
-
1295
- #### text-transform
1296
-
1297
- | Value | CSS Output |
1298
- |-------|------------|
1299
- | `uppercase` | `text-transform: uppercase;` |
1300
- | `lowercase` | `text-transform: lowercase;` |
1301
- | `capitalize` | `text-transform: capitalize;` |
1302
- | `normal-case` | `text-transform: none;` |
1303
-
1304
- #### text-wrap
1305
-
1306
- | Value | CSS Output |
1307
- |-------|------------|
1308
- | `text-wrap` | `text-wrap: wrap;` |
1309
- | `text-nowrap` | `text-wrap: nowrap;` |
1310
- | `text-balance` | `text-wrap: balance;` |
1311
- | `text-pretty` | `text-wrap: pretty;` |
1312
-
1313
- #### touch-action
1314
-
1315
- | Value | CSS Output |
1316
- |-------|------------|
1317
- | `auto` | `touch-action: auto;` |
1318
- | `none` | `touch-action: none;` |
1319
- | `pan-x` | `touch-action: pan-x;` |
1320
- | `pan-y` | `touch-action: pan-y;` |
1321
- | `pan-left` | `touch-action: pan-left;` |
1322
- | `pan-right` | `touch-action: pan-right;` |
1323
- | `pinch-zoom` | `touch-action: pinch-zoom;` |
1324
- | `manipulation` | `touch-action: manipulation;` |
1325
-
1326
- #### transform-backface
1327
-
1328
- | Value | CSS Output |
1329
- |-------|------------|
1330
- | `visible` | `backface-visibility: visible;` |
1331
- | `hidden` | `backface-visibility: hidden;` |
1332
-
1333
- #### transform-origin
1334
-
1335
- | Value | CSS Output |
1336
- |-------|------------|
1337
- | `center` | `transform-origin: center;` |
1338
- | `top` | `transform-origin: top;` |
1339
- | `top-right` | `transform-origin: top right;` |
1340
- | `right` | `transform-origin: right;` |
1341
- | `bottom-right` | `transform-origin: bottom right;` |
1342
- | `bottom` | `transform-origin: bottom;` |
1343
- | `bottom-left` | `transform-origin: bottom left;` |
1344
- | `left` | `transform-origin: left;` |
1345
- | `top-left` | `transform-origin: top left;` |
1346
-
1347
- #### transform-perspective
1348
-
1349
- | Value | CSS Output |
1350
- |-------|------------|
1351
- | `none` | `perspective: none;` |
1352
- | `dramatic` | `perspective: 100px;` |
1353
- | `near` | `perspective: 300px;` |
1354
- | `normal` | `perspective: 500px;` |
1355
- | `midrange` | `perspective: 800px;` |
1356
- | `far` | `perspective: 1000px;` |
1357
- | `distant` | `perspective: 1200px;` |
1358
-
1359
- #### transform-perspective-origin
1360
-
1361
- | Value | CSS Output |
1362
- |-------|------------|
1363
- | `center` | `perspective-origin: center;` |
1364
- | `top` | `perspective-origin: top;` |
1365
- | `bottom` | `perspective-origin: bottom;` |
1366
- | `left` | `perspective-origin: left;` |
1367
- | `right` | `perspective-origin: right;` |
1368
- | `top-left` | `perspective-origin: top left;` |
1369
- | `top-right` | `perspective-origin: top right;` |
1370
- | `bottom-left` | `perspective-origin: bottom left;` |
1371
- | `bottom-right` | `perspective-origin: bottom right;` |
1372
-
1373
- #### transform-rotate
1374
-
1375
- | Value | CSS Output |
1376
- |-------|------------|
1377
- | `0` | `transform: rotate(0deg);` |
1378
- | `45` | `transform: rotate(45deg);` |
1379
- | `90` | `transform: rotate(90deg);` |
1380
- | `180` | `transform: rotate(180deg);` |
1381
-
1382
- #### transform-rotate-3d
1383
-
1384
- | Value | CSS Output |
1385
- |-------|------------|
1386
- | `0` | `transform: rotateX(0deg);` |
1387
- | `45` | `transform: rotateX(45deg);` |
1388
- | `90` | `transform: rotateX(90deg);` |
1389
- | `180` | `transform: rotateX(180deg);` |
1390
-
1391
- #### transform-scale
1392
-
1393
- | Value | CSS Output |
1394
- |-------|------------|
1395
- | `0` | `transform: scale(0);` |
1396
- | `50` | `transform: scale(0.5);` |
1397
- | `75` | `transform: scale(0.75);` |
1398
- | `100` | `transform: scale(1);` |
1399
- | `110` | `transform: scale(1.1);` |
1400
- | `125` | `transform: scale(1.25);` |
1401
- | `150` | `transform: scale(1.5);` |
1402
-
1403
- #### transform-skew
1404
-
1405
- | Value | CSS Output |
1406
- |-------|------------|
1407
- | `0` | `transform: skewX(0deg);` |
1408
- | `3` | `transform: skewX(3deg);` |
1409
- | `6` | `transform: skewX(6deg);` |
1410
- | `12` | `transform: skewX(12deg);` |
1411
-
1412
- #### transform-style
1413
-
1414
- | Value | CSS Output |
1415
- |-------|------------|
1416
- | `flat` | `transform-style: flat;` |
1417
- | `preserve-3d` | `transform-style: preserve-3d;` |
1418
-
1419
- #### transform-translate
1420
-
1421
- | Value | CSS Output |
1422
- |-------|------------|
1423
- | `0` | `transform: translateX(0);` |
1424
- | `tiny` | `transform: translateX(var(--sp-tiny));` |
1425
- | `small` | `transform: translateX(var(--sp-small));` |
1426
- | `medium` | `transform: translateX(var(--sp-medium));` |
1427
- | `big` | `transform: translateX(var(--sp-big));` |
1428
- | `full` | `transform: translateX(100%);` |
1429
- | `1/2` | `transform: translateX(50%);` |
1430
- | `-full` | `transform: translateX(-100%);` |
1431
- | `-1/2` | `transform: translateX(-50%);` |
1432
-
1433
- #### transform-translate-z
1434
-
1435
- | Value | CSS Output |
1436
- |-------|------------|
1437
- | `0` | `transform: translateZ(0);` |
1438
- | `near` | `transform: translateZ(50px);` |
1439
- | `far` | `transform: translateZ(-50px);` |
1440
-
1441
- #### transition-delay
1442
-
1443
- | Value | CSS Output |
1444
- |-------|------------|
1445
- | `instant` | `transition-delay: 75ms;` |
1446
- | `quick` | `transition-delay: 100ms;` |
1447
- | `fast` | `transition-delay: 150ms;` |
1448
- | `normal` | `transition-delay: 200ms;` |
1449
- | `slow` | `transition-delay: 300ms;` |
1450
-
1451
- #### transition-duration
1452
-
1453
- | Value | CSS Output |
1454
- |-------|------------|
1455
- | `instant` | `transition-duration: 75ms;` |
1456
- | `quick` | `transition-duration: 100ms;` |
1457
- | `fast` | `transition-duration: 150ms;` |
1458
- | `normal` | `transition-duration: 200ms;` |
1459
- | `slow` | `transition-duration: 300ms;` |
1460
- | `slower` | `transition-duration: 500ms;` |
1461
- | `lazy` | `transition-duration: 700ms;` |
1462
-
1463
- #### transition-property
1464
-
1465
- | Value | CSS Output |
1466
- |-------|------------|
1467
- | `none` | `transition-property: none;` |
1468
- | `all` | `transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1469
- | `colors` | `transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1470
- | `opacity` | `transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1471
- | `shadow` | `transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1472
- | `transform` | `transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1473
-
1474
- #### transition-timing
1475
-
1476
- | Value | CSS Output |
1477
- |-------|------------|
1478
- | `linear` | `transition-timing-function: linear;` |
1479
- | `in` | `transition-timing-function: cubic-bezier(0.4, 0, 1, 1);` |
1480
- | `out` | `transition-timing-function: cubic-bezier(0, 0, 0.2, 1);` |
1481
- | `in-out` | `transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);` |
1482
-
1483
- #### typography-keywords
1484
-
1485
- | Value | CSS Output |
1486
- |-------|------------|
1487
- | `italic` | `font-style: italic;` |
1488
- | `not-italic` | `font-style: normal;` |
1489
- | `antialiased` | `-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;` |
1490
- | `subpixel-antialiased` | `-webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto;` |
1491
- | `uppercase` | `text-transform: uppercase;` |
1492
- | `lowercase` | `text-transform: lowercase;` |
1493
- | `capitalize` | `text-transform: capitalize;` |
1494
- | `normal-case` | `text-transform: none;` |
1495
- | `underline` | `text-decoration-line: underline;` |
1496
- | `overline` | `text-decoration-line: overline;` |
1497
- | `line-through` | `text-decoration-line: line-through;` |
1498
- | `no-underline` | `text-decoration-line: none;` |
1499
- | `decoration-solid` | `text-decoration-style: solid;` |
1500
- | `decoration-double` | `text-decoration-style: double;` |
1501
- | `decoration-dotted` | `text-decoration-style: dotted;` |
1502
- | `decoration-dashed` | `text-decoration-style: dashed;` |
1503
- | `decoration-wavy` | `text-decoration-style: wavy;` |
1504
- | `truncate` | `overflow: hidden; text-overflow: ellipsis; white-space: nowrap;` |
1505
- | `text-ellipsis` | `text-overflow: ellipsis;` |
1506
- | `text-clip` | `text-overflow: clip;` |
1507
- | `text-wrap` | `text-wrap: wrap;` |
1508
- | `text-nowrap` | `text-wrap: nowrap;` |
1509
- | `text-balance` | `text-wrap: balance;` |
1510
- | `text-pretty` | `text-wrap: pretty;` |
1511
- | `whitespace-normal` | `white-space: normal;` |
1512
- | `whitespace-nowrap` | `white-space: nowrap;` |
1513
- | `whitespace-pre` | `white-space: pre;` |
1514
- | `whitespace-pre-line` | `white-space: pre-line;` |
1515
- | `whitespace-pre-wrap` | `white-space: pre-wrap;` |
1516
- | `whitespace-break-spaces` | `white-space: break-spaces;` |
1517
- | `break-normal` | `overflow-wrap: normal; word-break: normal;` |
1518
- | `break-words` | `overflow-wrap: break-word;` |
1519
- | `break-all` | `word-break: break-all;` |
1520
- | `break-keep` | `word-break: keep-all;` |
1521
- | `hyphens-none` | `hyphens: none;` |
1522
- | `hyphens-manual` | `hyphens: manual;` |
1523
- | `hyphens-auto` | `hyphens: auto;` |
1524
- | `align-baseline` | `vertical-align: baseline;` |
1525
- | `align-top` | `vertical-align: top;` |
1526
- | `align-middle` | `vertical-align: middle;` |
1527
- | `align-bottom` | `vertical-align: bottom;` |
1528
- | `align-text-top` | `vertical-align: text-top;` |
1529
- | `align-text-bottom` | `vertical-align: text-bottom;` |
1530
- | `align-sub` | `vertical-align: sub;` |
1531
- | `align-super` | `vertical-align: super;` |
1532
- | `list-none` | `list-style-type: none;` |
1533
- | `list-disc` | `list-style-type: disc;` |
1534
- | `list-decimal` | `list-style-type: decimal;` |
1535
- | `list-square` | `list-style-type: square;` |
1536
- | `list-inside` | `list-style-position: inside;` |
1537
- | `list-outside` | `list-style-position: outside;` |
1538
-
1539
- #### user-select
1540
-
1541
- | Value | CSS Output |
1542
- |-------|------------|
1543
- | `none` | `user-select: none;` |
1544
- | `text` | `user-select: text;` |
1545
- | `all` | `user-select: all;` |
1546
- | `auto` | `user-select: auto;` |
1547
-
1548
- #### vertical-align
1549
-
1550
- | Value | CSS Output |
1551
- |-------|------------|
1552
- | `baseline` | `vertical-align: baseline;` |
1553
- | `top` | `vertical-align: top;` |
1554
- | `middle` | `vertical-align: middle;` |
1555
- | `bottom` | `vertical-align: bottom;` |
1556
- | `text-top` | `vertical-align: text-top;` |
1557
- | `text-bottom` | `vertical-align: text-bottom;` |
1558
- | `sub` | `vertical-align: sub;` |
1559
- | `super` | `vertical-align: super;` |
1560
-
1561
- #### whitespace
1562
-
1563
- | Value | CSS Output |
1564
- |-------|------------|
1565
- | `normal` | `white-space: normal;` |
1566
- | `nowrap` | `white-space: nowrap;` |
1567
- | `pre` | `white-space: pre;` |
1568
- | `pre-line` | `white-space: pre-line;` |
1569
- | `pre-wrap` | `white-space: pre-wrap;` |
1570
- | `break-spaces` | `white-space: break-spaces;` |
1571
-
1572
- #### will-change
1573
-
1574
- | Value | CSS Output |
1575
- |-------|------------|
1576
- | `auto` | `will-change: auto;` |
1577
- | `scroll` | `will-change: scroll-position;` |
1578
- | `contents` | `will-change: contents;` |
1579
- | `transform` | `will-change: transform;` |
1580
- | `opacity` | `will-change: opacity;` |
1581
-
1582
- #### word-break
1583
-
1584
- | Value | CSS Output |
1585
- |-------|------------|
1586
- | `break-normal` | `overflow-wrap: normal; word-break: normal;` |
1587
- | `break-words` | `overflow-wrap: break-word;` |
1588
- | `break-all` | `word-break: break-all;` |
1589
- | `break-keep` | `word-break: keep-all;` |
1590
-
1
+ # SenangStart CSS - Syntax Reference
2
+
3
+ > Auto-generated on 2026-02-06
4
+ > Total definitions: 162
5
+
6
+ This document provides a complete reference of all utility syntax patterns in SenangStart CSS.
7
+
8
+ ---
9
+
10
+ ## Summary
11
+
12
+ | Category | Count |
13
+ |----------|-------|
14
+ | Layout | 41 |
15
+ | Space | 5 |
16
+ | Visual | 116 |
17
+ | **Total** | **162** |
18
+
19
+ ---
20
+
21
+ ## Layout Utilities
22
+
23
+ | Name | Syntax | Description |
24
+ |------|--------|-------------|
25
+ | align-content | `content:[value]` | Align content rows in multi-line flex container |
26
+ | align-items | `items:[value]` | Align items along the cross axis |
27
+ | align-self | `self:[value]` | Override alignment for a single item |
28
+ | aspect-ratio | `aspect:[value]` | Set element aspect ratio |
29
+ | border-collapse | `border:[value]` | Control table border collapse |
30
+ | border-spacing | `border-spacing:[value]` | Control spacing between table borders |
31
+ | box-sizing | `box:[value]` | Control how width and height are calculated |
32
+ | caption-side | `caption:[value]` | Control table caption position |
33
+ | columns | `cols:[value]` | Create multi-column layouts |
34
+ | container | `container` | Create a centered container with max-width |
35
+ | display | `[display-value]` | Control the display type of elements |
36
+ | flex | `flex:[value]` | Flex shorthand property |
37
+ | flex-basis | `basis:[value]` | Set initial size of flex item |
38
+ | flex-direction | `[direction]` | Set the direction of flex items |
39
+ | flex-items | `[flex-item-value]` | Control flex grow and shrink behavior |
40
+ | flex-wrap | `[wrap-value]` | Control how flex items wrap |
41
+ | float-clear | `float:[value]` or `clear:[value]` | Control element floating and clearing |
42
+ | grid-auto-flow | `grid-flow:[value]` | Control how auto-placed items flow in grid |
43
+ | grid-auto-sizing | `auto-cols:[value]` or `auto-rows:[value]` | Control size of auto-generated grid tracks |
44
+ | grid-column-span | `col-span:[value]` | Span across grid columns |
45
+ | grid-columns | `grid-cols:[value]` | Define grid template columns |
46
+ | grid-row-span | `row-span:[value]` | Span across grid rows |
47
+ | grid-rows | `grid-rows:[value]` | Define grid template rows |
48
+ | inset | `inset:[value]` or `top:[value]` | Control positioning offsets |
49
+ | isolation | `isolation:[value]` | Create new stacking context |
50
+ | justify-content | `justify:[value]` | Align items along the main axis |
51
+ | justify-items | `justify-items:[value]` | Align grid items on inline axis |
52
+ | justify-self | `justify-self:[value]` | Align single grid item on inline axis |
53
+ | object-fit | `object:[value]` | Control how media content fits its container |
54
+ | object-position | `object-pos:[value]` | Position replaced element content within container |
55
+ | order | `order:[value]` | Control flex/grid item order |
56
+ | overflow | `overflow:[value]` | Control content overflow behavior |
57
+ | overscroll | `overscroll:[value]` | Control scroll chaining behavior |
58
+ | place-content | `place-content:[value]` | Shorthand for align-content and justify-content |
59
+ | place-items | `place-items:[value]` | Shorthand for align-items and justify-items |
60
+ | place-self | `place-self:[value]` | Shorthand for align-self and justify-self |
61
+ | position | `[position-value]` | Set the positioning method |
62
+ | shorthand-alignment | `[alignment]` | Quick alignment shortcuts |
63
+ | table-layout | `table:[value]` | Control table layout algorithm |
64
+ | visibility | `[visibility-value]` | Control element visibility |
65
+ | z-index | `z:[value]` | Control stacking order |
66
+
67
+ ---
68
+
69
+ ## Space Utilities
70
+
71
+ | Name | Syntax | Description |
72
+ |------|--------|-------------|
73
+ | gap | `g:[value]` or `g-{axis}:[value]` | Add gap between flex/grid items |
74
+ | height | `h:[value]` | Set element height |
75
+ | margin | `m:[value]` or `m-{side}:[value]` | Add margin to elements |
76
+ | padding | `p:[value]` or `p-{side}:[value]` | Add padding to elements |
77
+ | width | `w:[value]` | Set element width |
78
+
79
+ ---
80
+
81
+ ## Visual Utilities
82
+
83
+ | Name | Syntax | Description |
84
+ |------|--------|-------------|
85
+ | accent-color | `accent:[color]` | Set accent color for form controls |
86
+ | animation-builtin | `animate:[value]` | Apply built-in animations |
87
+ | animation-delay | `animation-delay:[value]` | Set animation delay |
88
+ | animation-direction | `animation-direction:[value]` | Set animation direction |
89
+ | animation-duration | `animation-duration:[value]` | Set animation duration |
90
+ | animation-fill | `animation-fill:[value]` | Set animation fill mode |
91
+ | animation-iteration | `animation-iteration:[value]` | Set animation iteration count |
92
+ | animation-play | `animation-play:[value]` | Control animation play state |
93
+ | appearance | `appearance:[value]` | Control native appearance |
94
+ | backdrop-blur | `backdrop-blur:[value]` | Blur backdrop |
95
+ | backdrop-brightness | `backdrop-brightness:[value]` | Adjust backdrop brightness |
96
+ | backdrop-contrast | `backdrop-contrast:[value]` | Adjust backdrop contrast |
97
+ | backdrop-grayscale | `backdrop-grayscale:[value]` | Apply grayscale to backdrop |
98
+ | backdrop-hue-rotate | `backdrop-hue-rotate:[degrees]` | Rotate backdrop hue |
99
+ | backdrop-invert | `backdrop-invert:[value]` | Invert backdrop colors |
100
+ | backdrop-opacity | `backdrop-opacity:[value]` | Set backdrop opacity |
101
+ | backdrop-saturate | `backdrop-saturate:[value]` | Adjust backdrop saturation |
102
+ | backdrop-sepia | `backdrop-sepia:[value]` | Apply sepia to backdrop |
103
+ | background-attachment | `bg-attachment:[value]` | Set background attachment behavior |
104
+ | background-blend-mode | `bg-blend:[value]` | Set background blend mode |
105
+ | background-clip | `bg-clip:[value]` | Set background clipping area |
106
+ | background-color | `bg:[color]` | Set background color |
107
+ | background-image | `bg-image:[value]` | Set background image or gradient |
108
+ | background-origin | `bg-origin:[value]` | Set background positioning origin |
109
+ | background-position | `bg-pos:[value]` | Set background position |
110
+ | background-repeat | `bg-repeat:[value]` | Set background repeat behavior |
111
+ | background-size | `bg-size:[value]` | Set background size |
112
+ | blend-modes | `mix-blend:[value]` | Set mix blend mode |
113
+ | border | `border:[color]` | `border-{t|b|l|r|x|y}:[color]` | Set border color for all sides or specific sides |
114
+ | border-radius | `rounded:[value]` | Set border radius |
115
+ | border-style | `border-style:[value]` | Set border style |
116
+ | border-width | `border-w:[value]` | `border-{t|b|l|r|x|y}-w:[value]` | Set border width for all sides or specific sides |
117
+ | box-shadow | `shadow:[value]` | Add box shadow |
118
+ | caret-color | `caret:[color]` | Set text input caret color |
119
+ | color-scheme | `color-scheme:[value]` | Set preferred color scheme |
120
+ | contain | `contain:[value]` | Isolate element rendering for performance |
121
+ | content-visibility | `content-visibility:[value]` | Optimize rendering by skipping off-screen content |
122
+ | cursor | `cursor:[value]` | Set cursor style |
123
+ | divide | `divide:[color]` | `divide-{x|y}:[color]` | `divide-{x|y}:reverse` | Add borders between child elements |
124
+ | divide-reverse | `divide-{x|y}:reverse` | Reverse border side for flex-reverse |
125
+ | divide-style | `divide-style:[value]` | Set divider style |
126
+ | divide-width | `divide-w:[value]` | `divide-{x|y}-w:[value]` | Set divider width |
127
+ | field-sizing | `field-sizing:[value]` | Control form field sizing |
128
+ | fill | `fill:[color]` | Set SVG fill color |
129
+ | filter-blur | `blur:[value]` | Apply blur filter |
130
+ | filter-brightness | `brightness:[value]` | Adjust brightness |
131
+ | filter-contrast | `contrast:[value]` | Adjust contrast |
132
+ | filter-drop-shadow | `drop-shadow:[value]` | Add drop shadow |
133
+ | filter-grayscale | `grayscale:[value]` | Apply grayscale filter |
134
+ | filter-hue-rotate | `hue-rotate:[degrees]` | Rotate hue colors |
135
+ | filter-invert | `invert:[value]` | Invert colors |
136
+ | filter-saturate | `saturate:[value]` | Adjust saturation |
137
+ | filter-sepia | `sepia:[value]` | Apply sepia filter |
138
+ | font-family | `font:[family]` | Set font family |
139
+ | font-smoothing | `[smoothing-value]` | Control font smoothing |
140
+ | font-style | `[style-value]` | Set font style |
141
+ | font-variant-numeric | `[variant-value]` | Control numeric font variants |
142
+ | font-weight | `font:[weight]` | Set font weight |
143
+ | forced-color-adjust | `forced-color:[value]` | Control forced colors mode behavior |
144
+ | gradient-from | `from:[color]` | Set gradient start color |
145
+ | gradient-to | `to:[color]` | Set gradient end color |
146
+ | gradient-via | `via:[color]` | Set gradient middle color |
147
+ | hyphens | `hyphens:[value]` | Control hyphenation |
148
+ | letter-spacing | `tracking:[value]` | Set letter spacing |
149
+ | line-clamp | `line-clamp:[value]` | Limit text to specific lines |
150
+ | line-height | `leading:[value]` | Set line height |
151
+ | list-style | `list:[value]` | Set list style |
152
+ | mask | `mask:[value]` | Apply mask to element |
153
+ | opacity | `opacity:[value]` | Set element opacity (0-100) |
154
+ | outline | `outline:[color]` | Set outline color |
155
+ | pointer-events | `pointer-events:[value]` | Control pointer events |
156
+ | resize | `resize:[value]` | Control element resizing |
157
+ | ring | `ring:[size]` | Add focus ring around element using box-shadow |
158
+ | ring-color | `ring-color:[color]` | Set ring color |
159
+ | ring-offset | `ring-offset:[size]` | Add gap between ring and element |
160
+ | scroll-behavior | `scroll-behavior:[value]` | Set scroll behavior |
161
+ | scroll-margin | `scroll-m:[value]` | Set scroll margin for snap |
162
+ | scroll-padding | `scroll-p:[value]` | Set scroll padding for snap |
163
+ | scroll-snap-align | `snap-align:[value]` | Set scroll snap alignment |
164
+ | scroll-snap-stop | `snap-stop:[value]` | Control scroll snap stop behavior |
165
+ | scroll-snap-type | `snap-type:[value]` | Set scroll snap type |
166
+ | state-prefixes | `hover:... focus:... active:...` | Apply styles on specific states |
167
+ | stroke | `stroke:[color]` | Set SVG stroke color |
168
+ | stroke-width | `stroke-w:[value]` | Set SVG stroke width |
169
+ | text-alignment | `text:[alignment]` | Set text alignment |
170
+ | text-color | `text:[color]` | Set text color |
171
+ | text-decoration | `[decoration-value]` | Set text decoration |
172
+ | text-indent | `indent:[value]` | Set text indentation |
173
+ | text-overflow | `[overflow-value]` | Handle text overflow |
174
+ | text-shadow | `text-shadow:[value]` | Add text shadow |
175
+ | text-size | `text-size:[value]` | Set font size |
176
+ | text-transform | `[transform-value]` | Transform text case |
177
+ | text-wrap | `[wrap-value]` | Control text wrapping |
178
+ | touch-action | `touch:[value]` | Control touch interactions |
179
+ | transform-backface | `backface:[value]` | Control visibility of element back side when rotated in 3D |
180
+ | transform-origin | `origin:[value]` | Set transform origin point |
181
+ | transform-perspective | `perspective:[value]` | Set 3D perspective on container (apply to parent of transformed elements) |
182
+ | transform-perspective-origin | `perspective-origin:[value]` | Set perspective vanishing point location |
183
+ | transform-rotate | `rotate:[degrees]` | Rotate element |
184
+ | transform-rotate-3d | `rotate-x:[degrees]` or `rotate-y:[degrees]` or `rotate-z:[degrees]` | Rotate element in 3D space along X, Y, or Z axis |
185
+ | transform-scale | `scale:[value]` | Scale element |
186
+ | transform-skew | `skew-x:[degrees]` or `skew-y:[degrees]` | Skew element |
187
+ | transform-style | `transform-style:[value]` | Preserve 3D space for nested transformed elements |
188
+ | transform-translate | `translate-x:[value]` or `translate-y:[value]` or `translate-z:[value]` | Translate element position along X, Y, or Z axis |
189
+ | transform-translate-z | `translate-z:[value]` | Translate element along Z axis (depth) in 3D space |
190
+ | transition-delay | `delay:[value]` | Set transition delay |
191
+ | transition-duration | `duration:[value]` | Set transition duration |
192
+ | transition-property | `transition:[value]` | Set transition properties |
193
+ | transition-timing | `ease:[value]` | Set transition timing function |
194
+ | typography-keywords | `[keyword]` | Typography utility keywords |
195
+ | user-select | `select:[value]` | Control text selection |
196
+ | vertical-align | `align:[value]` | Set vertical alignment |
197
+ | whitespace | `whitespace:[value]` | Control whitespace handling |
198
+ | will-change | `will-change:[value]` | Hint browser about upcoming changes |
199
+ | word-break | `[break-value]` | Control word breaking |
200
+ | writing-mode | `writing-mode:[value]` | Set writing direction for RTL/vertical text |
201
+
202
+ ---
203
+
204
+ ## Detailed Values
205
+
206
+ ### Layout Values
207
+
208
+ #### align-content
209
+
210
+ | Value | CSS Output |
211
+ |-------|------------|
212
+ | `start` | `align-content: flex-start;` |
213
+ | `end` | `align-content: flex-end;` |
214
+ | `center` | `align-content: center;` |
215
+ | `between` | `align-content: space-between;` |
216
+ | `around` | `align-content: space-around;` |
217
+ | `evenly` | `align-content: space-evenly;` |
218
+ | `stretch` | `align-content: stretch;` |
219
+
220
+ #### align-items
221
+
222
+ | Value | CSS Output |
223
+ |-------|------------|
224
+ | `start` | `align-items: flex-start;` |
225
+ | `end` | `align-items: flex-end;` |
226
+ | `center` | `align-items: center;` |
227
+ | `baseline` | `align-items: baseline;` |
228
+ | `stretch` | `align-items: stretch;` |
229
+
230
+ #### align-self
231
+
232
+ | Value | CSS Output |
233
+ |-------|------------|
234
+ | `auto` | `align-self: auto;` |
235
+ | `start` | `align-self: flex-start;` |
236
+ | `end` | `align-self: flex-end;` |
237
+ | `center` | `align-self: center;` |
238
+ | `baseline` | `align-self: baseline;` |
239
+ | `stretch` | `align-self: stretch;` |
240
+
241
+ #### aspect-ratio
242
+
243
+ | Value | CSS Output |
244
+ |-------|------------|
245
+ | `auto` | `aspect-ratio: auto;` |
246
+ | `square` | `aspect-ratio: 1 / 1;` |
247
+ | `video` | `aspect-ratio: 16 / 9;` |
248
+
249
+ #### border-collapse
250
+
251
+ | Value | CSS Output |
252
+ |-------|------------|
253
+ | `collapse` | `border-collapse: collapse;` |
254
+ | `separate` | `border-collapse: separate;` |
255
+
256
+ #### border-spacing
257
+
258
+ | Value | CSS Output |
259
+ |-------|------------|
260
+ | `border-spacing` | `border-spacing: {value};` |
261
+ | `border-spacing-x` | `border-spacing: {value} 0;` |
262
+ | `border-spacing-y` | `border-spacing: 0 {value};` |
263
+
264
+ #### box-sizing
265
+
266
+ | Value | CSS Output |
267
+ |-------|------------|
268
+ | `border` | `box-sizing: border-box;` |
269
+ | `content` | `box-sizing: content-box;` |
270
+
271
+ #### caption-side
272
+
273
+ | Value | CSS Output |
274
+ |-------|------------|
275
+ | `top` | `caption-side: top;` |
276
+ | `bottom` | `caption-side: bottom;` |
277
+
278
+ #### columns
279
+
280
+ | Value | CSS Output |
281
+ |-------|------------|
282
+ | `1-12` | `columns: {n};` |
283
+ | `auto` | `columns: auto;` |
284
+
285
+ #### container
286
+
287
+ | Value | CSS Output |
288
+ |-------|------------|
289
+ | `container` | `width: 100%; margin-left: auto; margin-right: auto;` |
290
+
291
+ #### display
292
+
293
+ | Value | CSS Output |
294
+ |-------|------------|
295
+ | `flex` | `display: flex;` |
296
+ | `inline-flex` | `display: inline-flex;` |
297
+ | `grid` | `display: grid;` |
298
+ | `inline-grid` | `display: inline-grid;` |
299
+ | `block` | `display: block;` |
300
+ | `inline` | `display: inline-block;` |
301
+ | `hidden` | `display: none;` |
302
+
303
+ #### flex
304
+
305
+ | Value | CSS Output |
306
+ |-------|------------|
307
+ | `1` | `flex: 1 1 0%;` |
308
+ | `auto` | `flex: 1 1 auto;` |
309
+ | `initial` | `flex: 0 1 auto;` |
310
+ | `none` | `flex: none;` |
311
+
312
+ #### flex-basis
313
+
314
+ | Value | CSS Output |
315
+ |-------|------------|
316
+ | `auto` | `flex-basis: auto;` |
317
+ | `0` | `flex-basis: 0;` |
318
+
319
+ #### flex-direction
320
+
321
+ | Value | CSS Output |
322
+ |-------|------------|
323
+ | `row` | `flex-direction: row;` |
324
+ | `col` | `flex-direction: column;` |
325
+ | `row-reverse` | `flex-direction: row-reverse;` |
326
+ | `col-reverse` | `flex-direction: column-reverse;` |
327
+
328
+ #### flex-items
329
+
330
+ | Value | CSS Output |
331
+ |-------|------------|
332
+ | `grow` | `flex-grow: 1;` |
333
+ | `grow-0` | `flex-grow: 0;` |
334
+ | `shrink` | `flex-shrink: 1;` |
335
+ | `shrink-0` | `flex-shrink: 0;` |
336
+
337
+ #### flex-wrap
338
+
339
+ | Value | CSS Output |
340
+ |-------|------------|
341
+ | `wrap` | `flex-wrap: wrap;` |
342
+ | `nowrap` | `flex-wrap: nowrap;` |
343
+ | `wrap-reverse` | `flex-wrap: wrap-reverse;` |
344
+
345
+ #### float-clear
346
+
347
+ | Value | CSS Output |
348
+ |-------|------------|
349
+ | `left` | `float: left;` |
350
+ | `right` | `float: right;` |
351
+ | `none` | `float: none;` |
352
+
353
+ #### grid-auto-flow
354
+
355
+ | Value | CSS Output |
356
+ |-------|------------|
357
+ | `row` | `grid-auto-flow: row;` |
358
+ | `col` | `grid-auto-flow: column;` |
359
+ | `dense` | `grid-auto-flow: dense;` |
360
+ | `row-dense` | `grid-auto-flow: row dense;` |
361
+ | `col-dense` | `grid-auto-flow: column dense;` |
362
+
363
+ #### grid-auto-sizing
364
+
365
+ | Value | CSS Output |
366
+ |-------|------------|
367
+ | `auto` | `auto` |
368
+ | `min` | `min-content` |
369
+ | `max` | `max-content` |
370
+ | `fr` | `minmax(0, 1fr)` |
371
+
372
+ #### grid-column-span
373
+
374
+ | Value | CSS Output |
375
+ |-------|------------|
376
+ | `1-12` | `grid-column: span {n} / span {n};` |
377
+ | `full` | `grid-column: 1 / -1;` |
378
+
379
+ #### grid-columns
380
+
381
+ | Value | CSS Output |
382
+ |-------|------------|
383
+ | `1-12` | `grid-template-columns: repeat({n}, minmax(0, 1fr));` |
384
+ | `none` | `grid-template-columns: none;` |
385
+ | `subgrid` | `grid-template-columns: subgrid;` |
386
+
387
+ #### grid-row-span
388
+
389
+ | Value | CSS Output |
390
+ |-------|------------|
391
+ | `1-12` | `grid-row: span {n} / span {n};` |
392
+ | `full` | `grid-row: 1 / -1;` |
393
+
394
+ #### grid-rows
395
+
396
+ | Value | CSS Output |
397
+ |-------|------------|
398
+ | `1-12` | `grid-template-rows: repeat({n}, minmax(0, 1fr));` |
399
+ | `none` | `grid-template-rows: none;` |
400
+ | `subgrid` | `grid-template-rows: subgrid;` |
401
+
402
+ #### inset
403
+
404
+ | Value | CSS Output |
405
+ |-------|------------|
406
+ | `inset` | `inset: {value};` |
407
+ | `inset-x` | `left: {value}; right: {value};` |
408
+ | `inset-y` | `top: {value}; bottom: {value};` |
409
+ | `top` | `top: {value};` |
410
+ | `right` | `right: {value};` |
411
+ | `bottom` | `bottom: {value};` |
412
+ | `left` | `left: {value};` |
413
+
414
+ #### isolation
415
+
416
+ | Value | CSS Output |
417
+ |-------|------------|
418
+ | `isolate` | `isolation: isolate;` |
419
+ | `auto` | `isolation: auto;` |
420
+
421
+ #### justify-content
422
+
423
+ | Value | CSS Output |
424
+ |-------|------------|
425
+ | `start` | `justify-content: flex-start;` |
426
+ | `end` | `justify-content: flex-end;` |
427
+ | `center` | `justify-content: center;` |
428
+ | `between` | `justify-content: space-between;` |
429
+ | `around` | `justify-content: space-around;` |
430
+ | `evenly` | `justify-content: space-evenly;` |
431
+ | `stretch` | `justify-content: stretch;` |
432
+
433
+ #### justify-items
434
+
435
+ | Value | CSS Output |
436
+ |-------|------------|
437
+ | `start` | `justify-items: start;` |
438
+ | `end` | `justify-items: end;` |
439
+ | `center` | `justify-items: center;` |
440
+ | `stretch` | `justify-items: stretch;` |
441
+
442
+ #### justify-self
443
+
444
+ | Value | CSS Output |
445
+ |-------|------------|
446
+ | `auto` | `justify-self: auto;` |
447
+ | `start` | `justify-self: start;` |
448
+ | `end` | `justify-self: end;` |
449
+ | `center` | `justify-self: center;` |
450
+ | `stretch` | `justify-self: stretch;` |
451
+
452
+ #### object-fit
453
+
454
+ | Value | CSS Output |
455
+ |-------|------------|
456
+ | `contain` | `object-fit: contain;` |
457
+ | `cover` | `object-fit: cover;` |
458
+ | `fill` | `object-fit: fill;` |
459
+ | `none` | `object-fit: none;` |
460
+ | `scale-down` | `object-fit: scale-down;` |
461
+
462
+ #### object-position
463
+
464
+ | Value | CSS Output |
465
+ |-------|------------|
466
+ | `center` | `object-position: center;` |
467
+ | `top` | `object-position: top;` |
468
+ | `bottom` | `object-position: bottom;` |
469
+ | `left` | `object-position: left;` |
470
+ | `right` | `object-position: right;` |
471
+ | `top-left` | `object-position: top left;` |
472
+ | `top-right` | `object-position: top right;` |
473
+ | `bottom-left` | `object-position: bottom left;` |
474
+ | `bottom-right` | `object-position: bottom right;` |
475
+
476
+ #### order
477
+
478
+ | Value | CSS Output |
479
+ |-------|------------|
480
+ | `first` | `order: -9999;` |
481
+ | `last` | `order: 9999;` |
482
+ | `none` | `order: 0;` |
483
+ | `1-12` | `order: {n};` |
484
+
485
+ #### overflow
486
+
487
+ | Value | CSS Output |
488
+ |-------|------------|
489
+ | `auto` | `overflow: auto;` |
490
+ | `hidden` | `overflow: hidden;` |
491
+ | `visible` | `overflow: visible;` |
492
+ | `scroll` | `overflow: scroll;` |
493
+ | `clip` | `overflow: clip;` |
494
+
495
+ #### overscroll
496
+
497
+ | Value | CSS Output |
498
+ |-------|------------|
499
+ | `auto` | `overscroll-behavior: auto;` |
500
+ | `contain` | `overscroll-behavior: contain;` |
501
+ | `none` | `overscroll-behavior: none;` |
502
+
503
+ #### place-content
504
+
505
+ | Value | CSS Output |
506
+ |-------|------------|
507
+ | `start` | `place-content: start;` |
508
+ | `end` | `place-content: end;` |
509
+ | `center` | `place-content: center;` |
510
+ | `between` | `place-content: space-between;` |
511
+ | `around` | `place-content: space-around;` |
512
+ | `evenly` | `place-content: space-evenly;` |
513
+ | `stretch` | `place-content: stretch;` |
514
+
515
+ #### place-items
516
+
517
+ | Value | CSS Output |
518
+ |-------|------------|
519
+ | `start` | `place-items: start;` |
520
+ | `end` | `place-items: end;` |
521
+ | `center` | `place-items: center;` |
522
+ | `stretch` | `place-items: stretch;` |
523
+
524
+ #### place-self
525
+
526
+ | Value | CSS Output |
527
+ |-------|------------|
528
+ | `auto` | `place-self: auto;` |
529
+ | `start` | `place-self: start;` |
530
+ | `end` | `place-self: end;` |
531
+ | `center` | `place-self: center;` |
532
+ | `stretch` | `place-self: stretch;` |
533
+
534
+ #### position
535
+
536
+ | Value | CSS Output |
537
+ |-------|------------|
538
+ | `static` | `position: static;` |
539
+ | `relative` | `position: relative;` |
540
+ | `absolute` | `position: absolute;` |
541
+ | `fixed` | `position: fixed;` |
542
+ | `sticky` | `position: sticky;` |
543
+
544
+ #### shorthand-alignment
545
+
546
+ | Value | CSS Output |
547
+ |-------|------------|
548
+ | `center` | `justify-content: center; align-items: center;` |
549
+ | `start` | `justify-content: flex-start; align-items: flex-start;` |
550
+ | `end` | `justify-content: flex-end; align-items: flex-end;` |
551
+ | `between` | `justify-content: space-between;` |
552
+ | `around` | `justify-content: space-around;` |
553
+ | `evenly` | `justify-content: space-evenly;` |
554
+
555
+ #### table-layout
556
+
557
+ | Value | CSS Output |
558
+ |-------|------------|
559
+ | `auto` | `table-layout: auto;` |
560
+ | `fixed` | `table-layout: fixed;` |
561
+
562
+ #### visibility
563
+
564
+ | Value | CSS Output |
565
+ |-------|------------|
566
+ | `visible` | `visibility: visible;` |
567
+ | `invisible` | `visibility: hidden;` |
568
+
569
+ #### z-index
570
+
571
+ | Value | CSS Output |
572
+ |-------|------------|
573
+ | `base` | `z-index: var(--z-base);` |
574
+ | `low` | `z-index: var(--z-low);` |
575
+ | `mid` | `z-index: var(--z-mid);` |
576
+ | `high` | `z-index: var(--z-high);` |
577
+ | `top` | `z-index: var(--z-top);` |
578
+
579
+ ### Space Values
580
+
581
+ #### gap
582
+
583
+ | Value | CSS Output |
584
+ |-------|------------|
585
+ | `undefined` | `gap: var(--s-{value});` |
586
+ | `undefined` | `column-gap: var(--s-{value});` |
587
+ | `undefined` | `row-gap: var(--s-{value});` |
588
+
589
+ #### height
590
+
591
+ | Value | CSS Output |
592
+ |-------|------------|
593
+ | `undefined` | `height: var(--s-{value});` |
594
+ | `undefined` | `min-height: var(--s-{value});` |
595
+ | `undefined` | `max-height: var(--s-{value});` |
596
+
597
+ #### margin
598
+
599
+ | Value | CSS Output |
600
+ |-------|------------|
601
+ | `undefined` | `margin: var(--s-{value});` |
602
+ | `undefined` | `margin-top: var(--s-{value});` |
603
+ | `undefined` | `margin-right: var(--s-{value});` |
604
+ | `undefined` | `margin-bottom: var(--s-{value});` |
605
+ | `undefined` | `margin-left: var(--s-{value});` |
606
+ | `undefined` | `margin-left: var(--s-{value}); margin-right: var(--s-{value});` |
607
+ | `undefined` | `margin-top: var(--s-{value}); margin-bottom: var(--s-{value});` |
608
+
609
+ #### padding
610
+
611
+ | Value | CSS Output |
612
+ |-------|------------|
613
+ | `undefined` | `padding: var(--s-{value});` |
614
+ | `undefined` | `padding-top: var(--s-{value});` |
615
+ | `undefined` | `padding-right: var(--s-{value});` |
616
+ | `undefined` | `padding-bottom: var(--s-{value});` |
617
+ | `undefined` | `padding-left: var(--s-{value});` |
618
+ | `undefined` | `padding-left: var(--s-{value}); padding-right: var(--s-{value});` |
619
+ | `undefined` | `padding-top: var(--s-{value}); padding-bottom: var(--s-{value});` |
620
+
621
+ #### width
622
+
623
+ | Value | CSS Output |
624
+ |-------|------------|
625
+ | `undefined` | `width: var(--s-{value});` |
626
+ | `undefined` | `min-width: var(--s-{value});` |
627
+ | `undefined` | `max-width: var(--s-{value});` |
628
+
629
+ ### Visual Values
630
+
631
+ #### animation-builtin
632
+
633
+ | Value | CSS Output |
634
+ |-------|------------|
635
+ | `none` | `animation: none;` |
636
+ | `spin` | `animation: spin 1s linear infinite;` |
637
+ | `ping` | `animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;` |
638
+ | `pulse` | `animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;` |
639
+ | `bounce` | `animation: bounce 1s infinite;` |
640
+
641
+ #### animation-delay
642
+
643
+ | Value | CSS Output |
644
+ |-------|------------|
645
+ | `instant` | `animation-delay: 75ms;` |
646
+ | `quick` | `animation-delay: 100ms;` |
647
+ | `fast` | `animation-delay: 150ms;` |
648
+ | `normal` | `animation-delay: 200ms;` |
649
+ | `slow` | `animation-delay: 300ms;` |
650
+
651
+ #### animation-direction
652
+
653
+ | Value | CSS Output |
654
+ |-------|------------|
655
+ | `normal` | `animation-direction: normal;` |
656
+ | `reverse` | `animation-direction: reverse;` |
657
+ | `alternate` | `animation-direction: alternate;` |
658
+ | `alternate-reverse` | `animation-direction: alternate-reverse;` |
659
+
660
+ #### animation-duration
661
+
662
+ | Value | CSS Output |
663
+ |-------|------------|
664
+ | `instant` | `animation-duration: 75ms;` |
665
+ | `quick` | `animation-duration: 100ms;` |
666
+ | `fast` | `animation-duration: 150ms;` |
667
+ | `normal` | `animation-duration: 200ms;` |
668
+ | `slow` | `animation-duration: 300ms;` |
669
+ | `slower` | `animation-duration: 500ms;` |
670
+ | `lazy` | `animation-duration: 700ms;` |
671
+
672
+ #### animation-fill
673
+
674
+ | Value | CSS Output |
675
+ |-------|------------|
676
+ | `none` | `animation-fill-mode: none;` |
677
+ | `forwards` | `animation-fill-mode: forwards;` |
678
+ | `backwards` | `animation-fill-mode: backwards;` |
679
+ | `both` | `animation-fill-mode: both;` |
680
+
681
+ #### animation-iteration
682
+
683
+ | Value | CSS Output |
684
+ |-------|------------|
685
+ | `1` | `animation-iteration-count: 1;` |
686
+ | `infinite` | `animation-iteration-count: infinite;` |
687
+
688
+ #### animation-play
689
+
690
+ | Value | CSS Output |
691
+ |-------|------------|
692
+ | `running` | `animation-play-state: running;` |
693
+ | `paused` | `animation-play-state: paused;` |
694
+
695
+ #### appearance
696
+
697
+ | Value | CSS Output |
698
+ |-------|------------|
699
+ | `none` | `appearance: none;` |
700
+ | `auto` | `appearance: auto;` |
701
+
702
+ #### backdrop-blur
703
+
704
+ | Value | CSS Output |
705
+ |-------|------------|
706
+ | `none` | `backdrop-filter: blur(0);` |
707
+ | `tiny` | `backdrop-filter: blur(2px);` |
708
+ | `small` | `backdrop-filter: blur(4px);` |
709
+ | `medium` | `backdrop-filter: blur(8px);` |
710
+ | `big` | `backdrop-filter: blur(12px);` |
711
+ | `giant` | `backdrop-filter: blur(24px);` |
712
+ | `vast` | `backdrop-filter: blur(48px);` |
713
+
714
+ #### backdrop-brightness
715
+
716
+ | Value | CSS Output |
717
+ |-------|------------|
718
+ | `dim` | `backdrop-filter: brightness(0.5);` |
719
+ | `dark` | `backdrop-filter: brightness(0.75);` |
720
+ | `normal` | `backdrop-filter: brightness(1);` |
721
+ | `bright` | `backdrop-filter: brightness(1.25);` |
722
+ | `vivid` | `backdrop-filter: brightness(1.5);` |
723
+
724
+ #### backdrop-contrast
725
+
726
+ | Value | CSS Output |
727
+ |-------|------------|
728
+ | `low` | `backdrop-filter: contrast(0.5);` |
729
+ | `reduced` | `backdrop-filter: contrast(0.75);` |
730
+ | `normal` | `backdrop-filter: contrast(1);` |
731
+ | `high` | `backdrop-filter: contrast(1.25);` |
732
+ | `max` | `backdrop-filter: contrast(1.5);` |
733
+
734
+ #### backdrop-grayscale
735
+
736
+ | Value | CSS Output |
737
+ |-------|------------|
738
+ | `none` | `backdrop-filter: grayscale(0%);` |
739
+ | `partial` | `backdrop-filter: grayscale(50%);` |
740
+ | `full` | `backdrop-filter: grayscale(100%);` |
741
+
742
+ #### backdrop-hue-rotate
743
+
744
+ | Value | CSS Output |
745
+ |-------|------------|
746
+ | `0` | `backdrop-filter: hue-rotate(0deg);` |
747
+ | `90` | `backdrop-filter: hue-rotate(90deg);` |
748
+ | `180` | `backdrop-filter: hue-rotate(180deg);` |
749
+
750
+ #### backdrop-invert
751
+
752
+ | Value | CSS Output |
753
+ |-------|------------|
754
+ | `none` | `backdrop-filter: invert(0%);` |
755
+ | `partial` | `backdrop-filter: invert(50%);` |
756
+ | `full` | `backdrop-filter: invert(100%);` |
757
+
758
+ #### backdrop-opacity
759
+
760
+ | Value | CSS Output |
761
+ |-------|------------|
762
+ | `0` | `backdrop-filter: opacity(0);` |
763
+ | `50` | `backdrop-filter: opacity(0.5);` |
764
+ | `100` | `backdrop-filter: opacity(1);` |
765
+
766
+ #### backdrop-saturate
767
+
768
+ | Value | CSS Output |
769
+ |-------|------------|
770
+ | `none` | `backdrop-filter: saturate(0);` |
771
+ | `low` | `backdrop-filter: saturate(0.5);` |
772
+ | `normal` | `backdrop-filter: saturate(1);` |
773
+ | `high` | `backdrop-filter: saturate(1.5);` |
774
+ | `vivid` | `backdrop-filter: saturate(2);` |
775
+
776
+ #### backdrop-sepia
777
+
778
+ | Value | CSS Output |
779
+ |-------|------------|
780
+ | `none` | `backdrop-filter: sepia(0%);` |
781
+ | `partial` | `backdrop-filter: sepia(50%);` |
782
+ | `full` | `backdrop-filter: sepia(100%);` |
783
+
784
+ #### background-attachment
785
+
786
+ | Value | CSS Output |
787
+ |-------|------------|
788
+ | `fixed` | `background-attachment: fixed;` |
789
+ | `local` | `background-attachment: local;` |
790
+ | `scroll` | `background-attachment: scroll;` |
791
+
792
+ #### background-blend-mode
793
+
794
+ | Value | CSS Output |
795
+ |-------|------------|
796
+ | `normal` | `background-blend-mode: normal;` |
797
+ | `multiply` | `background-blend-mode: multiply;` |
798
+ | `screen` | `background-blend-mode: screen;` |
799
+ | `overlay` | `background-blend-mode: overlay;` |
800
+ | `darken` | `background-blend-mode: darken;` |
801
+ | `lighten` | `background-blend-mode: lighten;` |
802
+
803
+ #### background-clip
804
+
805
+ | Value | CSS Output |
806
+ |-------|------------|
807
+ | `border` | `background-clip: border-box;` |
808
+ | `padding` | `background-clip: padding-box;` |
809
+ | `content` | `background-clip: content-box;` |
810
+ | `text` | `background-clip: text; -webkit-background-clip: text;` |
811
+
812
+ #### background-image
813
+
814
+ | Value | CSS Output |
815
+ |-------|------------|
816
+ | `none` | `background-image: none;` |
817
+ | `gradient-to-t` | `background-image: linear-gradient(to top, var(--tw-gradient-stops));` |
818
+ | `gradient-to-b` | `background-image: linear-gradient(to bottom, var(--tw-gradient-stops));` |
819
+ | `gradient-to-l` | `background-image: linear-gradient(to left, var(--tw-gradient-stops));` |
820
+ | `gradient-to-r` | `background-image: linear-gradient(to right, var(--tw-gradient-stops));` |
821
+
822
+ #### background-origin
823
+
824
+ | Value | CSS Output |
825
+ |-------|------------|
826
+ | `border` | `background-origin: border-box;` |
827
+ | `padding` | `background-origin: padding-box;` |
828
+ | `content` | `background-origin: content-box;` |
829
+
830
+ #### background-position
831
+
832
+ | Value | CSS Output |
833
+ |-------|------------|
834
+ | `center` | `background-position: center;` |
835
+ | `top` | `background-position: top;` |
836
+ | `bottom` | `background-position: bottom;` |
837
+ | `left` | `background-position: left;` |
838
+ | `right` | `background-position: right;` |
839
+ | `top-left` | `background-position: top left;` |
840
+ | `top-right` | `background-position: top right;` |
841
+ | `bottom-left` | `background-position: bottom left;` |
842
+ | `bottom-right` | `background-position: bottom right;` |
843
+
844
+ #### background-repeat
845
+
846
+ | Value | CSS Output |
847
+ |-------|------------|
848
+ | `repeat` | `background-repeat: repeat;` |
849
+ | `no-repeat` | `background-repeat: no-repeat;` |
850
+ | `repeat-x` | `background-repeat: repeat-x;` |
851
+ | `repeat-y` | `background-repeat: repeat-y;` |
852
+ | `round` | `background-repeat: round;` |
853
+ | `space` | `background-repeat: space;` |
854
+
855
+ #### background-size
856
+
857
+ | Value | CSS Output |
858
+ |-------|------------|
859
+ | `auto` | `background-size: auto;` |
860
+ | `cover` | `background-size: cover;` |
861
+ | `contain` | `background-size: contain;` |
862
+
863
+ #### blend-modes
864
+
865
+ | Value | CSS Output |
866
+ |-------|------------|
867
+ | `normal` | `mix-blend-mode: normal;` |
868
+ | `multiply` | `mix-blend-mode: multiply;` |
869
+ | `screen` | `mix-blend-mode: screen;` |
870
+ | `overlay` | `mix-blend-mode: overlay;` |
871
+ | `darken` | `mix-blend-mode: darken;` |
872
+ | `lighten` | `mix-blend-mode: lighten;` |
873
+
874
+ #### border
875
+
876
+ | Value | CSS Output |
877
+ |-------|------------|
878
+ | `primary` | `border-color: var(--c-primary); border-style: solid;` |
879
+ | `gray-300` | `border-color: var(--c-gray-300); border-style: solid;` |
880
+ | `danger` | `border-color: var(--c-danger); border-style: solid;` |
881
+
882
+ #### border-radius
883
+
884
+ | Value | CSS Output |
885
+ |-------|------------|
886
+ | `none` | `border-radius: var(--r-none);` |
887
+ | `small` | `border-radius: var(--r-small);` |
888
+ | `medium` | `border-radius: var(--r-medium);` |
889
+ | `big` | `border-radius: var(--r-big);` |
890
+ | `round` | `border-radius: var(--r-round);` |
891
+
892
+ #### border-style
893
+
894
+ | Value | CSS Output |
895
+ |-------|------------|
896
+ | `solid` | `border-style: solid;` |
897
+ | `dashed` | `border-style: dashed;` |
898
+ | `dotted` | `border-style: dotted;` |
899
+ | `double` | `border-style: double;` |
900
+ | `none` | `border-style: none;` |
901
+
902
+ #### border-width
903
+
904
+ | Value | CSS Output |
905
+ |-------|------------|
906
+ | `none` | `border-width: var(--s-none);` |
907
+ | `thin` | `border-width: var(--s-thin);` |
908
+ | `regular` | `border-width: var(--s-regular);` |
909
+ | `thick` | `border-width: var(--s-thick);` |
910
+
911
+ #### box-shadow
912
+
913
+ | Value | CSS Output |
914
+ |-------|------------|
915
+ | `none` | `box-shadow: var(--shadow-none);` |
916
+ | `small` | `box-shadow: var(--shadow-small);` |
917
+ | `medium` | `box-shadow: var(--shadow-medium);` |
918
+ | `big` | `box-shadow: var(--shadow-big);` |
919
+ | `giant` | `box-shadow: var(--shadow-giant);` |
920
+
921
+ #### color-scheme
922
+
923
+ | Value | CSS Output |
924
+ |-------|------------|
925
+ | `light` | `color-scheme: light;` |
926
+ | `dark` | `color-scheme: dark;` |
927
+ | `normal` | `color-scheme: normal;` |
928
+
929
+ #### contain
930
+
931
+ | Value | CSS Output |
932
+ |-------|------------|
933
+ | `none` | `contain: none;` |
934
+ | `strict` | `contain: strict;` |
935
+ | `content` | `contain: content;` |
936
+ | `size` | `contain: size;` |
937
+ | `layout` | `contain: layout;` |
938
+ | `style` | `contain: style;` |
939
+ | `paint` | `contain: paint;` |
940
+
941
+ #### content-visibility
942
+
943
+ | Value | CSS Output |
944
+ |-------|------------|
945
+ | `visible` | `content-visibility: visible;` |
946
+ | `auto` | `content-visibility: auto;` |
947
+ | `hidden` | `content-visibility: hidden;` |
948
+
949
+ #### cursor
950
+
951
+ | Value | CSS Output |
952
+ |-------|------------|
953
+ | `auto` | `cursor: auto;` |
954
+ | `default` | `cursor: default;` |
955
+ | `pointer` | `cursor: pointer;` |
956
+ | `wait` | `cursor: wait;` |
957
+ | `text` | `cursor: text;` |
958
+ | `move` | `cursor: move;` |
959
+ | `not-allowed` | `cursor: not-allowed;` |
960
+ | `grab` | `cursor: grab;` |
961
+ | `grabbing` | `cursor: grabbing;` |
962
+
963
+ #### divide
964
+
965
+ | Value | CSS Output |
966
+ |-------|------------|
967
+ | `primary` | `border-color: var(--c-primary); border-style: solid;` |
968
+ | `gray-300` | `border-color: var(--c-gray-300); border-style: solid;` |
969
+ | `danger` | `border-color: var(--c-danger); border-style: solid;` |
970
+
971
+ #### divide-reverse
972
+
973
+ | Value | CSS Output |
974
+ |-------|------------|
975
+ | `divide-x:reverse` | `--ss-divide-x-reverse: 1;` |
976
+ | `divide-y:reverse` | `--ss-divide-y-reverse: 1;` |
977
+
978
+ #### divide-style
979
+
980
+ | Value | CSS Output |
981
+ |-------|------------|
982
+ | `solid` | `border-style: solid;` |
983
+ | `dashed` | `border-style: dashed;` |
984
+ | `dotted` | `border-style: dotted;` |
985
+ | `double` | `border-style: double;` |
986
+ | `none` | `border-style: none;` |
987
+
988
+ #### divide-width
989
+
990
+ | Value | CSS Output |
991
+ |-------|------------|
992
+ | `none` | `border-width: var(--s-none);` |
993
+ | `thin` | `border-width: var(--s-thin);` |
994
+ | `regular` | `border-width: var(--s-regular);` |
995
+ | `thick` | `border-width: var(--s-thick);` |
996
+
997
+ #### field-sizing
998
+
999
+ | Value | CSS Output |
1000
+ |-------|------------|
1001
+ | `fixed` | `field-sizing: fixed;` |
1002
+ | `content` | `field-sizing: content;` |
1003
+
1004
+ #### fill
1005
+
1006
+ | Value | CSS Output |
1007
+ |-------|------------|
1008
+ | `none` | `fill: none;` |
1009
+ | `current` | `fill: currentColor;` |
1010
+
1011
+ #### filter-blur
1012
+
1013
+ | Value | CSS Output |
1014
+ |-------|------------|
1015
+ | `none` | `filter: blur(0);` |
1016
+ | `tiny` | `filter: blur(2px);` |
1017
+ | `small` | `filter: blur(4px);` |
1018
+ | `medium` | `filter: blur(8px);` |
1019
+ | `big` | `filter: blur(12px);` |
1020
+ | `giant` | `filter: blur(24px);` |
1021
+ | `vast` | `filter: blur(48px);` |
1022
+
1023
+ #### filter-brightness
1024
+
1025
+ | Value | CSS Output |
1026
+ |-------|------------|
1027
+ | `dim` | `filter: brightness(0.5);` |
1028
+ | `dark` | `filter: brightness(0.75);` |
1029
+ | `normal` | `filter: brightness(1);` |
1030
+ | `bright` | `filter: brightness(1.25);` |
1031
+ | `vivid` | `filter: brightness(1.5);` |
1032
+
1033
+ #### filter-contrast
1034
+
1035
+ | Value | CSS Output |
1036
+ |-------|------------|
1037
+ | `low` | `filter: contrast(0.5);` |
1038
+ | `reduced` | `filter: contrast(0.75);` |
1039
+ | `normal` | `filter: contrast(1);` |
1040
+ | `high` | `filter: contrast(1.25);` |
1041
+ | `max` | `filter: contrast(1.5);` |
1042
+
1043
+ #### filter-drop-shadow
1044
+
1045
+ | Value | CSS Output |
1046
+ |-------|------------|
1047
+ | `none` | `filter: drop-shadow(none);` |
1048
+ | `tiny` | `filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));` |
1049
+ | `small` | `filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));` |
1050
+ | `medium` | `filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07));` |
1051
+ | `big` | `filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));` |
1052
+ | `giant` | `filter: drop-shadow(0 20px 13px rgba(0,0,0,0.03));` |
1053
+
1054
+ #### filter-grayscale
1055
+
1056
+ | Value | CSS Output |
1057
+ |-------|------------|
1058
+ | `none` | `filter: grayscale(0%);` |
1059
+ | `partial` | `filter: grayscale(50%);` |
1060
+ | `full` | `filter: grayscale(100%);` |
1061
+
1062
+ #### filter-hue-rotate
1063
+
1064
+ | Value | CSS Output |
1065
+ |-------|------------|
1066
+ | `0` | `filter: hue-rotate(0deg);` |
1067
+ | `90` | `filter: hue-rotate(90deg);` |
1068
+ | `180` | `filter: hue-rotate(180deg);` |
1069
+
1070
+ #### filter-invert
1071
+
1072
+ | Value | CSS Output |
1073
+ |-------|------------|
1074
+ | `none` | `filter: invert(0%);` |
1075
+ | `partial` | `filter: invert(50%);` |
1076
+ | `full` | `filter: invert(100%);` |
1077
+
1078
+ #### filter-saturate
1079
+
1080
+ | Value | CSS Output |
1081
+ |-------|------------|
1082
+ | `none` | `filter: saturate(0);` |
1083
+ | `low` | `filter: saturate(0.5);` |
1084
+ | `normal` | `filter: saturate(1);` |
1085
+ | `high` | `filter: saturate(1.5);` |
1086
+ | `vivid` | `filter: saturate(2);` |
1087
+
1088
+ #### filter-sepia
1089
+
1090
+ | Value | CSS Output |
1091
+ |-------|------------|
1092
+ | `none` | `filter: sepia(0%);` |
1093
+ | `partial` | `filter: sepia(50%);` |
1094
+ | `full` | `filter: sepia(100%);` |
1095
+
1096
+ #### font-family
1097
+
1098
+ | Value | CSS Output |
1099
+ |-------|------------|
1100
+ | `sans` | `font-family: ui-sans-serif, system-ui, sans-serif;` |
1101
+ | `serif` | `font-family: ui-serif, Georgia, serif;` |
1102
+ | `mono` | `font-family: ui-monospace, monospace;` |
1103
+
1104
+ #### font-smoothing
1105
+
1106
+ | Value | CSS Output |
1107
+ |-------|------------|
1108
+ | `antialiased` | `-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;` |
1109
+ | `subpixel-antialiased` | `-webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto;` |
1110
+
1111
+ #### font-style
1112
+
1113
+ | Value | CSS Output |
1114
+ |-------|------------|
1115
+ | `italic` | `font-style: italic;` |
1116
+ | `not-italic` | `font-style: normal;` |
1117
+
1118
+ #### font-variant-numeric
1119
+
1120
+ | Value | CSS Output |
1121
+ |-------|------------|
1122
+ | `normal-nums` | `font-variant-numeric: normal;` |
1123
+ | `ordinal` | `font-variant-numeric: ordinal;` |
1124
+ | `slashed-zero` | `font-variant-numeric: slashed-zero;` |
1125
+ | `lining-nums` | `font-variant-numeric: lining-nums;` |
1126
+ | `oldstyle-nums` | `font-variant-numeric: oldstyle-nums;` |
1127
+ | `proportional-nums` | `font-variant-numeric: proportional-nums;` |
1128
+ | `tabular-nums` | `font-variant-numeric: tabular-nums;` |
1129
+
1130
+ #### font-weight
1131
+
1132
+ | Value | CSS Output |
1133
+ |-------|------------|
1134
+ | `normal` | `font-weight: var(--fw-normal);` |
1135
+ | `medium` | `font-weight: var(--fw-medium);` |
1136
+ | `bold` | `font-weight: var(--fw-bold);` |
1137
+
1138
+ #### forced-color-adjust
1139
+
1140
+ | Value | CSS Output |
1141
+ |-------|------------|
1142
+ | `auto` | `forced-color-adjust: auto;` |
1143
+ | `none` | `forced-color-adjust: none;` |
1144
+
1145
+ #### gradient-from
1146
+
1147
+ | Value | CSS Output |
1148
+ |-------|------------|
1149
+ | `primary` | `--tw-gradient-from: var(--c-primary); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);` |
1150
+ | `blue-500` | `--tw-gradient-from: var(--c-blue-500); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);` |
1151
+
1152
+ #### gradient-to
1153
+
1154
+ | Value | CSS Output |
1155
+ |-------|------------|
1156
+ | `purple-500` | `--tw-gradient-to: var(--c-purple-500);` |
1157
+ | `pink-500` | `--tw-gradient-to: var(--c-pink-500);` |
1158
+
1159
+ #### gradient-via
1160
+
1161
+ | Value | CSS Output |
1162
+ |-------|------------|
1163
+ | `purple-500` | `--tw-gradient-via: var(--c-purple-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to);` |
1164
+
1165
+ #### hyphens
1166
+
1167
+ | Value | CSS Output |
1168
+ |-------|------------|
1169
+ | `none` | `hyphens: none;` |
1170
+ | `manual` | `hyphens: manual;` |
1171
+ | `auto` | `hyphens: auto;` |
1172
+
1173
+ #### letter-spacing
1174
+
1175
+ | Value | CSS Output |
1176
+ |-------|------------|
1177
+ | `tighter` | `letter-spacing: -0.05em;` |
1178
+ | `tight` | `letter-spacing: -0.025em;` |
1179
+ | `normal` | `letter-spacing: 0;` |
1180
+ | `wide` | `letter-spacing: 0.025em;` |
1181
+ | `wider` | `letter-spacing: 0.05em;` |
1182
+ | `widest` | `letter-spacing: 0.1em;` |
1183
+
1184
+ #### line-clamp
1185
+
1186
+ | Value | CSS Output |
1187
+ |-------|------------|
1188
+ | `1` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;` |
1189
+ | `2` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;` |
1190
+ | `3` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;` |
1191
+ | `none` | `overflow: visible; display: block; -webkit-box-orient: horizontal; -webkit-line-clamp: none;` |
1192
+
1193
+ #### line-height
1194
+
1195
+ | Value | CSS Output |
1196
+ |-------|------------|
1197
+ | `none` | `line-height: 1;` |
1198
+ | `tight` | `line-height: 1.25;` |
1199
+ | `snug` | `line-height: 1.375;` |
1200
+ | `normal` | `line-height: 1.5;` |
1201
+ | `relaxed` | `line-height: 1.625;` |
1202
+ | `loose` | `line-height: 2;` |
1203
+
1204
+ #### list-style
1205
+
1206
+ | Value | CSS Output |
1207
+ |-------|------------|
1208
+ | `none` | `list-style-type: none;` |
1209
+ | `disc` | `list-style-type: disc;` |
1210
+ | `decimal` | `list-style-type: decimal;` |
1211
+ | `square` | `list-style-type: square;` |
1212
+ | `inside` | `list-style-position: inside;` |
1213
+ | `outside` | `list-style-position: outside;` |
1214
+
1215
+ #### mask
1216
+
1217
+ | Value | CSS Output |
1218
+ |-------|------------|
1219
+ | `none` | `mask-image: none;` |
1220
+ | `fade-y` | `mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);` |
1221
+ | `fade-x` | `mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);` |
1222
+
1223
+ #### opacity
1224
+
1225
+ | Value | CSS Output |
1226
+ |-------|------------|
1227
+ | `0` | `opacity: 0;` |
1228
+ | `25` | `opacity: 0.25;` |
1229
+ | `50` | `opacity: 0.5;` |
1230
+ | `75` | `opacity: 0.75;` |
1231
+ | `100` | `opacity: 1;` |
1232
+
1233
+ #### pointer-events
1234
+
1235
+ | Value | CSS Output |
1236
+ |-------|------------|
1237
+ | `none` | `pointer-events: none;` |
1238
+ | `auto` | `pointer-events: auto;` |
1239
+
1240
+ #### resize
1241
+
1242
+ | Value | CSS Output |
1243
+ |-------|------------|
1244
+ | `none` | `resize: none;` |
1245
+ | `both` | `resize: both;` |
1246
+ | `x` | `resize: horizontal;` |
1247
+ | `y` | `resize: vertical;` |
1248
+
1249
+ #### ring
1250
+
1251
+ | Value | CSS Output |
1252
+ |-------|------------|
1253
+ | `none` | `box-shadow: 0 0 0 0 transparent;` |
1254
+ | `thin` | `box-shadow: 0 0 0 1px var(--ring-color);` |
1255
+ | `regular` | `box-shadow: 0 0 0 2px var(--ring-color);` |
1256
+ | `small` | `box-shadow: 0 0 0 4px var(--ring-color);` |
1257
+ | `medium` | `box-shadow: 0 0 0 6px var(--ring-color);` |
1258
+ | `big` | `box-shadow: 0 0 0 8px var(--ring-color);` |
1259
+
1260
+ #### ring-color
1261
+
1262
+ | Value | CSS Output |
1263
+ |-------|------------|
1264
+ | `primary` | `--ring-color: var(--c-primary);` |
1265
+ | `blue-500` | `--ring-color: var(--c-blue-500);` |
1266
+
1267
+ #### ring-offset
1268
+
1269
+ | Value | CSS Output |
1270
+ |-------|------------|
1271
+ | `0` | `--ring-offset: 0px;` |
1272
+ | `2` | `--ring-offset: 2px;` |
1273
+ | `4` | `--ring-offset: 4px;` |
1274
+
1275
+ #### scroll-behavior
1276
+
1277
+ | Value | CSS Output |
1278
+ |-------|------------|
1279
+ | `auto` | `scroll-behavior: auto;` |
1280
+ | `smooth` | `scroll-behavior: smooth;` |
1281
+
1282
+ #### scroll-margin
1283
+
1284
+ | Value | CSS Output |
1285
+ |-------|------------|
1286
+ | `scroll-m` | `scroll-margin: {value};` |
1287
+ | `scroll-m-t` | `scroll-margin-top: {value};` |
1288
+ | `scroll-m-r` | `scroll-margin-right: {value};` |
1289
+ | `scroll-m-b` | `scroll-margin-bottom: {value};` |
1290
+ | `scroll-m-l` | `scroll-margin-left: {value};` |
1291
+
1292
+ #### scroll-padding
1293
+
1294
+ | Value | CSS Output |
1295
+ |-------|------------|
1296
+ | `scroll-p` | `scroll-padding: {value};` |
1297
+ | `scroll-p-t` | `scroll-padding-top: {value};` |
1298
+ | `scroll-p-r` | `scroll-padding-right: {value};` |
1299
+ | `scroll-p-b` | `scroll-padding-bottom: {value};` |
1300
+ | `scroll-p-l` | `scroll-padding-left: {value};` |
1301
+
1302
+ #### scroll-snap-align
1303
+
1304
+ | Value | CSS Output |
1305
+ |-------|------------|
1306
+ | `start` | `scroll-snap-align: start;` |
1307
+ | `end` | `scroll-snap-align: end;` |
1308
+ | `center` | `scroll-snap-align: center;` |
1309
+ | `none` | `scroll-snap-align: none;` |
1310
+
1311
+ #### scroll-snap-stop
1312
+
1313
+ | Value | CSS Output |
1314
+ |-------|------------|
1315
+ | `normal` | `scroll-snap-stop: normal;` |
1316
+ | `always` | `scroll-snap-stop: always;` |
1317
+
1318
+ #### scroll-snap-type
1319
+
1320
+ | Value | CSS Output |
1321
+ |-------|------------|
1322
+ | `none` | `scroll-snap-type: none;` |
1323
+ | `x` | `scroll-snap-type: x mandatory;` |
1324
+ | `y` | `scroll-snap-type: y mandatory;` |
1325
+ | `both` | `scroll-snap-type: both mandatory;` |
1326
+ | `x-proximity` | `scroll-snap-type: x proximity;` |
1327
+ | `y-proximity` | `scroll-snap-type: y proximity;` |
1328
+
1329
+ #### state-prefixes
1330
+
1331
+ | Value | CSS Output |
1332
+ |-------|------------|
1333
+ | `hover:` | `:hover` |
1334
+ | `focus:` | `:focus` |
1335
+ | `active:` | `:active` |
1336
+ | `disabled:` | `:disabled` |
1337
+ | `visited:` | `:visited` |
1338
+ | `first:` | `:first-child` |
1339
+ | `last:` | `:last-child` |
1340
+ | `odd:` | `:nth-child(odd)` |
1341
+ | `even:` | `:nth-child(even)` |
1342
+
1343
+ #### stroke
1344
+
1345
+ | Value | CSS Output |
1346
+ |-------|------------|
1347
+ | `none` | `stroke: none;` |
1348
+ | `current` | `stroke: currentColor;` |
1349
+
1350
+ #### stroke-width
1351
+
1352
+ | Value | CSS Output |
1353
+ |-------|------------|
1354
+ | `0` | `stroke-width: 0;` |
1355
+ | `1` | `stroke-width: 1px;` |
1356
+ | `2` | `stroke-width: 2px;` |
1357
+
1358
+ #### text-alignment
1359
+
1360
+ | Value | CSS Output |
1361
+ |-------|------------|
1362
+ | `left` | `text-align: left;` |
1363
+ | `center` | `text-align: center;` |
1364
+ | `right` | `text-align: right;` |
1365
+ | `justify` | `text-align: justify;` |
1366
+
1367
+ #### text-color
1368
+
1369
+ | Value | CSS Output |
1370
+ |-------|------------|
1371
+ | `left` | `text-align: left;` |
1372
+ | `center` | `text-align: center;` |
1373
+ | `right` | `text-align: right;` |
1374
+ | `justify` | `text-align: justify;` |
1375
+
1376
+ #### text-decoration
1377
+
1378
+ | Value | CSS Output |
1379
+ |-------|------------|
1380
+ | `underline` | `text-decoration-line: underline;` |
1381
+ | `overline` | `text-decoration-line: overline;` |
1382
+ | `line-through` | `text-decoration-line: line-through;` |
1383
+ | `no-underline` | `text-decoration-line: none;` |
1384
+
1385
+ #### text-indent
1386
+
1387
+ | Value | CSS Output |
1388
+ |-------|------------|
1389
+ | `0` | `text-indent: 0;` |
1390
+
1391
+ #### text-overflow
1392
+
1393
+ | Value | CSS Output |
1394
+ |-------|------------|
1395
+ | `truncate` | `overflow: hidden; text-overflow: ellipsis; white-space: nowrap;` |
1396
+ | `text-ellipsis` | `text-overflow: ellipsis;` |
1397
+ | `text-clip` | `text-overflow: clip;` |
1398
+
1399
+ #### text-shadow
1400
+
1401
+ | Value | CSS Output |
1402
+ |-------|------------|
1403
+ | `none` | `text-shadow: none;` |
1404
+ | `small` | `text-shadow: 0 1px 2px rgba(0,0,0,0.1);` |
1405
+ | `medium` | `text-shadow: 0 2px 4px rgba(0,0,0,0.1);` |
1406
+ | `big` | `text-shadow: 0 4px 8px rgba(0,0,0,0.1);` |
1407
+
1408
+ #### text-size
1409
+
1410
+ | Value | CSS Output |
1411
+ |-------|------------|
1412
+ | `mini` | `font-size: var(--font-mini); line-height: var(--font-lh-mini);` |
1413
+ | `small` | `font-size: var(--font-small); line-height: var(--font-lh-small);` |
1414
+ | `base` | `font-size: var(--font-base); line-height: var(--font-lh-base);` |
1415
+ | `large` | `font-size: var(--font-large); line-height: var(--font-lh-large);` |
1416
+ | `big` | `font-size: var(--font-big); line-height: var(--font-lh-big);` |
1417
+ | `huge` | `font-size: var(--font-huge); line-height: var(--font-lh-huge);` |
1418
+ | `grand` | `font-size: var(--font-grand); line-height: var(--font-lh-grand);` |
1419
+ | `giant` | `font-size: var(--font-giant); line-height: var(--font-lh-giant);` |
1420
+ | `mount` | `font-size: var(--font-mount); line-height: var(--font-lh-mount);` |
1421
+ | `mega` | `font-size: var(--font-mega); line-height: var(--font-lh-mega);` |
1422
+ | `giga` | `font-size: var(--font-giga); line-height: var(--font-lh-giga);` |
1423
+ | `tera` | `font-size: var(--font-tera); line-height: var(--font-lh-tera);` |
1424
+ | `hero` | `font-size: var(--font-hero); line-height: var(--font-lh-hero);` |
1425
+
1426
+ #### text-transform
1427
+
1428
+ | Value | CSS Output |
1429
+ |-------|------------|
1430
+ | `uppercase` | `text-transform: uppercase;` |
1431
+ | `lowercase` | `text-transform: lowercase;` |
1432
+ | `capitalize` | `text-transform: capitalize;` |
1433
+ | `normal-case` | `text-transform: none;` |
1434
+
1435
+ #### text-wrap
1436
+
1437
+ | Value | CSS Output |
1438
+ |-------|------------|
1439
+ | `text-wrap` | `text-wrap: wrap;` |
1440
+ | `text-nowrap` | `text-wrap: nowrap;` |
1441
+ | `text-balance` | `text-wrap: balance;` |
1442
+ | `text-pretty` | `text-wrap: pretty;` |
1443
+
1444
+ #### touch-action
1445
+
1446
+ | Value | CSS Output |
1447
+ |-------|------------|
1448
+ | `auto` | `touch-action: auto;` |
1449
+ | `none` | `touch-action: none;` |
1450
+ | `pan-x` | `touch-action: pan-x;` |
1451
+ | `pan-y` | `touch-action: pan-y;` |
1452
+ | `pan-left` | `touch-action: pan-left;` |
1453
+ | `pan-right` | `touch-action: pan-right;` |
1454
+ | `pinch-zoom` | `touch-action: pinch-zoom;` |
1455
+ | `manipulation` | `touch-action: manipulation;` |
1456
+
1457
+ #### transform-backface
1458
+
1459
+ | Value | CSS Output |
1460
+ |-------|------------|
1461
+ | `visible` | `backface-visibility: visible;` |
1462
+ | `hidden` | `backface-visibility: hidden;` |
1463
+
1464
+ #### transform-origin
1465
+
1466
+ | Value | CSS Output |
1467
+ |-------|------------|
1468
+ | `center` | `transform-origin: center;` |
1469
+ | `top` | `transform-origin: top;` |
1470
+ | `top-right` | `transform-origin: top right;` |
1471
+ | `right` | `transform-origin: right;` |
1472
+ | `bottom-right` | `transform-origin: bottom right;` |
1473
+ | `bottom` | `transform-origin: bottom;` |
1474
+ | `bottom-left` | `transform-origin: bottom left;` |
1475
+ | `left` | `transform-origin: left;` |
1476
+ | `top-left` | `transform-origin: top left;` |
1477
+
1478
+ #### transform-perspective
1479
+
1480
+ | Value | CSS Output |
1481
+ |-------|------------|
1482
+ | `none` | `perspective: none;` |
1483
+ | `dramatic` | `perspective: 100px;` |
1484
+ | `near` | `perspective: 300px;` |
1485
+ | `normal` | `perspective: 500px;` |
1486
+ | `midrange` | `perspective: 800px;` |
1487
+ | `far` | `perspective: 1000px;` |
1488
+ | `distant` | `perspective: 1200px;` |
1489
+
1490
+ #### transform-perspective-origin
1491
+
1492
+ | Value | CSS Output |
1493
+ |-------|------------|
1494
+ | `center` | `perspective-origin: center;` |
1495
+ | `top` | `perspective-origin: top;` |
1496
+ | `bottom` | `perspective-origin: bottom;` |
1497
+ | `left` | `perspective-origin: left;` |
1498
+ | `right` | `perspective-origin: right;` |
1499
+ | `top-left` | `perspective-origin: top left;` |
1500
+ | `top-right` | `perspective-origin: top right;` |
1501
+ | `bottom-left` | `perspective-origin: bottom left;` |
1502
+ | `bottom-right` | `perspective-origin: bottom right;` |
1503
+
1504
+ #### transform-rotate
1505
+
1506
+ | Value | CSS Output |
1507
+ |-------|------------|
1508
+ | `0` | `transform: rotate(0deg);` |
1509
+ | `45` | `transform: rotate(45deg);` |
1510
+ | `90` | `transform: rotate(90deg);` |
1511
+ | `180` | `transform: rotate(180deg);` |
1512
+
1513
+ #### transform-rotate-3d
1514
+
1515
+ | Value | CSS Output |
1516
+ |-------|------------|
1517
+ | `0` | `transform: rotateX(0deg);` |
1518
+ | `45` | `transform: rotateX(45deg);` |
1519
+ | `90` | `transform: rotateX(90deg);` |
1520
+ | `180` | `transform: rotateX(180deg);` |
1521
+
1522
+ #### transform-scale
1523
+
1524
+ | Value | CSS Output |
1525
+ |-------|------------|
1526
+ | `0` | `transform: scale(0);` |
1527
+ | `50` | `transform: scale(0.5);` |
1528
+ | `75` | `transform: scale(0.75);` |
1529
+ | `100` | `transform: scale(1);` |
1530
+ | `110` | `transform: scale(1.1);` |
1531
+ | `125` | `transform: scale(1.25);` |
1532
+ | `150` | `transform: scale(1.5);` |
1533
+
1534
+ #### transform-skew
1535
+
1536
+ | Value | CSS Output |
1537
+ |-------|------------|
1538
+ | `0` | `transform: skewX(0deg);` |
1539
+ | `3` | `transform: skewX(3deg);` |
1540
+ | `6` | `transform: skewX(6deg);` |
1541
+ | `12` | `transform: skewX(12deg);` |
1542
+
1543
+ #### transform-style
1544
+
1545
+ | Value | CSS Output |
1546
+ |-------|------------|
1547
+ | `flat` | `transform-style: flat;` |
1548
+ | `preserve-3d` | `transform-style: preserve-3d;` |
1549
+
1550
+ #### transform-translate
1551
+
1552
+ | Value | CSS Output |
1553
+ |-------|------------|
1554
+ | `0` | `transform: translateX(0);` |
1555
+ | `tiny` | `transform: translateX(var(--sp-tiny));` |
1556
+ | `small` | `transform: translateX(var(--sp-small));` |
1557
+ | `medium` | `transform: translateX(var(--sp-medium));` |
1558
+ | `big` | `transform: translateX(var(--sp-big));` |
1559
+ | `full` | `transform: translateX(100%);` |
1560
+ | `1/2` | `transform: translateX(50%);` |
1561
+ | `-full` | `transform: translateX(-100%);` |
1562
+ | `-1/2` | `transform: translateX(-50%);` |
1563
+
1564
+ #### transform-translate-z
1565
+
1566
+ | Value | CSS Output |
1567
+ |-------|------------|
1568
+ | `0` | `transform: translateZ(0);` |
1569
+ | `near` | `transform: translateZ(50px);` |
1570
+ | `far` | `transform: translateZ(-50px);` |
1571
+
1572
+ #### transition-delay
1573
+
1574
+ | Value | CSS Output |
1575
+ |-------|------------|
1576
+ | `instant` | `transition-delay: 75ms;` |
1577
+ | `quick` | `transition-delay: 100ms;` |
1578
+ | `fast` | `transition-delay: 150ms;` |
1579
+ | `normal` | `transition-delay: 200ms;` |
1580
+ | `slow` | `transition-delay: 300ms;` |
1581
+
1582
+ #### transition-duration
1583
+
1584
+ | Value | CSS Output |
1585
+ |-------|------------|
1586
+ | `instant` | `transition-duration: 75ms;` |
1587
+ | `quick` | `transition-duration: 100ms;` |
1588
+ | `fast` | `transition-duration: 150ms;` |
1589
+ | `normal` | `transition-duration: 200ms;` |
1590
+ | `slow` | `transition-duration: 300ms;` |
1591
+ | `slower` | `transition-duration: 500ms;` |
1592
+ | `lazy` | `transition-duration: 700ms;` |
1593
+
1594
+ #### transition-property
1595
+
1596
+ | Value | CSS Output |
1597
+ |-------|------------|
1598
+ | `none` | `transition-property: none;` |
1599
+ | `all` | `transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1600
+ | `colors` | `transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1601
+ | `opacity` | `transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1602
+ | `shadow` | `transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1603
+ | `transform` | `transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
1604
+
1605
+ #### transition-timing
1606
+
1607
+ | Value | CSS Output |
1608
+ |-------|------------|
1609
+ | `linear` | `transition-timing-function: linear;` |
1610
+ | `in` | `transition-timing-function: cubic-bezier(0.4, 0, 1, 1);` |
1611
+ | `out` | `transition-timing-function: cubic-bezier(0, 0, 0.2, 1);` |
1612
+ | `in-out` | `transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);` |
1613
+
1614
+ #### typography-keywords
1615
+
1616
+ | Value | CSS Output |
1617
+ |-------|------------|
1618
+ | `italic` | `font-style: italic;` |
1619
+ | `not-italic` | `font-style: normal;` |
1620
+ | `antialiased` | `-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;` |
1621
+ | `subpixel-antialiased` | `-webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto;` |
1622
+ | `uppercase` | `text-transform: uppercase;` |
1623
+ | `lowercase` | `text-transform: lowercase;` |
1624
+ | `capitalize` | `text-transform: capitalize;` |
1625
+ | `normal-case` | `text-transform: none;` |
1626
+ | `underline` | `text-decoration-line: underline;` |
1627
+ | `overline` | `text-decoration-line: overline;` |
1628
+ | `line-through` | `text-decoration-line: line-through;` |
1629
+ | `no-underline` | `text-decoration-line: none;` |
1630
+ | `decoration-solid` | `text-decoration-style: solid;` |
1631
+ | `decoration-double` | `text-decoration-style: double;` |
1632
+ | `decoration-dotted` | `text-decoration-style: dotted;` |
1633
+ | `decoration-dashed` | `text-decoration-style: dashed;` |
1634
+ | `decoration-wavy` | `text-decoration-style: wavy;` |
1635
+ | `truncate` | `overflow: hidden; text-overflow: ellipsis; white-space: nowrap;` |
1636
+ | `text-ellipsis` | `text-overflow: ellipsis;` |
1637
+ | `text-clip` | `text-overflow: clip;` |
1638
+ | `text-wrap` | `text-wrap: wrap;` |
1639
+ | `text-nowrap` | `text-wrap: nowrap;` |
1640
+ | `text-balance` | `text-wrap: balance;` |
1641
+ | `text-pretty` | `text-wrap: pretty;` |
1642
+ | `whitespace-normal` | `white-space: normal;` |
1643
+ | `whitespace-nowrap` | `white-space: nowrap;` |
1644
+ | `whitespace-pre` | `white-space: pre;` |
1645
+ | `whitespace-pre-line` | `white-space: pre-line;` |
1646
+ | `whitespace-pre-wrap` | `white-space: pre-wrap;` |
1647
+ | `whitespace-break-spaces` | `white-space: break-spaces;` |
1648
+ | `break-normal` | `overflow-wrap: normal; word-break: normal;` |
1649
+ | `break-words` | `overflow-wrap: break-word;` |
1650
+ | `break-all` | `word-break: break-all;` |
1651
+ | `break-keep` | `word-break: keep-all;` |
1652
+ | `hyphens-none` | `hyphens: none;` |
1653
+ | `hyphens-manual` | `hyphens: manual;` |
1654
+ | `hyphens-auto` | `hyphens: auto;` |
1655
+ | `align-baseline` | `vertical-align: baseline;` |
1656
+ | `align-top` | `vertical-align: top;` |
1657
+ | `align-middle` | `vertical-align: middle;` |
1658
+ | `align-bottom` | `vertical-align: bottom;` |
1659
+ | `align-text-top` | `vertical-align: text-top;` |
1660
+ | `align-text-bottom` | `vertical-align: text-bottom;` |
1661
+ | `align-sub` | `vertical-align: sub;` |
1662
+ | `align-super` | `vertical-align: super;` |
1663
+ | `list-none` | `list-style-type: none;` |
1664
+ | `list-disc` | `list-style-type: disc;` |
1665
+ | `list-decimal` | `list-style-type: decimal;` |
1666
+ | `list-square` | `list-style-type: square;` |
1667
+ | `list-inside` | `list-style-position: inside;` |
1668
+ | `list-outside` | `list-style-position: outside;` |
1669
+
1670
+ #### user-select
1671
+
1672
+ | Value | CSS Output |
1673
+ |-------|------------|
1674
+ | `none` | `user-select: none;` |
1675
+ | `text` | `user-select: text;` |
1676
+ | `all` | `user-select: all;` |
1677
+ | `auto` | `user-select: auto;` |
1678
+
1679
+ #### vertical-align
1680
+
1681
+ | Value | CSS Output |
1682
+ |-------|------------|
1683
+ | `baseline` | `vertical-align: baseline;` |
1684
+ | `top` | `vertical-align: top;` |
1685
+ | `middle` | `vertical-align: middle;` |
1686
+ | `bottom` | `vertical-align: bottom;` |
1687
+ | `text-top` | `vertical-align: text-top;` |
1688
+ | `text-bottom` | `vertical-align: text-bottom;` |
1689
+ | `sub` | `vertical-align: sub;` |
1690
+ | `super` | `vertical-align: super;` |
1691
+
1692
+ #### whitespace
1693
+
1694
+ | Value | CSS Output |
1695
+ |-------|------------|
1696
+ | `normal` | `white-space: normal;` |
1697
+ | `nowrap` | `white-space: nowrap;` |
1698
+ | `pre` | `white-space: pre;` |
1699
+ | `pre-line` | `white-space: pre-line;` |
1700
+ | `pre-wrap` | `white-space: pre-wrap;` |
1701
+ | `break-spaces` | `white-space: break-spaces;` |
1702
+
1703
+ #### will-change
1704
+
1705
+ | Value | CSS Output |
1706
+ |-------|------------|
1707
+ | `auto` | `will-change: auto;` |
1708
+ | `scroll` | `will-change: scroll-position;` |
1709
+ | `contents` | `will-change: contents;` |
1710
+ | `transform` | `will-change: transform;` |
1711
+ | `opacity` | `will-change: opacity;` |
1712
+
1713
+ #### word-break
1714
+
1715
+ | Value | CSS Output |
1716
+ |-------|------------|
1717
+ | `break-normal` | `overflow-wrap: normal; word-break: normal;` |
1718
+ | `break-words` | `overflow-wrap: break-word;` |
1719
+ | `break-all` | `word-break: break-all;` |
1720
+ | `break-keep` | `word-break: keep-all;` |
1721
+
1722
+ #### writing-mode
1723
+
1724
+ | Value | CSS Output |
1725
+ |-------|------------|
1726
+ | `horizontal-tb` | `writing-mode: horizontal-tb;` |
1727
+ | `vertical-rl` | `writing-mode: vertical-rl;` |
1728
+ | `vertical-lr` | `writing-mode: vertical-lr;` |
1729
+ | `sideways-rl` | `writing-mode: sideways-rl;` |
1730
+ | `sideways-lr` | `writing-mode: sideways-lr;` |
1731
+