@homebound/beam 2.217.1 → 2.218.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/Css.js CHANGED
@@ -1,896 +1,3365 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.mdOrLg = exports.lg = exports.mdAndDown = exports.mdAndUp = exports.smOrMd = exports.md = exports.sm = exports.print = exports.Breakpoints = exports.Css = exports.Palette = exports.px = exports.increment = exports.maybeInc = void 0;
4
- // prettier-ignore
3
+ exports.Breakpoints = exports.Css = exports.Palette = exports.px = exports.increment = exports.maybeInc = void 0;
5
4
  class CssBuilder {
6
5
  constructor(opts) {
7
6
  this.opts = opts;
8
7
  }
9
- get rules() { return this.opts.rules; }
10
- ;
11
- get enabled() { return this.opts.enabled; }
12
- ;
13
- get selector() { return this.opts.selector; }
14
- ;
8
+ get rules() {
9
+ return this.opts.rules;
10
+ }
11
+ get enabled() {
12
+ return this.opts.enabled;
13
+ }
14
+ get selector() {
15
+ return this.opts.selector;
16
+ }
15
17
  newCss(opts) {
16
18
  return new CssBuilder({ ...this.opts, ...opts });
17
19
  }
18
- // border
19
- get ba() { return this.add("borderStyle", "solid").add("borderWidth", "1px"); }
20
- get bt() { return this.add("borderTopStyle", "solid").add("borderTopWidth", "1px"); }
21
- get br() { return this.add("borderRightStyle", "solid").add("borderRightWidth", "1px"); }
22
- get bb() { return this.add("borderBottomStyle", "solid").add("borderBottomWidth", "1px"); }
23
- get bl() { return this.add("borderLeftStyle", "solid").add("borderLeftWidth", "1px"); }
24
- get bn() { return this.add("borderStyle", "none").add("borderWidth", "0"); }
25
- // borderColor
26
- get bWhite() { return this.add("borderColor", "rgba(254,254,254,1)"); }
27
- get bTransparent() { return this.add("borderColor", "rgba(0,0,0,0)"); }
28
- get bGray50() { return this.add("borderColor", "rgba(255,253,253,1)"); }
29
- get bGray100() { return this.add("borderColor", "rgba(247,245,245,1)"); }
30
- get bGray200() { return this.add("borderColor", "rgba(236,235,235,1)"); }
31
- get bGray300() { return this.add("borderColor", "rgba(221,220,220,1)"); }
32
- get bGray400() { return this.add("borderColor", "rgba(201,201,201,1)"); }
33
- get bGray500() { return this.add("borderColor", "rgba(175,175,175,1)"); }
34
- get bGray600() { return this.add("borderColor", "rgba(141,141,141,1)"); }
35
- get bGray700() { return this.add("borderColor", "rgba(100,100,100,1)"); }
36
- get bGray800() { return this.add("borderColor", "rgba(53,53,53,1)"); }
37
- get bGray900() { return this.add("borderColor", "rgba(36,36,36,1)"); }
38
- get bLightBlue50() { return this.add("borderColor", "rgba(240,249,255,1)"); }
39
- get bLightBlue100() { return this.add("borderColor", "rgba(224,242,254,1)"); }
40
- get bLightBlue200() { return this.add("borderColor", "rgba(186,230,253,1)"); }
41
- get bLightBlue300() { return this.add("borderColor", "rgba(125,211,252,1)"); }
42
- get bLightBlue400() { return this.add("borderColor", "rgba(56,189,248,1)"); }
43
- get bLightBlue500() { return this.add("borderColor", "rgba(14,165,233,1)"); }
44
- get bLightBlue600() { return this.add("borderColor", "rgba(2,143,199,1)"); }
45
- get bLightBlue700() { return this.add("borderColor", "rgba(3,105,161,1)"); }
46
- get bLightBlue800() { return this.add("borderColor", "rgba(7,89,133,1)"); }
47
- get bLightBlue900() { return this.add("borderColor", "rgba(12,74,110,1)"); }
48
- get bRed50() { return this.add("borderColor", "rgba(255,242,242,1)"); }
49
- get bRed100() { return this.add("borderColor", "rgba(253,210,209,1)"); }
50
- get bRed200() { return this.add("borderColor", "rgba(249,181,177,1)"); }
51
- get bRed300() { return this.add("borderColor", "rgba(242,155,148,1)"); }
52
- get bRed400() { return this.add("borderColor", "rgba(232,133,122,1)"); }
53
- get bRed500() { return this.add("borderColor", "rgba(218,114,100,1)"); }
54
- get bRed600() { return this.add("borderColor", "rgba(200,98,81,1)"); }
55
- get bRed700() { return this.add("borderColor", "rgba(176,83,73,1)"); }
56
- get bRed800() { return this.add("borderColor", "rgba(149,68,64,1)"); }
57
- get bRed900() { return this.add("borderColor", "rgba(120,54,54,1)"); }
58
- get bYellow50() { return this.add("borderColor", "rgba(255,254,242,1)"); }
59
- get bYellow100() { return this.add("borderColor", "rgba(255,254,212,1)"); }
60
- get bYellow200() { return this.add("borderColor", "rgba(255,250,180,1)"); }
61
- get bYellow300() { return this.add("borderColor", "rgba(255,240,150,1)"); }
62
- get bYellow400() { return this.add("borderColor", "rgba(255,225,123,1)"); }
63
- get bYellow500() { return this.add("borderColor", "rgba(255,204,99,1)"); }
64
- get bYellow600() { return this.add("borderColor", "rgba(246,177,78,1)"); }
65
- get bYellow700() { return this.add("borderColor", "rgba(207,150,73,1)"); }
66
- get bYellow800() { return this.add("borderColor", "rgba(164,120,66,1)"); }
67
- get bYellow900() { return this.add("borderColor", "rgba(120,89,54,1)"); }
68
- get bGreen50() { return this.add("borderColor", "rgba(250,255,250,1)"); }
69
- get bGreen100() { return this.add("borderColor", "rgba(223,248,216,1)"); }
70
- get bGreen200() { return this.add("borderColor", "rgba(199,239,183,1)"); }
71
- get bGreen300() { return this.add("borderColor", "rgba(179,226,153,1)"); }
72
- get bGreen400() { return this.add("borderColor", "rgba(163,208,126,1)"); }
73
- get bGreen500() { return this.add("borderColor", "rgba(146,185,101,1)"); }
74
- get bGreen600() { return this.add("borderColor", "rgba(126,156,79,1)"); }
75
- get bGreen700() { return this.add("borderColor", "rgba(101,120,57,1)"); }
76
- get bGreen800() { return this.add("borderColor", "rgba(64,93,44,1)"); }
77
- get bGreen900() { return this.add("borderColor", "rgba(34,64,31,1)"); }
78
- get bViolet50() { return this.add("borderColor", "rgba(245,243,255,1)"); }
79
- get bViolet100() { return this.add("borderColor", "rgba(238,234,253,1)"); }
80
- get bViolet200() { return this.add("borderColor", "rgba(232,225,252,1)"); }
81
- get bViolet300() { return this.add("borderColor", "rgba(218,205,246,1)"); }
82
- get bViolet400() { return this.add("borderColor", "rgba(204,186,236,1)"); }
83
- get bViolet500() { return this.add("borderColor", "rgba(190,167,223,1)"); }
84
- get bViolet600() { return this.add("borderColor", "rgba(173,147,205,1)"); }
85
- get bViolet700() { return this.add("borderColor", "rgba(153,126,181,1)"); }
86
- get bViolet800() { return this.add("borderColor", "rgba(128,103,151,1)"); }
87
- get bViolet900() { return this.add("borderColor", "rgba(100,78,116,1)"); }
88
- bc(value) { return this.add("borderColor", value); }
89
- // borderRadius
90
- get br0() { return this.add("borderRadius", "0"); }
91
- get br4() { return this.add("borderRadius", "4px"); }
92
- get br8() { return this.add("borderRadius", "8px"); }
93
- get br12() { return this.add("borderRadius", "12px"); }
94
- get br16() { return this.add("borderRadius", "16px"); }
95
- get br24() { return this.add("borderRadius", "24px"); }
96
- get br100() { return this.add("borderRadius", "100%"); }
97
- borderRadius(value) { return this.add("borderRadius", value); }
98
- get brt4() { return this.add("borderTopRightRadius", "4px").add("borderTopLeftRadius", "4px"); }
99
- get brb4() { return this.add("borderBottomRightRadius", "4px").add("borderBottomLeftRadius", "4px"); }
100
- // borderStyle
101
- get bsDashed() { return this.add("borderStyle", "dashed"); }
102
- get bsDotted() { return this.add("borderStyle", "dotted"); }
103
- get bsNone() { return this.add("borderStyle", "none"); }
104
- get bsSolid() { return this.add("borderStyle", "solid"); }
105
- bs(value) { return this.add("borderStyle", value); }
106
- // borderWidth
107
- get bw1() { return this.add("borderWidth", "1px"); }
108
- get bw2() { return this.add("borderWidth", "2px"); }
109
- bw(value) { return this.add("borderWidth", value); }
110
- // boxShadow
111
- get bsh0() { return this.add("boxShadow", "none"); }
112
- get bshBasic() { return this.add("boxShadow", "0px 2px 16px 0px rgba(17,24,39,0.03), 0px 4px 8px 0px rgba(17,24,39,0.08)"); }
113
- get bshHover() { return this.add("boxShadow", "0px 2px 24px 0px rgba(17,24,39,0.08), 0px 4px 8px 0px rgba(17,24,39,0.1)"); }
114
- get bshFocus() { return this.add("boxShadow", "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(3,105,161,1)"); }
115
- get bshDanger() { return this.add("boxShadow", "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(149,68,64,1)"); }
116
- get bshModal() { return this.add("boxShadow", "0px 20px 25px -5px rgba(0,0,0,0.1), 0px 10px 10px -5px rgba(0,0,0,0.04)"); }
117
- boxShadow(value) { return this.add("boxShadow", value); }
118
- // coordinates
119
- get top0() { return this.top(0); }
120
- get top1() { return this.top(1); }
121
- get top2() { return this.top(2); }
122
- get top3() { return this.top(3); }
123
- get top4() { return this.top(4); }
124
- get top5() { return this.top(5); }
125
- get top6() { return this.top(6); }
126
- get top7() { return this.top(7); }
127
- get top8() { return this.top(8); }
128
- top(inc) { return this.add("top", maybeInc(inc)); }
129
- topPx(px) { return this.top(`${px}px`); }
130
- get right0() { return this.right(0); }
131
- get right1() { return this.right(1); }
132
- get right2() { return this.right(2); }
133
- get right3() { return this.right(3); }
134
- get right4() { return this.right(4); }
135
- get right5() { return this.right(5); }
136
- get right6() { return this.right(6); }
137
- get right7() { return this.right(7); }
138
- get right8() { return this.right(8); }
139
- right(inc) { return this.add("right", maybeInc(inc)); }
140
- rightPx(px) { return this.right(`${px}px`); }
141
- get bottom0() { return this.bottom(0); }
142
- get bottom1() { return this.bottom(1); }
143
- get bottom2() { return this.bottom(2); }
144
- get bottom3() { return this.bottom(3); }
145
- get bottom4() { return this.bottom(4); }
146
- get bottom5() { return this.bottom(5); }
147
- get bottom6() { return this.bottom(6); }
148
- get bottom7() { return this.bottom(7); }
149
- get bottom8() { return this.bottom(8); }
150
- bottom(inc) { return this.add("bottom", maybeInc(inc)); }
151
- bottomPx(px) { return this.bottom(`${px}px`); }
152
- get left0() { return this.left(0); }
153
- get left1() { return this.left(1); }
154
- get left2() { return this.left(2); }
155
- get left3() { return this.left(3); }
156
- get left4() { return this.left(4); }
157
- get left5() { return this.left(5); }
158
- get left6() { return this.left(6); }
159
- get left7() { return this.left(7); }
160
- get left8() { return this.left(8); }
161
- left(inc) { return this.add("left", maybeInc(inc)); }
162
- leftPx(px) { return this.left(`${px}px`); }
163
- // cursor
164
- get cursorPointer() { return this.add("cursor", "pointer"); }
165
- get cursorNotAllowed() { return this.add("cursor", "not-allowed"); }
166
- cursor(value) { return this.add("cursor", value); }
167
- // display
168
- get dn() { return this.add("display", "none"); }
169
- get db() { return this.add("display", "block"); }
170
- get dib() { return this.add("display", "inline-block"); }
171
- get dit() { return this.add("display", "inline-table"); }
172
- get dt() { return this.add("display", "table"); }
173
- get dtc() { return this.add("display", "table-cell"); }
174
- get dtRow() { return this.add("display", "table-row"); }
175
- get dtColumn() { return this.add("display", "table-column"); }
176
- get dtColumnGroup() { return this.add("display", "table-column-group"); }
177
- get dg() { return this.add("display", "grid"); }
178
- get dig() { return this.add("display", "inline-grid"); }
179
- get df() { return this.add("display", "flex"); }
180
- get dif() { return this.add("display", "inline-flex"); }
181
- display(value) { return this.add("display", value); }
182
- // flexbox
183
- get fi() { return this.add("flex", "initial"); }
184
- get fa() { return this.add("flex", "auto"); }
185
- get fn() { return this.add("flex", "none"); }
186
- get f1() { return this.add("flex", "1"); }
187
- get f2() { return this.add("flex", "2"); }
188
- get f3() { return this.add("flex", "3"); }
189
- get f4() { return this.add("flex", "4"); }
190
- get f5() { return this.add("flex", "5"); }
191
- f(value) { return this.add("flex", value); }
192
- get jcfs() { return this.add("justifyContent", "flex-start"); }
193
- get jcfe() { return this.add("justifyContent", "flex-end"); }
194
- get jcc() { return this.add("justifyContent", "center"); }
195
- get jcsb() { return this.add("justifyContent", "space-between"); }
196
- get jcsa() { return this.add("justifyContent", "space-around"); }
197
- get jcse() { return this.add("justifyContent", "space-evenly"); }
198
- jc(value) { return this.add("justifyContent", value); }
199
- get jifs() { return this.add("justifyItems", "flex-start"); }
200
- get jife() { return this.add("justifyItems", "flex-end"); }
201
- get jic() { return this.add("justifyItems", "center"); }
202
- get jisb() { return this.add("justifyItems", "space-between"); }
203
- get jisa() { return this.add("justifyItems", "space-around"); }
204
- get jise() { return this.add("justifyItems", "space-evenly"); }
205
- ji(value) { return this.add("justifyItems", value); }
206
- get asfs() { return this.add("alignSelf", "flex-start"); }
207
- get asfe() { return this.add("alignSelf", "flex-end"); }
208
- get asc() { return this.add("alignSelf", "center"); }
209
- get asb() { return this.add("alignSelf", "baseline"); }
210
- get asStretch() { return this.add("alignSelf", "stretch"); }
211
- as(value) { return this.add("alignSelf", value); }
212
- get aifs() { return this.add("alignItems", "flex-start"); }
213
- get aife() { return this.add("alignItems", "flex-end"); }
214
- get aic() { return this.add("alignItems", "center"); }
215
- get aib() { return this.add("alignItems", "baseline"); }
216
- get ais() { return this.add("alignItems", "stretch"); }
217
- ai(value) { return this.add("alignItems", value); }
218
- get fb1() { return this.add("flexBasis", "100%"); }
219
- get fb2() { return this.add("flexBasis", "50%"); }
220
- get fb3() { return this.add("flexBasis", "33.333333%"); }
221
- get fb4() { return this.add("flexBasis", "25%"); }
222
- get fb5() { return this.add("flexBasis", "20%"); }
223
- get fb6() { return this.add("flexBasis", "16.666666%"); }
224
- get fb7() { return this.add("flexBasis", "14.285714%"); }
225
- get fb0() { return this.add("flexBasis", "12.5%"); }
226
- fb(value) { return this.add("flexBasis", value); }
227
- get flexAuto() { return this.add("flex", "auto"); }
228
- get flexNone() { return this.add("flex", "none"); }
229
- flex(value) { return this.add("flex", value); }
230
- get fg0() { return this.add("flexGrow", 0); }
231
- get fg1() { return this.add("flexGrow", 1); }
232
- flexGrow(value) { return this.add("flexGrow", value); }
233
- get fs0() { return this.add("flexShrink", 0); }
234
- get fs1() { return this.add("flexShrink", 1); }
235
- flexShrink(value) { return this.add("flexShrink", value); }
236
- get fdr() { return this.add("flexDirection", "row"); }
237
- get fdrr() { return this.add("flexDirection", "row-reverse"); }
238
- get fdc() { return this.add("flexDirection", "column"); }
239
- get fdcr() { return this.add("flexDirection", "column-reverse"); }
240
- fd(value) { return this.add("flexDirection", value); }
241
- // float
242
- get fl() { return this.add("float", "left"); }
243
- get fr() { return this.add("float", "right"); }
244
- float(value) { return this.add("float", value); }
245
- // fontWeight
246
- get normal() { return this.add("fontWeight", "normal"); }
247
- get b() { return this.add("fontWeight", "bold"); }
248
- get fw1() { return this.add("fontWeight", 100); }
249
- get fw2() { return this.add("fontWeight", 200); }
250
- get fw3() { return this.add("fontWeight", 300); }
251
- get fw4() { return this.add("fontWeight", 400); }
252
- get fw5() { return this.add("fontWeight", 500); }
253
- get fw6() { return this.add("fontWeight", 600); }
254
- get fw7() { return this.add("fontWeight", 700); }
255
- get fw8() { return this.add("fontWeight", 800); }
256
- get fw9() { return this.add("fontWeight", 900); }
257
- fw(value) { return this.add("fontWeight", value); }
258
- // grid
259
- gtc(value) { return this.add("gridTemplateColumns", value); }
260
- gtr(value) { return this.add("gridTemplateRows", value); }
261
- gr(value) { return this.add("gridRow", value); }
262
- gc(value) { return this.add("gridColumn", value); }
263
- get gap0() { return this.gap(0); }
264
- get gap1() { return this.gap(1); }
265
- get gap2() { return this.gap(2); }
266
- get gap3() { return this.gap(3); }
267
- get gap4() { return this.gap(4); }
268
- get gap5() { return this.gap(5); }
269
- get gap6() { return this.gap(6); }
270
- get gap7() { return this.gap(7); }
271
- get gap8() { return this.gap(8); }
272
- gap(inc) { return this.add("gap", maybeInc(inc)); }
273
- gapPx(px) { return this.gap(`${px}px`); }
274
- get rg0() { return this.rg(0); }
275
- get rg1() { return this.rg(1); }
276
- get rg2() { return this.rg(2); }
277
- get rg3() { return this.rg(3); }
278
- get rg4() { return this.rg(4); }
279
- get rg5() { return this.rg(5); }
280
- get rg6() { return this.rg(6); }
281
- get rg7() { return this.rg(7); }
282
- get rg8() { return this.rg(8); }
283
- rg(inc) { return this.add("rowGap", maybeInc(inc)); }
284
- rgPx(px) { return this.rg(`${px}px`); }
285
- get cg0() { return this.cg(0); }
286
- get cg1() { return this.cg(1); }
287
- get cg2() { return this.cg(2); }
288
- get cg3() { return this.cg(3); }
289
- get cg4() { return this.cg(4); }
290
- get cg5() { return this.cg(5); }
291
- get cg6() { return this.cg(6); }
292
- get cg7() { return this.cg(7); }
293
- get cg8() { return this.cg(8); }
294
- cg(inc) { return this.add("columnGap", maybeInc(inc)); }
295
- cgPx(px) { return this.cg(`${px}px`); }
296
- // height
297
- get h0() { return this.h(0); }
298
- get h1() { return this.h(1); }
299
- get h2() { return this.h(2); }
300
- get h3() { return this.h(3); }
301
- get h4() { return this.h(4); }
302
- get h5() { return this.h(5); }
303
- get h6() { return this.h(6); }
304
- get h7() { return this.h(7); }
305
- get h8() { return this.h(8); }
306
- h(inc) { return this.add("height", maybeInc(inc)); }
307
- hPx(px) { return this.h(`${px}px`); }
308
- get h25() { return this.add("height", "25%"); }
309
- get h50() { return this.add("height", "50%"); }
310
- get h75() { return this.add("height", "75%"); }
311
- get h100() { return this.add("height", "100%"); }
312
- get vh25() { return this.add("height", "25vh"); }
313
- get vh50() { return this.add("height", "50vh"); }
314
- get vh75() { return this.add("height", "75vh"); }
315
- get vh100() { return this.add("height", "100vh"); }
316
- get mh0() { return this.add("minHeight", 0); }
317
- get mh25() { return this.add("minHeight", "25%"); }
318
- get mh50() { return this.add("minHeight", "50%"); }
319
- get mh75() { return this.add("minHeight", "75%"); }
320
- get mh100() { return this.add("minHeight", "100%"); }
321
- get mvh100() { return this.add("minHeight", "100vh"); }
322
- mh(value) { return this.add("minHeight", value); }
323
- mhPx(px) { return this.add("minHeight", `${px}px`); }
324
- get maxh0() { return this.add("maxHeight", "0"); }
325
- get maxh25() { return this.add("maxHeight", "25%"); }
326
- get maxh50() { return this.add("maxHeight", "50%"); }
327
- get maxh75() { return this.add("maxHeight", "75%"); }
328
- get maxh100() { return this.add("maxHeight", "100%"); }
329
- maxh(value) { return this.add("maxHeight", value); }
330
- maxhPx(px) { return this.add("maxHeight", `${px}px`); }
331
- // lineClamp
332
- get lineClamp1() { return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitBoxOrient", "vertical").add("WebkitLineClamp", 1).add("textOverflow", "ellipsis"); }
333
- get lineClamp2() { return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitBoxOrient", "vertical").add("WebkitLineClamp", 2).add("textOverflow", "ellipsis"); }
334
- get lineClamp3() { return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitBoxOrient", "vertical").add("WebkitLineClamp", 3).add("textOverflow", "ellipsis"); }
335
- get lineClamp4() { return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitBoxOrient", "vertical").add("WebkitLineClamp", 4).add("textOverflow", "ellipsis"); }
336
- get lineClamp5() { return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitBoxOrient", "vertical").add("WebkitLineClamp", 5).add("textOverflow", "ellipsis"); }
337
- get lineClamp6() { return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitBoxOrient", "vertical").add("WebkitLineClamp", 6).add("textOverflow", "ellipsis"); }
338
- get lineClampNone() { return this.add("WebkitLineClamp", "unset"); }
339
- // objectFit
340
- get objectContain() { return this.add("objectFit", "contain"); }
341
- get objectCover() { return this.add("objectFit", "cover"); }
342
- get objectFill() { return this.add("objectFit", "fill"); }
343
- get objectNone() { return this.add("objectFit", "none"); }
344
- get objectScaleDown() { return this.add("objectFit", "scale-down"); }
345
- objectFit(value) { return this.add("objectFit", value); }
346
- // outline
347
- get outline1() { return this.add("outline", "1px solid"); }
348
- get outlineTransparent() { return this.add("outline", "1px solid transparent"); }
349
- get outline0() { return this.add("outline", "0"); }
350
- outline(value) { return this.add("outline", value); }
351
- // overflow
352
- get overflowVisible() { return this.add("overflow", "visible"); }
353
- get overflowHidden() { return this.add("overflow", "hidden"); }
354
- get overflowScroll() { return this.add("overflow", "scroll"); }
355
- get overflowAuto() { return this.add("overflow", "auto"); }
356
- overflow(value) { return this.add("overflow", value); }
357
- get overflowYVisible() { return this.add("overflowY", "visible"); }
358
- get overflowYHidden() { return this.add("overflowY", "hidden"); }
359
- get overflowYScroll() { return this.add("overflowY", "scroll"); }
360
- get overflowYAuto() { return this.add("overflowY", "auto"); }
361
- overflowY(value) { return this.add("overflowY", value); }
362
- get overflowXVisible() { return this.add("overflowX", "visible"); }
363
- get overflowXHidden() { return this.add("overflowX", "hidden"); }
364
- get overflowXScroll() { return this.add("overflowX", "scroll"); }
365
- get overflowXAuto() { return this.add("overflowX", "auto"); }
366
- overflowX(value) { return this.add("overflowX", value); }
367
- // position
368
- get absolute() { return this.add("position", "absolute"); }
369
- get fixed() { return this.add("position", "fixed"); }
370
- get static() { return this.add("position", "static"); }
371
- get relative() { return this.add("position", "relative"); }
372
- get sticky() { return this.add("position", "sticky"); }
373
- position(value) { return this.add("position", value); }
374
- // skins
375
- get white() { return this.add("color", "rgba(254,254,254,1)"); }
376
- get transparent() { return this.add("color", "rgba(0,0,0,0)"); }
377
- get gray50() { return this.add("color", "rgba(255,253,253,1)"); }
378
- get gray100() { return this.add("color", "rgba(247,245,245,1)"); }
379
- get gray200() { return this.add("color", "rgba(236,235,235,1)"); }
380
- get gray300() { return this.add("color", "rgba(221,220,220,1)"); }
381
- get gray400() { return this.add("color", "rgba(201,201,201,1)"); }
382
- get gray500() { return this.add("color", "rgba(175,175,175,1)"); }
383
- get gray600() { return this.add("color", "rgba(141,141,141,1)"); }
384
- get gray700() { return this.add("color", "rgba(100,100,100,1)"); }
385
- get gray800() { return this.add("color", "rgba(53,53,53,1)"); }
386
- get gray900() { return this.add("color", "rgba(36,36,36,1)"); }
387
- get lightBlue50() { return this.add("color", "rgba(240,249,255,1)"); }
388
- get lightBlue100() { return this.add("color", "rgba(224,242,254,1)"); }
389
- get lightBlue200() { return this.add("color", "rgba(186,230,253,1)"); }
390
- get lightBlue300() { return this.add("color", "rgba(125,211,252,1)"); }
391
- get lightBlue400() { return this.add("color", "rgba(56,189,248,1)"); }
392
- get lightBlue500() { return this.add("color", "rgba(14,165,233,1)"); }
393
- get lightBlue600() { return this.add("color", "rgba(2,143,199,1)"); }
394
- get lightBlue700() { return this.add("color", "rgba(3,105,161,1)"); }
395
- get lightBlue800() { return this.add("color", "rgba(7,89,133,1)"); }
396
- get lightBlue900() { return this.add("color", "rgba(12,74,110,1)"); }
397
- get red50() { return this.add("color", "rgba(255,242,242,1)"); }
398
- get red100() { return this.add("color", "rgba(253,210,209,1)"); }
399
- get red200() { return this.add("color", "rgba(249,181,177,1)"); }
400
- get red300() { return this.add("color", "rgba(242,155,148,1)"); }
401
- get red400() { return this.add("color", "rgba(232,133,122,1)"); }
402
- get red500() { return this.add("color", "rgba(218,114,100,1)"); }
403
- get red600() { return this.add("color", "rgba(200,98,81,1)"); }
404
- get red700() { return this.add("color", "rgba(176,83,73,1)"); }
405
- get red800() { return this.add("color", "rgba(149,68,64,1)"); }
406
- get red900() { return this.add("color", "rgba(120,54,54,1)"); }
407
- get yellow50() { return this.add("color", "rgba(255,254,242,1)"); }
408
- get yellow100() { return this.add("color", "rgba(255,254,212,1)"); }
409
- get yellow200() { return this.add("color", "rgba(255,250,180,1)"); }
410
- get yellow300() { return this.add("color", "rgba(255,240,150,1)"); }
411
- get yellow400() { return this.add("color", "rgba(255,225,123,1)"); }
412
- get yellow500() { return this.add("color", "rgba(255,204,99,1)"); }
413
- get yellow600() { return this.add("color", "rgba(246,177,78,1)"); }
414
- get yellow700() { return this.add("color", "rgba(207,150,73,1)"); }
415
- get yellow800() { return this.add("color", "rgba(164,120,66,1)"); }
416
- get yellow900() { return this.add("color", "rgba(120,89,54,1)"); }
417
- get green50() { return this.add("color", "rgba(250,255,250,1)"); }
418
- get green100() { return this.add("color", "rgba(223,248,216,1)"); }
419
- get green200() { return this.add("color", "rgba(199,239,183,1)"); }
420
- get green300() { return this.add("color", "rgba(179,226,153,1)"); }
421
- get green400() { return this.add("color", "rgba(163,208,126,1)"); }
422
- get green500() { return this.add("color", "rgba(146,185,101,1)"); }
423
- get green600() { return this.add("color", "rgba(126,156,79,1)"); }
424
- get green700() { return this.add("color", "rgba(101,120,57,1)"); }
425
- get green800() { return this.add("color", "rgba(64,93,44,1)"); }
426
- get green900() { return this.add("color", "rgba(34,64,31,1)"); }
427
- get violet50() { return this.add("color", "rgba(245,243,255,1)"); }
428
- get violet100() { return this.add("color", "rgba(238,234,253,1)"); }
429
- get violet200() { return this.add("color", "rgba(232,225,252,1)"); }
430
- get violet300() { return this.add("color", "rgba(218,205,246,1)"); }
431
- get violet400() { return this.add("color", "rgba(204,186,236,1)"); }
432
- get violet500() { return this.add("color", "rgba(190,167,223,1)"); }
433
- get violet600() { return this.add("color", "rgba(173,147,205,1)"); }
434
- get violet700() { return this.add("color", "rgba(153,126,181,1)"); }
435
- get violet800() { return this.add("color", "rgba(128,103,151,1)"); }
436
- get violet900() { return this.add("color", "rgba(100,78,116,1)"); }
437
- color(value) { return this.add("color", value); }
438
- get bgWhite() { return this.add("backgroundColor", "rgba(254,254,254,1)"); }
439
- get bgTransparent() { return this.add("backgroundColor", "rgba(0,0,0,0)"); }
440
- get bgGray50() { return this.add("backgroundColor", "rgba(255,253,253,1)"); }
441
- get bgGray100() { return this.add("backgroundColor", "rgba(247,245,245,1)"); }
442
- get bgGray200() { return this.add("backgroundColor", "rgba(236,235,235,1)"); }
443
- get bgGray300() { return this.add("backgroundColor", "rgba(221,220,220,1)"); }
444
- get bgGray400() { return this.add("backgroundColor", "rgba(201,201,201,1)"); }
445
- get bgGray500() { return this.add("backgroundColor", "rgba(175,175,175,1)"); }
446
- get bgGray600() { return this.add("backgroundColor", "rgba(141,141,141,1)"); }
447
- get bgGray700() { return this.add("backgroundColor", "rgba(100,100,100,1)"); }
448
- get bgGray800() { return this.add("backgroundColor", "rgba(53,53,53,1)"); }
449
- get bgGray900() { return this.add("backgroundColor", "rgba(36,36,36,1)"); }
450
- get bgLightBlue50() { return this.add("backgroundColor", "rgba(240,249,255,1)"); }
451
- get bgLightBlue100() { return this.add("backgroundColor", "rgba(224,242,254,1)"); }
452
- get bgLightBlue200() { return this.add("backgroundColor", "rgba(186,230,253,1)"); }
453
- get bgLightBlue300() { return this.add("backgroundColor", "rgba(125,211,252,1)"); }
454
- get bgLightBlue400() { return this.add("backgroundColor", "rgba(56,189,248,1)"); }
455
- get bgLightBlue500() { return this.add("backgroundColor", "rgba(14,165,233,1)"); }
456
- get bgLightBlue600() { return this.add("backgroundColor", "rgba(2,143,199,1)"); }
457
- get bgLightBlue700() { return this.add("backgroundColor", "rgba(3,105,161,1)"); }
458
- get bgLightBlue800() { return this.add("backgroundColor", "rgba(7,89,133,1)"); }
459
- get bgLightBlue900() { return this.add("backgroundColor", "rgba(12,74,110,1)"); }
460
- get bgRed50() { return this.add("backgroundColor", "rgba(255,242,242,1)"); }
461
- get bgRed100() { return this.add("backgroundColor", "rgba(253,210,209,1)"); }
462
- get bgRed200() { return this.add("backgroundColor", "rgba(249,181,177,1)"); }
463
- get bgRed300() { return this.add("backgroundColor", "rgba(242,155,148,1)"); }
464
- get bgRed400() { return this.add("backgroundColor", "rgba(232,133,122,1)"); }
465
- get bgRed500() { return this.add("backgroundColor", "rgba(218,114,100,1)"); }
466
- get bgRed600() { return this.add("backgroundColor", "rgba(200,98,81,1)"); }
467
- get bgRed700() { return this.add("backgroundColor", "rgba(176,83,73,1)"); }
468
- get bgRed800() { return this.add("backgroundColor", "rgba(149,68,64,1)"); }
469
- get bgRed900() { return this.add("backgroundColor", "rgba(120,54,54,1)"); }
470
- get bgYellow50() { return this.add("backgroundColor", "rgba(255,254,242,1)"); }
471
- get bgYellow100() { return this.add("backgroundColor", "rgba(255,254,212,1)"); }
472
- get bgYellow200() { return this.add("backgroundColor", "rgba(255,250,180,1)"); }
473
- get bgYellow300() { return this.add("backgroundColor", "rgba(255,240,150,1)"); }
474
- get bgYellow400() { return this.add("backgroundColor", "rgba(255,225,123,1)"); }
475
- get bgYellow500() { return this.add("backgroundColor", "rgba(255,204,99,1)"); }
476
- get bgYellow600() { return this.add("backgroundColor", "rgba(246,177,78,1)"); }
477
- get bgYellow700() { return this.add("backgroundColor", "rgba(207,150,73,1)"); }
478
- get bgYellow800() { return this.add("backgroundColor", "rgba(164,120,66,1)"); }
479
- get bgYellow900() { return this.add("backgroundColor", "rgba(120,89,54,1)"); }
480
- get bgGreen50() { return this.add("backgroundColor", "rgba(250,255,250,1)"); }
481
- get bgGreen100() { return this.add("backgroundColor", "rgba(223,248,216,1)"); }
482
- get bgGreen200() { return this.add("backgroundColor", "rgba(199,239,183,1)"); }
483
- get bgGreen300() { return this.add("backgroundColor", "rgba(179,226,153,1)"); }
484
- get bgGreen400() { return this.add("backgroundColor", "rgba(163,208,126,1)"); }
485
- get bgGreen500() { return this.add("backgroundColor", "rgba(146,185,101,1)"); }
486
- get bgGreen600() { return this.add("backgroundColor", "rgba(126,156,79,1)"); }
487
- get bgGreen700() { return this.add("backgroundColor", "rgba(101,120,57,1)"); }
488
- get bgGreen800() { return this.add("backgroundColor", "rgba(64,93,44,1)"); }
489
- get bgGreen900() { return this.add("backgroundColor", "rgba(34,64,31,1)"); }
490
- get bgViolet50() { return this.add("backgroundColor", "rgba(245,243,255,1)"); }
491
- get bgViolet100() { return this.add("backgroundColor", "rgba(238,234,253,1)"); }
492
- get bgViolet200() { return this.add("backgroundColor", "rgba(232,225,252,1)"); }
493
- get bgViolet300() { return this.add("backgroundColor", "rgba(218,205,246,1)"); }
494
- get bgViolet400() { return this.add("backgroundColor", "rgba(204,186,236,1)"); }
495
- get bgViolet500() { return this.add("backgroundColor", "rgba(190,167,223,1)"); }
496
- get bgViolet600() { return this.add("backgroundColor", "rgba(173,147,205,1)"); }
497
- get bgViolet700() { return this.add("backgroundColor", "rgba(153,126,181,1)"); }
498
- get bgViolet800() { return this.add("backgroundColor", "rgba(128,103,151,1)"); }
499
- get bgViolet900() { return this.add("backgroundColor", "rgba(100,78,116,1)"); }
500
- bgColor(value) { return this.add("backgroundColor", value); }
501
- get fWhite() { return this.add("fill", "rgba(254,254,254,1)"); }
502
- get fTransparent() { return this.add("fill", "rgba(0,0,0,0)"); }
503
- get fGray50() { return this.add("fill", "rgba(255,253,253,1)"); }
504
- get fGray100() { return this.add("fill", "rgba(247,245,245,1)"); }
505
- get fGray200() { return this.add("fill", "rgba(236,235,235,1)"); }
506
- get fGray300() { return this.add("fill", "rgba(221,220,220,1)"); }
507
- get fGray400() { return this.add("fill", "rgba(201,201,201,1)"); }
508
- get fGray500() { return this.add("fill", "rgba(175,175,175,1)"); }
509
- get fGray600() { return this.add("fill", "rgba(141,141,141,1)"); }
510
- get fGray700() { return this.add("fill", "rgba(100,100,100,1)"); }
511
- get fGray800() { return this.add("fill", "rgba(53,53,53,1)"); }
512
- get fGray900() { return this.add("fill", "rgba(36,36,36,1)"); }
513
- get fLightBlue50() { return this.add("fill", "rgba(240,249,255,1)"); }
514
- get fLightBlue100() { return this.add("fill", "rgba(224,242,254,1)"); }
515
- get fLightBlue200() { return this.add("fill", "rgba(186,230,253,1)"); }
516
- get fLightBlue300() { return this.add("fill", "rgba(125,211,252,1)"); }
517
- get fLightBlue400() { return this.add("fill", "rgba(56,189,248,1)"); }
518
- get fLightBlue500() { return this.add("fill", "rgba(14,165,233,1)"); }
519
- get fLightBlue600() { return this.add("fill", "rgba(2,143,199,1)"); }
520
- get fLightBlue700() { return this.add("fill", "rgba(3,105,161,1)"); }
521
- get fLightBlue800() { return this.add("fill", "rgba(7,89,133,1)"); }
522
- get fLightBlue900() { return this.add("fill", "rgba(12,74,110,1)"); }
523
- get fRed50() { return this.add("fill", "rgba(255,242,242,1)"); }
524
- get fRed100() { return this.add("fill", "rgba(253,210,209,1)"); }
525
- get fRed200() { return this.add("fill", "rgba(249,181,177,1)"); }
526
- get fRed300() { return this.add("fill", "rgba(242,155,148,1)"); }
527
- get fRed400() { return this.add("fill", "rgba(232,133,122,1)"); }
528
- get fRed500() { return this.add("fill", "rgba(218,114,100,1)"); }
529
- get fRed600() { return this.add("fill", "rgba(200,98,81,1)"); }
530
- get fRed700() { return this.add("fill", "rgba(176,83,73,1)"); }
531
- get fRed800() { return this.add("fill", "rgba(149,68,64,1)"); }
532
- get fRed900() { return this.add("fill", "rgba(120,54,54,1)"); }
533
- get fYellow50() { return this.add("fill", "rgba(255,254,242,1)"); }
534
- get fYellow100() { return this.add("fill", "rgba(255,254,212,1)"); }
535
- get fYellow200() { return this.add("fill", "rgba(255,250,180,1)"); }
536
- get fYellow300() { return this.add("fill", "rgba(255,240,150,1)"); }
537
- get fYellow400() { return this.add("fill", "rgba(255,225,123,1)"); }
538
- get fYellow500() { return this.add("fill", "rgba(255,204,99,1)"); }
539
- get fYellow600() { return this.add("fill", "rgba(246,177,78,1)"); }
540
- get fYellow700() { return this.add("fill", "rgba(207,150,73,1)"); }
541
- get fYellow800() { return this.add("fill", "rgba(164,120,66,1)"); }
542
- get fYellow900() { return this.add("fill", "rgba(120,89,54,1)"); }
543
- get fGreen50() { return this.add("fill", "rgba(250,255,250,1)"); }
544
- get fGreen100() { return this.add("fill", "rgba(223,248,216,1)"); }
545
- get fGreen200() { return this.add("fill", "rgba(199,239,183,1)"); }
546
- get fGreen300() { return this.add("fill", "rgba(179,226,153,1)"); }
547
- get fGreen400() { return this.add("fill", "rgba(163,208,126,1)"); }
548
- get fGreen500() { return this.add("fill", "rgba(146,185,101,1)"); }
549
- get fGreen600() { return this.add("fill", "rgba(126,156,79,1)"); }
550
- get fGreen700() { return this.add("fill", "rgba(101,120,57,1)"); }
551
- get fGreen800() { return this.add("fill", "rgba(64,93,44,1)"); }
552
- get fGreen900() { return this.add("fill", "rgba(34,64,31,1)"); }
553
- get fViolet50() { return this.add("fill", "rgba(245,243,255,1)"); }
554
- get fViolet100() { return this.add("fill", "rgba(238,234,253,1)"); }
555
- get fViolet200() { return this.add("fill", "rgba(232,225,252,1)"); }
556
- get fViolet300() { return this.add("fill", "rgba(218,205,246,1)"); }
557
- get fViolet400() { return this.add("fill", "rgba(204,186,236,1)"); }
558
- get fViolet500() { return this.add("fill", "rgba(190,167,223,1)"); }
559
- get fViolet600() { return this.add("fill", "rgba(173,147,205,1)"); }
560
- get fViolet700() { return this.add("fill", "rgba(153,126,181,1)"); }
561
- get fViolet800() { return this.add("fill", "rgba(128,103,151,1)"); }
562
- get fViolet900() { return this.add("fill", "rgba(100,78,116,1)"); }
563
- fill(value) { return this.add("fill", value); }
564
- // spacing
565
- get mt0() { return this.mt(0); }
566
- get mt1() { return this.mt(1); }
567
- get mt2() { return this.mt(2); }
568
- get mt3() { return this.mt(3); }
569
- get mt4() { return this.mt(4); }
570
- get mt5() { return this.mt(5); }
571
- get mt6() { return this.mt(6); }
572
- get mt7() { return this.mt(7); }
573
- get mt8() { return this.mt(8); }
574
- mt(inc) { return this.add("marginTop", maybeInc(inc)); }
575
- mtPx(px) { return this.mt(`${px}px`); }
576
- get mr0() { return this.mr(0); }
577
- get mr1() { return this.mr(1); }
578
- get mr2() { return this.mr(2); }
579
- get mr3() { return this.mr(3); }
580
- get mr4() { return this.mr(4); }
581
- get mr5() { return this.mr(5); }
582
- get mr6() { return this.mr(6); }
583
- get mr7() { return this.mr(7); }
584
- get mr8() { return this.mr(8); }
585
- mr(inc) { return this.add("marginRight", maybeInc(inc)); }
586
- mrPx(px) { return this.mr(`${px}px`); }
587
- get mb0() { return this.mb(0); }
588
- get mb1() { return this.mb(1); }
589
- get mb2() { return this.mb(2); }
590
- get mb3() { return this.mb(3); }
591
- get mb4() { return this.mb(4); }
592
- get mb5() { return this.mb(5); }
593
- get mb6() { return this.mb(6); }
594
- get mb7() { return this.mb(7); }
595
- get mb8() { return this.mb(8); }
596
- mb(inc) { return this.add("marginBottom", maybeInc(inc)); }
597
- mbPx(px) { return this.mb(`${px}px`); }
598
- get ml0() { return this.ml(0); }
599
- get ml1() { return this.ml(1); }
600
- get ml2() { return this.ml(2); }
601
- get ml3() { return this.ml(3); }
602
- get ml4() { return this.ml(4); }
603
- get ml5() { return this.ml(5); }
604
- get ml6() { return this.ml(6); }
605
- get ml7() { return this.ml(7); }
606
- get ml8() { return this.ml(8); }
607
- ml(inc) { return this.add("marginLeft", maybeInc(inc)); }
608
- mlPx(px) { return this.ml(`${px}px`); }
609
- get mx0() { return this.mx(0); }
610
- get mx1() { return this.mx(1); }
611
- get mx2() { return this.mx(2); }
612
- get mx3() { return this.mx(3); }
613
- get mx4() { return this.mx(4); }
614
- get mx5() { return this.mx(5); }
615
- get mx6() { return this.mx(6); }
616
- get mx7() { return this.mx(7); }
617
- get mx8() { return this.mx(8); }
618
- mx(inc) { return this.ml(inc).mr(inc); }
619
- mxPx(px) { return this.mlPx(px).mrPx(px); }
620
- get my0() { return this.my(0); }
621
- get my1() { return this.my(1); }
622
- get my2() { return this.my(2); }
623
- get my3() { return this.my(3); }
624
- get my4() { return this.my(4); }
625
- get my5() { return this.my(5); }
626
- get my6() { return this.my(6); }
627
- get my7() { return this.my(7); }
628
- get my8() { return this.my(8); }
629
- my(inc) { return this.mt(inc).mb(inc); }
630
- myPx(px) { return this.mtPx(px).mbPx(px); }
631
- get m0() { return this.m(0); }
632
- get m1() { return this.m(1); }
633
- get m2() { return this.m(2); }
634
- get m3() { return this.m(3); }
635
- get m4() { return this.m(4); }
636
- get m5() { return this.m(5); }
637
- get m6() { return this.m(6); }
638
- get m7() { return this.m(7); }
639
- get m8() { return this.m(8); }
640
- m(inc) { return this.mt(inc).mb(inc).mr(inc).ml(inc); }
641
- mPx(px) { return this.mtPx(px).mbPx(px).mrPx(px).mlPx(px); }
642
- get pt0() { return this.pt(0); }
643
- get pt1() { return this.pt(1); }
644
- get pt2() { return this.pt(2); }
645
- get pt3() { return this.pt(3); }
646
- get pt4() { return this.pt(4); }
647
- get pt5() { return this.pt(5); }
648
- get pt6() { return this.pt(6); }
649
- get pt7() { return this.pt(7); }
650
- get pt8() { return this.pt(8); }
651
- pt(inc) { return this.add("paddingTop", maybeInc(inc)); }
652
- ptPx(px) { return this.pt(`${px}px`); }
653
- get pr0() { return this.pr(0); }
654
- get pr1() { return this.pr(1); }
655
- get pr2() { return this.pr(2); }
656
- get pr3() { return this.pr(3); }
657
- get pr4() { return this.pr(4); }
658
- get pr5() { return this.pr(5); }
659
- get pr6() { return this.pr(6); }
660
- get pr7() { return this.pr(7); }
661
- get pr8() { return this.pr(8); }
662
- pr(inc) { return this.add("paddingRight", maybeInc(inc)); }
663
- prPx(px) { return this.pr(`${px}px`); }
664
- get pb0() { return this.pb(0); }
665
- get pb1() { return this.pb(1); }
666
- get pb2() { return this.pb(2); }
667
- get pb3() { return this.pb(3); }
668
- get pb4() { return this.pb(4); }
669
- get pb5() { return this.pb(5); }
670
- get pb6() { return this.pb(6); }
671
- get pb7() { return this.pb(7); }
672
- get pb8() { return this.pb(8); }
673
- pb(inc) { return this.add("paddingBottom", maybeInc(inc)); }
674
- pbPx(px) { return this.pb(`${px}px`); }
675
- get pl0() { return this.pl(0); }
676
- get pl1() { return this.pl(1); }
677
- get pl2() { return this.pl(2); }
678
- get pl3() { return this.pl(3); }
679
- get pl4() { return this.pl(4); }
680
- get pl5() { return this.pl(5); }
681
- get pl6() { return this.pl(6); }
682
- get pl7() { return this.pl(7); }
683
- get pl8() { return this.pl(8); }
684
- pl(inc) { return this.add("paddingLeft", maybeInc(inc)); }
685
- plPx(px) { return this.pl(`${px}px`); }
686
- get px0() { return this.px(0); }
687
- get px1() { return this.px(1); }
688
- get px2() { return this.px(2); }
689
- get px3() { return this.px(3); }
690
- get px4() { return this.px(4); }
691
- get px5() { return this.px(5); }
692
- get px6() { return this.px(6); }
693
- get px7() { return this.px(7); }
694
- get px8() { return this.px(8); }
695
- px(inc) { return this.pl(inc).pr(inc); }
696
- pxPx(px) { return this.plPx(px).prPx(px); }
697
- get py0() { return this.py(0); }
698
- get py1() { return this.py(1); }
699
- get py2() { return this.py(2); }
700
- get py3() { return this.py(3); }
701
- get py4() { return this.py(4); }
702
- get py5() { return this.py(5); }
703
- get py6() { return this.py(6); }
704
- get py7() { return this.py(7); }
705
- get py8() { return this.py(8); }
706
- py(inc) { return this.pt(inc).pb(inc); }
707
- pyPx(px) { return this.ptPx(px).pbPx(px); }
708
- get p0() { return this.p(0); }
709
- get p1() { return this.p(1); }
710
- get p2() { return this.p(2); }
711
- get p3() { return this.p(3); }
712
- get p4() { return this.p(4); }
713
- get p5() { return this.p(5); }
714
- get p6() { return this.p(6); }
715
- get p7() { return this.p(7); }
716
- get p8() { return this.p(8); }
717
- p(inc) { return this.pt(inc).pb(inc).pr(inc).pl(inc); }
718
- pPx(px) { return this.ptPx(px).pbPx(px).prPx(px).plPx(px); }
20
+ // border
21
+ /** Sets `borderStyle: "solid"; borderWidth: "1px"`. */
22
+ get ba() {
23
+ return this.add("borderStyle", "solid").add("borderWidth", "1px");
24
+ }
25
+ /** Sets `borderTopStyle: "solid"; borderTopWidth: "1px"`. */
26
+ get bt() {
27
+ return this.add("borderTopStyle", "solid").add("borderTopWidth", "1px");
28
+ }
29
+ /** Sets `borderRightStyle: "solid"; borderRightWidth: "1px"`. */
30
+ get br() {
31
+ return this.add("borderRightStyle", "solid").add("borderRightWidth", "1px");
32
+ }
33
+ /** Sets `borderBottomStyle: "solid"; borderBottomWidth: "1px"`. */
34
+ get bb() {
35
+ return this.add("borderBottomStyle", "solid").add("borderBottomWidth", "1px");
36
+ }
37
+ /** Sets `borderLeftStyle: "solid"; borderLeftWidth: "1px"`. */
38
+ get bl() {
39
+ return this.add("borderLeftStyle", "solid").add("borderLeftWidth", "1px");
40
+ }
41
+ /** Sets `borderStyle: "none"; borderWidth: "0"`. */
42
+ get bn() {
43
+ return this.add("borderStyle", "none").add("borderWidth", "0");
44
+ }
45
+ // borderColor
46
+ /** Sets `borderColor: "rgba(254,254,254,1)"`. */
47
+ get bWhite() {
48
+ return this.add("borderColor", "rgba(254,254,254,1)");
49
+ }
50
+ /** Sets `borderColor: "rgba(0,0,0,0)"`. */
51
+ get bTransparent() {
52
+ return this.add("borderColor", "rgba(0,0,0,0)");
53
+ }
54
+ /** Sets `borderColor: "rgba(255,253,253,1)"`. */
55
+ get bGray50() {
56
+ return this.add("borderColor", "rgba(255,253,253,1)");
57
+ }
58
+ /** Sets `borderColor: "rgba(247,245,245,1)"`. */
59
+ get bGray100() {
60
+ return this.add("borderColor", "rgba(247,245,245,1)");
61
+ }
62
+ /** Sets `borderColor: "rgba(236,235,235,1)"`. */
63
+ get bGray200() {
64
+ return this.add("borderColor", "rgba(236,235,235,1)");
65
+ }
66
+ /** Sets `borderColor: "rgba(221,220,220,1)"`. */
67
+ get bGray300() {
68
+ return this.add("borderColor", "rgba(221,220,220,1)");
69
+ }
70
+ /** Sets `borderColor: "rgba(201,201,201,1)"`. */
71
+ get bGray400() {
72
+ return this.add("borderColor", "rgba(201,201,201,1)");
73
+ }
74
+ /** Sets `borderColor: "rgba(175,175,175,1)"`. */
75
+ get bGray500() {
76
+ return this.add("borderColor", "rgba(175,175,175,1)");
77
+ }
78
+ /** Sets `borderColor: "rgba(141,141,141,1)"`. */
79
+ get bGray600() {
80
+ return this.add("borderColor", "rgba(141,141,141,1)");
81
+ }
82
+ /** Sets `borderColor: "rgba(100,100,100,1)"`. */
83
+ get bGray700() {
84
+ return this.add("borderColor", "rgba(100,100,100,1)");
85
+ }
86
+ /** Sets `borderColor: "rgba(53,53,53,1)"`. */
87
+ get bGray800() {
88
+ return this.add("borderColor", "rgba(53,53,53,1)");
89
+ }
90
+ /** Sets `borderColor: "rgba(36,36,36,1)"`. */
91
+ get bGray900() {
92
+ return this.add("borderColor", "rgba(36,36,36,1)");
93
+ }
94
+ /** Sets `borderColor: "rgba(240,249,255,1)"`. */
95
+ get bLightBlue50() {
96
+ return this.add("borderColor", "rgba(240,249,255,1)");
97
+ }
98
+ /** Sets `borderColor: "rgba(224,242,254,1)"`. */
99
+ get bLightBlue100() {
100
+ return this.add("borderColor", "rgba(224,242,254,1)");
101
+ }
102
+ /** Sets `borderColor: "rgba(186,230,253,1)"`. */
103
+ get bLightBlue200() {
104
+ return this.add("borderColor", "rgba(186,230,253,1)");
105
+ }
106
+ /** Sets `borderColor: "rgba(125,211,252,1)"`. */
107
+ get bLightBlue300() {
108
+ return this.add("borderColor", "rgba(125,211,252,1)");
109
+ }
110
+ /** Sets `borderColor: "rgba(56,189,248,1)"`. */
111
+ get bLightBlue400() {
112
+ return this.add("borderColor", "rgba(56,189,248,1)");
113
+ }
114
+ /** Sets `borderColor: "rgba(14,165,233,1)"`. */
115
+ get bLightBlue500() {
116
+ return this.add("borderColor", "rgba(14,165,233,1)");
117
+ }
118
+ /** Sets `borderColor: "rgba(2,143,199,1)"`. */
119
+ get bLightBlue600() {
120
+ return this.add("borderColor", "rgba(2,143,199,1)");
121
+ }
122
+ /** Sets `borderColor: "rgba(3,105,161,1)"`. */
123
+ get bLightBlue700() {
124
+ return this.add("borderColor", "rgba(3,105,161,1)");
125
+ }
126
+ /** Sets `borderColor: "rgba(7,89,133,1)"`. */
127
+ get bLightBlue800() {
128
+ return this.add("borderColor", "rgba(7,89,133,1)");
129
+ }
130
+ /** Sets `borderColor: "rgba(12,74,110,1)"`. */
131
+ get bLightBlue900() {
132
+ return this.add("borderColor", "rgba(12,74,110,1)");
133
+ }
134
+ /** Sets `borderColor: "rgba(255,242,242,1)"`. */
135
+ get bRed50() {
136
+ return this.add("borderColor", "rgba(255,242,242,1)");
137
+ }
138
+ /** Sets `borderColor: "rgba(253,210,209,1)"`. */
139
+ get bRed100() {
140
+ return this.add("borderColor", "rgba(253,210,209,1)");
141
+ }
142
+ /** Sets `borderColor: "rgba(249,181,177,1)"`. */
143
+ get bRed200() {
144
+ return this.add("borderColor", "rgba(249,181,177,1)");
145
+ }
146
+ /** Sets `borderColor: "rgba(242,155,148,1)"`. */
147
+ get bRed300() {
148
+ return this.add("borderColor", "rgba(242,155,148,1)");
149
+ }
150
+ /** Sets `borderColor: "rgba(232,133,122,1)"`. */
151
+ get bRed400() {
152
+ return this.add("borderColor", "rgba(232,133,122,1)");
153
+ }
154
+ /** Sets `borderColor: "rgba(218,114,100,1)"`. */
155
+ get bRed500() {
156
+ return this.add("borderColor", "rgba(218,114,100,1)");
157
+ }
158
+ /** Sets `borderColor: "rgba(200,98,81,1)"`. */
159
+ get bRed600() {
160
+ return this.add("borderColor", "rgba(200,98,81,1)");
161
+ }
162
+ /** Sets `borderColor: "rgba(176,83,73,1)"`. */
163
+ get bRed700() {
164
+ return this.add("borderColor", "rgba(176,83,73,1)");
165
+ }
166
+ /** Sets `borderColor: "rgba(149,68,64,1)"`. */
167
+ get bRed800() {
168
+ return this.add("borderColor", "rgba(149,68,64,1)");
169
+ }
170
+ /** Sets `borderColor: "rgba(120,54,54,1)"`. */
171
+ get bRed900() {
172
+ return this.add("borderColor", "rgba(120,54,54,1)");
173
+ }
174
+ /** Sets `borderColor: "rgba(255,254,242,1)"`. */
175
+ get bYellow50() {
176
+ return this.add("borderColor", "rgba(255,254,242,1)");
177
+ }
178
+ /** Sets `borderColor: "rgba(255,254,212,1)"`. */
179
+ get bYellow100() {
180
+ return this.add("borderColor", "rgba(255,254,212,1)");
181
+ }
182
+ /** Sets `borderColor: "rgba(255,250,180,1)"`. */
183
+ get bYellow200() {
184
+ return this.add("borderColor", "rgba(255,250,180,1)");
185
+ }
186
+ /** Sets `borderColor: "rgba(255,240,150,1)"`. */
187
+ get bYellow300() {
188
+ return this.add("borderColor", "rgba(255,240,150,1)");
189
+ }
190
+ /** Sets `borderColor: "rgba(255,225,123,1)"`. */
191
+ get bYellow400() {
192
+ return this.add("borderColor", "rgba(255,225,123,1)");
193
+ }
194
+ /** Sets `borderColor: "rgba(255,204,99,1)"`. */
195
+ get bYellow500() {
196
+ return this.add("borderColor", "rgba(255,204,99,1)");
197
+ }
198
+ /** Sets `borderColor: "rgba(246,177,78,1)"`. */
199
+ get bYellow600() {
200
+ return this.add("borderColor", "rgba(246,177,78,1)");
201
+ }
202
+ /** Sets `borderColor: "rgba(207,150,73,1)"`. */
203
+ get bYellow700() {
204
+ return this.add("borderColor", "rgba(207,150,73,1)");
205
+ }
206
+ /** Sets `borderColor: "rgba(164,120,66,1)"`. */
207
+ get bYellow800() {
208
+ return this.add("borderColor", "rgba(164,120,66,1)");
209
+ }
210
+ /** Sets `borderColor: "rgba(120,89,54,1)"`. */
211
+ get bYellow900() {
212
+ return this.add("borderColor", "rgba(120,89,54,1)");
213
+ }
214
+ /** Sets `borderColor: "rgba(250,255,250,1)"`. */
215
+ get bGreen50() {
216
+ return this.add("borderColor", "rgba(250,255,250,1)");
217
+ }
218
+ /** Sets `borderColor: "rgba(223,248,216,1)"`. */
219
+ get bGreen100() {
220
+ return this.add("borderColor", "rgba(223,248,216,1)");
221
+ }
222
+ /** Sets `borderColor: "rgba(199,239,183,1)"`. */
223
+ get bGreen200() {
224
+ return this.add("borderColor", "rgba(199,239,183,1)");
225
+ }
226
+ /** Sets `borderColor: "rgba(179,226,153,1)"`. */
227
+ get bGreen300() {
228
+ return this.add("borderColor", "rgba(179,226,153,1)");
229
+ }
230
+ /** Sets `borderColor: "rgba(163,208,126,1)"`. */
231
+ get bGreen400() {
232
+ return this.add("borderColor", "rgba(163,208,126,1)");
233
+ }
234
+ /** Sets `borderColor: "rgba(146,185,101,1)"`. */
235
+ get bGreen500() {
236
+ return this.add("borderColor", "rgba(146,185,101,1)");
237
+ }
238
+ /** Sets `borderColor: "rgba(126,156,79,1)"`. */
239
+ get bGreen600() {
240
+ return this.add("borderColor", "rgba(126,156,79,1)");
241
+ }
242
+ /** Sets `borderColor: "rgba(101,120,57,1)"`. */
243
+ get bGreen700() {
244
+ return this.add("borderColor", "rgba(101,120,57,1)");
245
+ }
246
+ /** Sets `borderColor: "rgba(64,93,44,1)"`. */
247
+ get bGreen800() {
248
+ return this.add("borderColor", "rgba(64,93,44,1)");
249
+ }
250
+ /** Sets `borderColor: "rgba(34,64,31,1)"`. */
251
+ get bGreen900() {
252
+ return this.add("borderColor", "rgba(34,64,31,1)");
253
+ }
254
+ /** Sets `borderColor: "rgba(245,243,255,1)"`. */
255
+ get bViolet50() {
256
+ return this.add("borderColor", "rgba(245,243,255,1)");
257
+ }
258
+ /** Sets `borderColor: "rgba(238,234,253,1)"`. */
259
+ get bViolet100() {
260
+ return this.add("borderColor", "rgba(238,234,253,1)");
261
+ }
262
+ /** Sets `borderColor: "rgba(232,225,252,1)"`. */
263
+ get bViolet200() {
264
+ return this.add("borderColor", "rgba(232,225,252,1)");
265
+ }
266
+ /** Sets `borderColor: "rgba(218,205,246,1)"`. */
267
+ get bViolet300() {
268
+ return this.add("borderColor", "rgba(218,205,246,1)");
269
+ }
270
+ /** Sets `borderColor: "rgba(204,186,236,1)"`. */
271
+ get bViolet400() {
272
+ return this.add("borderColor", "rgba(204,186,236,1)");
273
+ }
274
+ /** Sets `borderColor: "rgba(190,167,223,1)"`. */
275
+ get bViolet500() {
276
+ return this.add("borderColor", "rgba(190,167,223,1)");
277
+ }
278
+ /** Sets `borderColor: "rgba(173,147,205,1)"`. */
279
+ get bViolet600() {
280
+ return this.add("borderColor", "rgba(173,147,205,1)");
281
+ }
282
+ /** Sets `borderColor: "rgba(153,126,181,1)"`. */
283
+ get bViolet700() {
284
+ return this.add("borderColor", "rgba(153,126,181,1)");
285
+ }
286
+ /** Sets `borderColor: "rgba(128,103,151,1)"`. */
287
+ get bViolet800() {
288
+ return this.add("borderColor", "rgba(128,103,151,1)");
289
+ }
290
+ /** Sets `borderColor: "rgba(100,78,116,1)"`. */
291
+ get bViolet900() {
292
+ return this.add("borderColor", "rgba(100,78,116,1)");
293
+ }
294
+ /** Sets `borderColor: value`. */
295
+ bc(value) {
296
+ return this.add("borderColor", value);
297
+ }
298
+ // borderRadius
299
+ /** Sets `borderRadius: "0"`. */
300
+ get br0() {
301
+ return this.add("borderRadius", "0");
302
+ }
303
+ /** Sets `borderRadius: "4px"`. */
304
+ get br4() {
305
+ return this.add("borderRadius", "4px");
306
+ }
307
+ /** Sets `borderRadius: "8px"`. */
308
+ get br8() {
309
+ return this.add("borderRadius", "8px");
310
+ }
311
+ /** Sets `borderRadius: "12px"`. */
312
+ get br12() {
313
+ return this.add("borderRadius", "12px");
314
+ }
315
+ /** Sets `borderRadius: "16px"`. */
316
+ get br16() {
317
+ return this.add("borderRadius", "16px");
318
+ }
319
+ /** Sets `borderRadius: "24px"`. */
320
+ get br24() {
321
+ return this.add("borderRadius", "24px");
322
+ }
323
+ /** Sets `borderRadius: "100%"`. */
324
+ get br100() {
325
+ return this.add("borderRadius", "100%");
326
+ }
327
+ /** Sets `borderRadius: value`. */
328
+ borderRadius(value) {
329
+ return this.add("borderRadius", value);
330
+ }
331
+ /** Sets `borderTopRightRadius: "4px"; borderTopLeftRadius: "4px"`. */
332
+ get brt4() {
333
+ return this.add("borderTopRightRadius", "4px").add("borderTopLeftRadius", "4px");
334
+ }
335
+ /** Sets `borderBottomRightRadius: "4px"; borderBottomLeftRadius: "4px"`. */
336
+ get brb4() {
337
+ return this.add("borderBottomRightRadius", "4px").add("borderBottomLeftRadius", "4px");
338
+ }
339
+ // borderStyle
340
+ /** Sets `borderStyle: "dashed"`. */
341
+ get bsDashed() {
342
+ return this.add("borderStyle", "dashed");
343
+ }
344
+ /** Sets `borderStyle: "dotted"`. */
345
+ get bsDotted() {
346
+ return this.add("borderStyle", "dotted");
347
+ }
348
+ /** Sets `borderStyle: "none"`. */
349
+ get bsNone() {
350
+ return this.add("borderStyle", "none");
351
+ }
352
+ /** Sets `borderStyle: "solid"`. */
353
+ get bsSolid() {
354
+ return this.add("borderStyle", "solid");
355
+ }
356
+ /** Sets `borderStyle: value`. */
357
+ bs(value) {
358
+ return this.add("borderStyle", value);
359
+ }
360
+ // borderWidth
361
+ /** Sets `borderWidth: "1px"`. */
362
+ get bw1() {
363
+ return this.add("borderWidth", "1px");
364
+ }
365
+ /** Sets `borderWidth: "2px"`. */
366
+ get bw2() {
367
+ return this.add("borderWidth", "2px");
368
+ }
369
+ /** Sets `borderWidth: value`. */
370
+ bw(value) {
371
+ return this.add("borderWidth", value);
372
+ }
373
+ // boxShadow
374
+ /** Sets `boxShadow: "none"`. */
375
+ get bsh0() {
376
+ return this.add("boxShadow", "none");
377
+ }
378
+ /** Sets `boxShadow: "0px 2px 16px 0px rgba(17,24,39,0.03), 0px 4px 8px 0px rgba(17,24,39,0.08)"`. */
379
+ get bshBasic() {
380
+ return this.add("boxShadow", "0px 2px 16px 0px rgba(17,24,39,0.03), 0px 4px 8px 0px rgba(17,24,39,0.08)");
381
+ }
382
+ /** Sets `boxShadow: "0px 2px 24px 0px rgba(17,24,39,0.08), 0px 4px 8px 0px rgba(17,24,39,0.1)"`. */
383
+ get bshHover() {
384
+ return this.add("boxShadow", "0px 2px 24px 0px rgba(17,24,39,0.08), 0px 4px 8px 0px rgba(17,24,39,0.1)");
385
+ }
386
+ /** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(3,105,161,1)"`. */
387
+ get bshFocus() {
388
+ return this.add("boxShadow", "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(3,105,161,1)");
389
+ }
390
+ /** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(149,68,64,1)"`. */
391
+ get bshDanger() {
392
+ return this.add("boxShadow", "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(149,68,64,1)");
393
+ }
394
+ /** Sets `boxShadow: "0px 20px 25px -5px rgba(0,0,0,0.1), 0px 10px 10px -5px rgba(0,0,0,0.04)"`. */
395
+ get bshModal() {
396
+ return this.add("boxShadow", "0px 20px 25px -5px rgba(0,0,0,0.1), 0px 10px 10px -5px rgba(0,0,0,0.04)");
397
+ }
398
+ /** Sets `boxShadow: value`. */
399
+ boxShadow(value) {
400
+ return this.add("boxShadow", value);
401
+ }
402
+ // coordinates
403
+ /** Sets `top: "0px"`. */
404
+ get top0() {
405
+ return this.top(0);
406
+ }
407
+ /** Sets `top: "8px"`. */
408
+ get top1() {
409
+ return this.top(1);
410
+ }
411
+ /** Sets `top: "16px"`. */
412
+ get top2() {
413
+ return this.top(2);
414
+ }
415
+ /** Sets `top: "24px"`. */
416
+ get top3() {
417
+ return this.top(3);
418
+ }
419
+ /** Sets `top: "32px"`. */
420
+ get top4() {
421
+ return this.top(4);
422
+ }
423
+ /** Sets `top: "40px"`. */
424
+ get top5() {
425
+ return this.top(5);
426
+ }
427
+ /** Sets `top: "48px"`. */
428
+ get top6() {
429
+ return this.top(6);
430
+ }
431
+ /** Sets `top: "56px"`. */
432
+ get top7() {
433
+ return this.top(7);
434
+ }
435
+ /** Sets `top: "64px"`. */
436
+ get top8() {
437
+ return this.top(8);
438
+ }
439
+ /** Sets `top: inc`. */
440
+ top(inc) {
441
+ return this.add("top", maybeInc(inc));
442
+ }
443
+ /** Sets `top: px`. */
444
+ topPx(px) {
445
+ return this.top(`${px}px`);
446
+ }
447
+ /** Sets `right: "0px"`. */
448
+ get right0() {
449
+ return this.right(0);
450
+ }
451
+ /** Sets `right: "8px"`. */
452
+ get right1() {
453
+ return this.right(1);
454
+ }
455
+ /** Sets `right: "16px"`. */
456
+ get right2() {
457
+ return this.right(2);
458
+ }
459
+ /** Sets `right: "24px"`. */
460
+ get right3() {
461
+ return this.right(3);
462
+ }
463
+ /** Sets `right: "32px"`. */
464
+ get right4() {
465
+ return this.right(4);
466
+ }
467
+ /** Sets `right: "40px"`. */
468
+ get right5() {
469
+ return this.right(5);
470
+ }
471
+ /** Sets `right: "48px"`. */
472
+ get right6() {
473
+ return this.right(6);
474
+ }
475
+ /** Sets `right: "56px"`. */
476
+ get right7() {
477
+ return this.right(7);
478
+ }
479
+ /** Sets `right: "64px"`. */
480
+ get right8() {
481
+ return this.right(8);
482
+ }
483
+ /** Sets `right: inc`. */
484
+ right(inc) {
485
+ return this.add("right", maybeInc(inc));
486
+ }
487
+ /** Sets `right: px`. */
488
+ rightPx(px) {
489
+ return this.right(`${px}px`);
490
+ }
491
+ /** Sets `bottom: "0px"`. */
492
+ get bottom0() {
493
+ return this.bottom(0);
494
+ }
495
+ /** Sets `bottom: "8px"`. */
496
+ get bottom1() {
497
+ return this.bottom(1);
498
+ }
499
+ /** Sets `bottom: "16px"`. */
500
+ get bottom2() {
501
+ return this.bottom(2);
502
+ }
503
+ /** Sets `bottom: "24px"`. */
504
+ get bottom3() {
505
+ return this.bottom(3);
506
+ }
507
+ /** Sets `bottom: "32px"`. */
508
+ get bottom4() {
509
+ return this.bottom(4);
510
+ }
511
+ /** Sets `bottom: "40px"`. */
512
+ get bottom5() {
513
+ return this.bottom(5);
514
+ }
515
+ /** Sets `bottom: "48px"`. */
516
+ get bottom6() {
517
+ return this.bottom(6);
518
+ }
519
+ /** Sets `bottom: "56px"`. */
520
+ get bottom7() {
521
+ return this.bottom(7);
522
+ }
523
+ /** Sets `bottom: "64px"`. */
524
+ get bottom8() {
525
+ return this.bottom(8);
526
+ }
527
+ /** Sets `bottom: inc`. */
528
+ bottom(inc) {
529
+ return this.add("bottom", maybeInc(inc));
530
+ }
531
+ /** Sets `bottom: px`. */
532
+ bottomPx(px) {
533
+ return this.bottom(`${px}px`);
534
+ }
535
+ /** Sets `left: "0px"`. */
536
+ get left0() {
537
+ return this.left(0);
538
+ }
539
+ /** Sets `left: "8px"`. */
540
+ get left1() {
541
+ return this.left(1);
542
+ }
543
+ /** Sets `left: "16px"`. */
544
+ get left2() {
545
+ return this.left(2);
546
+ }
547
+ /** Sets `left: "24px"`. */
548
+ get left3() {
549
+ return this.left(3);
550
+ }
551
+ /** Sets `left: "32px"`. */
552
+ get left4() {
553
+ return this.left(4);
554
+ }
555
+ /** Sets `left: "40px"`. */
556
+ get left5() {
557
+ return this.left(5);
558
+ }
559
+ /** Sets `left: "48px"`. */
560
+ get left6() {
561
+ return this.left(6);
562
+ }
563
+ /** Sets `left: "56px"`. */
564
+ get left7() {
565
+ return this.left(7);
566
+ }
567
+ /** Sets `left: "64px"`. */
568
+ get left8() {
569
+ return this.left(8);
570
+ }
571
+ /** Sets `left: inc`. */
572
+ left(inc) {
573
+ return this.add("left", maybeInc(inc));
574
+ }
575
+ /** Sets `left: px`. */
576
+ leftPx(px) {
577
+ return this.left(`${px}px`);
578
+ }
579
+ // cursor
580
+ /** Sets `cursor: "pointer"`. */
581
+ get cursorPointer() {
582
+ return this.add("cursor", "pointer");
583
+ }
584
+ /** Sets `cursor: "not-allowed"`. */
585
+ get cursorNotAllowed() {
586
+ return this.add("cursor", "not-allowed");
587
+ }
588
+ /** Sets `cursor: value`. */
589
+ cursor(value) {
590
+ return this.add("cursor", value);
591
+ }
592
+ // display
593
+ /** Sets `display: "none"`. */
594
+ get dn() {
595
+ return this.add("display", "none");
596
+ }
597
+ /** Sets `display: "block"`. */
598
+ get db() {
599
+ return this.add("display", "block");
600
+ }
601
+ /** Sets `display: "inline-block"`. */
602
+ get dib() {
603
+ return this.add("display", "inline-block");
604
+ }
605
+ /** Sets `display: "inline-table"`. */
606
+ get dit() {
607
+ return this.add("display", "inline-table");
608
+ }
609
+ /** Sets `display: "table"`. */
610
+ get dt() {
611
+ return this.add("display", "table");
612
+ }
613
+ /** Sets `display: "table-cell"`. */
614
+ get dtc() {
615
+ return this.add("display", "table-cell");
616
+ }
617
+ /** Sets `display: "table-row"`. */
618
+ get dtRow() {
619
+ return this.add("display", "table-row");
620
+ }
621
+ /** Sets `display: "table-column"`. */
622
+ get dtColumn() {
623
+ return this.add("display", "table-column");
624
+ }
625
+ /** Sets `display: "table-column-group"`. */
626
+ get dtColumnGroup() {
627
+ return this.add("display", "table-column-group");
628
+ }
629
+ /** Sets `display: "grid"`. */
630
+ get dg() {
631
+ return this.add("display", "grid");
632
+ }
633
+ /** Sets `display: "inline-grid"`. */
634
+ get dig() {
635
+ return this.add("display", "inline-grid");
636
+ }
637
+ /** Sets `display: "flex"`. */
638
+ get df() {
639
+ return this.add("display", "flex");
640
+ }
641
+ /** Sets `display: "inline-flex"`. */
642
+ get dif() {
643
+ return this.add("display", "inline-flex");
644
+ }
645
+ /** Sets `display: value`. */
646
+ display(value) {
647
+ return this.add("display", value);
648
+ }
649
+ // flexbox
650
+ /** Sets `flex: "initial"`. */
651
+ get fi() {
652
+ return this.add("flex", "initial");
653
+ }
654
+ /** Sets `flex: "auto"`. */
655
+ get fa() {
656
+ return this.add("flex", "auto");
657
+ }
658
+ /** Sets `flex: "none"`. */
659
+ get fn() {
660
+ return this.add("flex", "none");
661
+ }
662
+ /** Sets `flex: "1"`. */
663
+ get f1() {
664
+ return this.add("flex", "1");
665
+ }
666
+ /** Sets `flex: "2"`. */
667
+ get f2() {
668
+ return this.add("flex", "2");
669
+ }
670
+ /** Sets `flex: "3"`. */
671
+ get f3() {
672
+ return this.add("flex", "3");
673
+ }
674
+ /** Sets `flex: "4"`. */
675
+ get f4() {
676
+ return this.add("flex", "4");
677
+ }
678
+ /** Sets `flex: "5"`. */
679
+ get f5() {
680
+ return this.add("flex", "5");
681
+ }
682
+ /** Sets `flex: value`. */
683
+ f(value) {
684
+ return this.add("flex", value);
685
+ }
686
+ /** Sets `justifyContent: "flex-start"`. */
687
+ get jcfs() {
688
+ return this.add("justifyContent", "flex-start");
689
+ }
690
+ /** Sets `justifyContent: "flex-end"`. */
691
+ get jcfe() {
692
+ return this.add("justifyContent", "flex-end");
693
+ }
694
+ /** Sets `justifyContent: "center"`. */
695
+ get jcc() {
696
+ return this.add("justifyContent", "center");
697
+ }
698
+ /** Sets `justifyContent: "space-between"`. */
699
+ get jcsb() {
700
+ return this.add("justifyContent", "space-between");
701
+ }
702
+ /** Sets `justifyContent: "space-around"`. */
703
+ get jcsa() {
704
+ return this.add("justifyContent", "space-around");
705
+ }
706
+ /** Sets `justifyContent: "space-evenly"`. */
707
+ get jcse() {
708
+ return this.add("justifyContent", "space-evenly");
709
+ }
710
+ /** Sets `justifyContent: value`. */
711
+ jc(value) {
712
+ return this.add("justifyContent", value);
713
+ }
714
+ /** Sets `justifyItems: "flex-start"`. */
715
+ get jifs() {
716
+ return this.add("justifyItems", "flex-start");
717
+ }
718
+ /** Sets `justifyItems: "flex-end"`. */
719
+ get jife() {
720
+ return this.add("justifyItems", "flex-end");
721
+ }
722
+ /** Sets `justifyItems: "center"`. */
723
+ get jic() {
724
+ return this.add("justifyItems", "center");
725
+ }
726
+ /** Sets `justifyItems: "space-between"`. */
727
+ get jisb() {
728
+ return this.add("justifyItems", "space-between");
729
+ }
730
+ /** Sets `justifyItems: "space-around"`. */
731
+ get jisa() {
732
+ return this.add("justifyItems", "space-around");
733
+ }
734
+ /** Sets `justifyItems: "space-evenly"`. */
735
+ get jise() {
736
+ return this.add("justifyItems", "space-evenly");
737
+ }
738
+ /** Sets `justifyItems: value`. */
739
+ ji(value) {
740
+ return this.add("justifyItems", value);
741
+ }
742
+ /** Sets `alignSelf: "flex-start"`. */
743
+ get asfs() {
744
+ return this.add("alignSelf", "flex-start");
745
+ }
746
+ /** Sets `alignSelf: "flex-end"`. */
747
+ get asfe() {
748
+ return this.add("alignSelf", "flex-end");
749
+ }
750
+ /** Sets `alignSelf: "center"`. */
751
+ get asc() {
752
+ return this.add("alignSelf", "center");
753
+ }
754
+ /** Sets `alignSelf: "baseline"`. */
755
+ get asb() {
756
+ return this.add("alignSelf", "baseline");
757
+ }
758
+ /** Sets `alignSelf: "stretch"`. */
759
+ get asStretch() {
760
+ return this.add("alignSelf", "stretch");
761
+ }
762
+ /** Sets `alignSelf: value`. */
763
+ as(value) {
764
+ return this.add("alignSelf", value);
765
+ }
766
+ /** Sets `alignItems: "flex-start"`. */
767
+ get aifs() {
768
+ return this.add("alignItems", "flex-start");
769
+ }
770
+ /** Sets `alignItems: "flex-end"`. */
771
+ get aife() {
772
+ return this.add("alignItems", "flex-end");
773
+ }
774
+ /** Sets `alignItems: "center"`. */
775
+ get aic() {
776
+ return this.add("alignItems", "center");
777
+ }
778
+ /** Sets `alignItems: "baseline"`. */
779
+ get aib() {
780
+ return this.add("alignItems", "baseline");
781
+ }
782
+ /** Sets `alignItems: "stretch"`. */
783
+ get ais() {
784
+ return this.add("alignItems", "stretch");
785
+ }
786
+ /** Sets `alignItems: value`. */
787
+ ai(value) {
788
+ return this.add("alignItems", value);
789
+ }
790
+ /** Sets `flexBasis: "100%"`. */
791
+ get fb1() {
792
+ return this.add("flexBasis", "100%");
793
+ }
794
+ /** Sets `flexBasis: "50%"`. */
795
+ get fb2() {
796
+ return this.add("flexBasis", "50%");
797
+ }
798
+ /** Sets `flexBasis: "33.333333%"`. */
799
+ get fb3() {
800
+ return this.add("flexBasis", "33.333333%");
801
+ }
802
+ /** Sets `flexBasis: "25%"`. */
803
+ get fb4() {
804
+ return this.add("flexBasis", "25%");
805
+ }
806
+ /** Sets `flexBasis: "20%"`. */
807
+ get fb5() {
808
+ return this.add("flexBasis", "20%");
809
+ }
810
+ /** Sets `flexBasis: "16.666666%"`. */
811
+ get fb6() {
812
+ return this.add("flexBasis", "16.666666%");
813
+ }
814
+ /** Sets `flexBasis: "14.285714%"`. */
815
+ get fb7() {
816
+ return this.add("flexBasis", "14.285714%");
817
+ }
818
+ /** Sets `flexBasis: "12.5%"`. */
819
+ get fb0() {
820
+ return this.add("flexBasis", "12.5%");
821
+ }
822
+ /** Sets `flexBasis: value`. */
823
+ fb(value) {
824
+ return this.add("flexBasis", value);
825
+ }
826
+ /** Sets `flex: "auto"`. */
827
+ get flexAuto() {
828
+ return this.add("flex", "auto");
829
+ }
830
+ /** Sets `flex: "none"`. */
831
+ get flexNone() {
832
+ return this.add("flex", "none");
833
+ }
834
+ /** Sets `flex: value`. */
835
+ flex(value) {
836
+ return this.add("flex", value);
837
+ }
838
+ /** Sets `flexGrow: 0`. */
839
+ get fg0() {
840
+ return this.add("flexGrow", 0);
841
+ }
842
+ /** Sets `flexGrow: 1`. */
843
+ get fg1() {
844
+ return this.add("flexGrow", 1);
845
+ }
846
+ /** Sets `flexGrow: value`. */
847
+ flexGrow(value) {
848
+ return this.add("flexGrow", value);
849
+ }
850
+ /** Sets `flexShrink: 0`. */
851
+ get fs0() {
852
+ return this.add("flexShrink", 0);
853
+ }
854
+ /** Sets `flexShrink: 1`. */
855
+ get fs1() {
856
+ return this.add("flexShrink", 1);
857
+ }
858
+ /** Sets `flexShrink: value`. */
859
+ flexShrink(value) {
860
+ return this.add("flexShrink", value);
861
+ }
862
+ /** Sets `flexDirection: "row"`. */
863
+ get fdr() {
864
+ return this.add("flexDirection", "row");
865
+ }
866
+ /** Sets `flexDirection: "row-reverse"`. */
867
+ get fdrr() {
868
+ return this.add("flexDirection", "row-reverse");
869
+ }
870
+ /** Sets `flexDirection: "column"`. */
871
+ get fdc() {
872
+ return this.add("flexDirection", "column");
873
+ }
874
+ /** Sets `flexDirection: "column-reverse"`. */
875
+ get fdcr() {
876
+ return this.add("flexDirection", "column-reverse");
877
+ }
878
+ /** Sets `flexDirection: value`. */
879
+ fd(value) {
880
+ return this.add("flexDirection", value);
881
+ }
882
+ // float
883
+ /** Sets `float: "left"`. */
884
+ get fl() {
885
+ return this.add("float", "left");
886
+ }
887
+ /** Sets `float: "right"`. */
888
+ get fr() {
889
+ return this.add("float", "right");
890
+ }
891
+ /** Sets `float: value`. */
892
+ float(value) {
893
+ return this.add("float", value);
894
+ }
895
+ // fontWeight
896
+ /** Sets `fontWeight: "normal"`. */
897
+ get normal() {
898
+ return this.add("fontWeight", "normal");
899
+ }
900
+ /** Sets `fontWeight: "bold"`. */
901
+ get b() {
902
+ return this.add("fontWeight", "bold");
903
+ }
904
+ /** Sets `fontWeight: 100`. */
905
+ get fw1() {
906
+ return this.add("fontWeight", 100);
907
+ }
908
+ /** Sets `fontWeight: 200`. */
909
+ get fw2() {
910
+ return this.add("fontWeight", 200);
911
+ }
912
+ /** Sets `fontWeight: 300`. */
913
+ get fw3() {
914
+ return this.add("fontWeight", 300);
915
+ }
916
+ /** Sets `fontWeight: 400`. */
917
+ get fw4() {
918
+ return this.add("fontWeight", 400);
919
+ }
920
+ /** Sets `fontWeight: 500`. */
921
+ get fw5() {
922
+ return this.add("fontWeight", 500);
923
+ }
924
+ /** Sets `fontWeight: 600`. */
925
+ get fw6() {
926
+ return this.add("fontWeight", 600);
927
+ }
928
+ /** Sets `fontWeight: 700`. */
929
+ get fw7() {
930
+ return this.add("fontWeight", 700);
931
+ }
932
+ /** Sets `fontWeight: 800`. */
933
+ get fw8() {
934
+ return this.add("fontWeight", 800);
935
+ }
936
+ /** Sets `fontWeight: 900`. */
937
+ get fw9() {
938
+ return this.add("fontWeight", 900);
939
+ }
940
+ /** Sets `fontWeight: value`. */
941
+ fw(value) {
942
+ return this.add("fontWeight", value);
943
+ }
944
+ // grid
945
+ /** Sets `gridTemplateColumns: value`. */
946
+ gtc(value) {
947
+ return this.add("gridTemplateColumns", value);
948
+ }
949
+ /** Sets `gridTemplateRows: value`. */
950
+ gtr(value) {
951
+ return this.add("gridTemplateRows", value);
952
+ }
953
+ /** Sets `gridRow: value`. */
954
+ gr(value) {
955
+ return this.add("gridRow", value);
956
+ }
957
+ /** Sets `gridColumn: value`. */
958
+ gc(value) {
959
+ return this.add("gridColumn", value);
960
+ }
961
+ /** Sets `gap: "0px"`. */
962
+ get gap0() {
963
+ return this.gap(0);
964
+ }
965
+ /** Sets `gap: "8px"`. */
966
+ get gap1() {
967
+ return this.gap(1);
968
+ }
969
+ /** Sets `gap: "16px"`. */
970
+ get gap2() {
971
+ return this.gap(2);
972
+ }
973
+ /** Sets `gap: "24px"`. */
974
+ get gap3() {
975
+ return this.gap(3);
976
+ }
977
+ /** Sets `gap: "32px"`. */
978
+ get gap4() {
979
+ return this.gap(4);
980
+ }
981
+ /** Sets `gap: "40px"`. */
982
+ get gap5() {
983
+ return this.gap(5);
984
+ }
985
+ /** Sets `gap: "48px"`. */
986
+ get gap6() {
987
+ return this.gap(6);
988
+ }
989
+ /** Sets `gap: "56px"`. */
990
+ get gap7() {
991
+ return this.gap(7);
992
+ }
993
+ /** Sets `gap: "64px"`. */
994
+ get gap8() {
995
+ return this.gap(8);
996
+ }
997
+ /** Sets `gap: inc`. */
998
+ gap(inc) {
999
+ return this.add("gap", maybeInc(inc));
1000
+ }
1001
+ /** Sets `gap: px`. */
1002
+ gapPx(px) {
1003
+ return this.gap(`${px}px`);
1004
+ }
1005
+ /** Sets `rowGap: "0px"`. */
1006
+ get rg0() {
1007
+ return this.rg(0);
1008
+ }
1009
+ /** Sets `rowGap: "8px"`. */
1010
+ get rg1() {
1011
+ return this.rg(1);
1012
+ }
1013
+ /** Sets `rowGap: "16px"`. */
1014
+ get rg2() {
1015
+ return this.rg(2);
1016
+ }
1017
+ /** Sets `rowGap: "24px"`. */
1018
+ get rg3() {
1019
+ return this.rg(3);
1020
+ }
1021
+ /** Sets `rowGap: "32px"`. */
1022
+ get rg4() {
1023
+ return this.rg(4);
1024
+ }
1025
+ /** Sets `rowGap: "40px"`. */
1026
+ get rg5() {
1027
+ return this.rg(5);
1028
+ }
1029
+ /** Sets `rowGap: "48px"`. */
1030
+ get rg6() {
1031
+ return this.rg(6);
1032
+ }
1033
+ /** Sets `rowGap: "56px"`. */
1034
+ get rg7() {
1035
+ return this.rg(7);
1036
+ }
1037
+ /** Sets `rowGap: "64px"`. */
1038
+ get rg8() {
1039
+ return this.rg(8);
1040
+ }
1041
+ /** Sets `rowGap: inc`. */
1042
+ rg(inc) {
1043
+ return this.add("rowGap", maybeInc(inc));
1044
+ }
1045
+ /** Sets `rowGap: px`. */
1046
+ rgPx(px) {
1047
+ return this.rg(`${px}px`);
1048
+ }
1049
+ /** Sets `columnGap: "0px"`. */
1050
+ get cg0() {
1051
+ return this.cg(0);
1052
+ }
1053
+ /** Sets `columnGap: "8px"`. */
1054
+ get cg1() {
1055
+ return this.cg(1);
1056
+ }
1057
+ /** Sets `columnGap: "16px"`. */
1058
+ get cg2() {
1059
+ return this.cg(2);
1060
+ }
1061
+ /** Sets `columnGap: "24px"`. */
1062
+ get cg3() {
1063
+ return this.cg(3);
1064
+ }
1065
+ /** Sets `columnGap: "32px"`. */
1066
+ get cg4() {
1067
+ return this.cg(4);
1068
+ }
1069
+ /** Sets `columnGap: "40px"`. */
1070
+ get cg5() {
1071
+ return this.cg(5);
1072
+ }
1073
+ /** Sets `columnGap: "48px"`. */
1074
+ get cg6() {
1075
+ return this.cg(6);
1076
+ }
1077
+ /** Sets `columnGap: "56px"`. */
1078
+ get cg7() {
1079
+ return this.cg(7);
1080
+ }
1081
+ /** Sets `columnGap: "64px"`. */
1082
+ get cg8() {
1083
+ return this.cg(8);
1084
+ }
1085
+ /** Sets `columnGap: inc`. */
1086
+ cg(inc) {
1087
+ return this.add("columnGap", maybeInc(inc));
1088
+ }
1089
+ /** Sets `columnGap: px`. */
1090
+ cgPx(px) {
1091
+ return this.cg(`${px}px`);
1092
+ }
1093
+ // height
1094
+ /** Sets `height: "0px"`. */
1095
+ get h0() {
1096
+ return this.h(0);
1097
+ }
1098
+ /** Sets `height: "8px"`. */
1099
+ get h1() {
1100
+ return this.h(1);
1101
+ }
1102
+ /** Sets `height: "16px"`. */
1103
+ get h2() {
1104
+ return this.h(2);
1105
+ }
1106
+ /** Sets `height: "24px"`. */
1107
+ get h3() {
1108
+ return this.h(3);
1109
+ }
1110
+ /** Sets `height: "32px"`. */
1111
+ get h4() {
1112
+ return this.h(4);
1113
+ }
1114
+ /** Sets `height: "40px"`. */
1115
+ get h5() {
1116
+ return this.h(5);
1117
+ }
1118
+ /** Sets `height: "48px"`. */
1119
+ get h6() {
1120
+ return this.h(6);
1121
+ }
1122
+ /** Sets `height: "56px"`. */
1123
+ get h7() {
1124
+ return this.h(7);
1125
+ }
1126
+ /** Sets `height: "64px"`. */
1127
+ get h8() {
1128
+ return this.h(8);
1129
+ }
1130
+ /** Sets `height: inc`. */
1131
+ h(inc) {
1132
+ return this.add("height", maybeInc(inc));
1133
+ }
1134
+ /** Sets `height: px`. */
1135
+ hPx(px) {
1136
+ return this.h(`${px}px`);
1137
+ }
1138
+ /** Sets `height: "25%"`. */
1139
+ get h25() {
1140
+ return this.add("height", "25%");
1141
+ }
1142
+ /** Sets `height: "50%"`. */
1143
+ get h50() {
1144
+ return this.add("height", "50%");
1145
+ }
1146
+ /** Sets `height: "75%"`. */
1147
+ get h75() {
1148
+ return this.add("height", "75%");
1149
+ }
1150
+ /** Sets `height: "100%"`. */
1151
+ get h100() {
1152
+ return this.add("height", "100%");
1153
+ }
1154
+ /** Sets `height: "25vh"`. */
1155
+ get vh25() {
1156
+ return this.add("height", "25vh");
1157
+ }
1158
+ /** Sets `height: "50vh"`. */
1159
+ get vh50() {
1160
+ return this.add("height", "50vh");
1161
+ }
1162
+ /** Sets `height: "75vh"`. */
1163
+ get vh75() {
1164
+ return this.add("height", "75vh");
1165
+ }
1166
+ /** Sets `height: "100vh"`. */
1167
+ get vh100() {
1168
+ return this.add("height", "100vh");
1169
+ }
1170
+ /** Sets `minHeight: 0`. */
1171
+ get mh0() {
1172
+ return this.add("minHeight", 0);
1173
+ }
1174
+ /** Sets `minHeight: "25%"`. */
1175
+ get mh25() {
1176
+ return this.add("minHeight", "25%");
1177
+ }
1178
+ /** Sets `minHeight: "50%"`. */
1179
+ get mh50() {
1180
+ return this.add("minHeight", "50%");
1181
+ }
1182
+ /** Sets `minHeight: "75%"`. */
1183
+ get mh75() {
1184
+ return this.add("minHeight", "75%");
1185
+ }
1186
+ /** Sets `minHeight: "100%"`. */
1187
+ get mh100() {
1188
+ return this.add("minHeight", "100%");
1189
+ }
1190
+ /** Sets `minHeight: "100vh"`. */
1191
+ get mvh100() {
1192
+ return this.add("minHeight", "100vh");
1193
+ }
1194
+ /** Sets `minHeight: value`. */
1195
+ mh(value) {
1196
+ return this.add("minHeight", value);
1197
+ }
1198
+ /** Sets `minHeight: px`. */
1199
+ mhPx(px) {
1200
+ return this.mh(`${px}px`);
1201
+ }
1202
+ /** Sets `maxHeight: "0"`. */
1203
+ get maxh0() {
1204
+ return this.add("maxHeight", "0");
1205
+ }
1206
+ /** Sets `maxHeight: "25%"`. */
1207
+ get maxh25() {
1208
+ return this.add("maxHeight", "25%");
1209
+ }
1210
+ /** Sets `maxHeight: "50%"`. */
1211
+ get maxh50() {
1212
+ return this.add("maxHeight", "50%");
1213
+ }
1214
+ /** Sets `maxHeight: "75%"`. */
1215
+ get maxh75() {
1216
+ return this.add("maxHeight", "75%");
1217
+ }
1218
+ /** Sets `maxHeight: "100%"`. */
1219
+ get maxh100() {
1220
+ return this.add("maxHeight", "100%");
1221
+ }
1222
+ /** Sets `maxHeight: value`. */
1223
+ maxh(value) {
1224
+ return this.add("maxHeight", value);
1225
+ }
1226
+ /** Sets `maxHeight: px`. */
1227
+ maxhPx(px) {
1228
+ return this.maxh(`${px}px`);
1229
+ }
1230
+ /** Sets `height: px; width: px`. */
1231
+ sqPx(px) {
1232
+ return this.add("height", `${px}px`).add("width", `${px}px`);
1233
+ }
1234
+ // lineClamp
1235
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 1; textOverflow: "ellipsis"`. */
1236
+ get lineClamp1() {
1237
+ return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitLineClamp", 1).add("textOverflow", "ellipsis");
1238
+ }
1239
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 2; textOverflow: "ellipsis"`. */
1240
+ get lineClamp2() {
1241
+ return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitLineClamp", 2).add("textOverflow", "ellipsis");
1242
+ }
1243
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 3; textOverflow: "ellipsis"`. */
1244
+ get lineClamp3() {
1245
+ return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitLineClamp", 3).add("textOverflow", "ellipsis");
1246
+ }
1247
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 4; textOverflow: "ellipsis"`. */
1248
+ get lineClamp4() {
1249
+ return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitLineClamp", 4).add("textOverflow", "ellipsis");
1250
+ }
1251
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 5; textOverflow: "ellipsis"`. */
1252
+ get lineClamp5() {
1253
+ return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitLineClamp", 5).add("textOverflow", "ellipsis");
1254
+ }
1255
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 6; textOverflow: "ellipsis"`. */
1256
+ get lineClamp6() {
1257
+ return this.add("overflow", "hidden").add("display", "-webkit-box").add("WebkitLineClamp", 6).add("textOverflow", "ellipsis");
1258
+ }
1259
+ /** Sets `WebkitLineClamp: "unset"`. */
1260
+ get lineClampNone() {
1261
+ return this.add("WebkitLineClamp", "unset");
1262
+ }
1263
+ // objectFit
1264
+ /** Sets `objectFit: "contain"`. */
1265
+ get objectContain() {
1266
+ return this.add("objectFit", "contain");
1267
+ }
1268
+ /** Sets `objectFit: "cover"`. */
1269
+ get objectCover() {
1270
+ return this.add("objectFit", "cover");
1271
+ }
1272
+ /** Sets `objectFit: "fill"`. */
1273
+ get objectFill() {
1274
+ return this.add("objectFit", "fill");
1275
+ }
1276
+ /** Sets `objectFit: "none"`. */
1277
+ get objectNone() {
1278
+ return this.add("objectFit", "none");
1279
+ }
1280
+ /** Sets `objectFit: "scale-down"`. */
1281
+ get objectScaleDown() {
1282
+ return this.add("objectFit", "scale-down");
1283
+ }
1284
+ /** Sets `objectFit: value`. */
1285
+ objectFit(value) {
1286
+ return this.add("objectFit", value);
1287
+ }
1288
+ // outline
1289
+ /** Sets `outline: "1px solid"`. */
1290
+ get outline1() {
1291
+ return this.add("outline", "1px solid");
1292
+ }
1293
+ /** Sets `outline: "1px solid transparent"`. */
1294
+ get outlineTransparent() {
1295
+ return this.add("outline", "1px solid transparent");
1296
+ }
1297
+ /** Sets `outline: "0"`. */
1298
+ get outline0() {
1299
+ return this.add("outline", "0");
1300
+ }
1301
+ /** Sets `outline: value`. */
1302
+ outline(value) {
1303
+ return this.add("outline", value);
1304
+ }
1305
+ // overflow
1306
+ /** Sets `overflow: "visible"`. */
1307
+ get overflowVisible() {
1308
+ return this.add("overflow", "visible");
1309
+ }
1310
+ /** Sets `overflow: "hidden"`. */
1311
+ get overflowHidden() {
1312
+ return this.add("overflow", "hidden");
1313
+ }
1314
+ /** Sets `overflow: "scroll"`. */
1315
+ get overflowScroll() {
1316
+ return this.add("overflow", "scroll");
1317
+ }
1318
+ /** Sets `overflow: "auto"`. */
1319
+ get overflowAuto() {
1320
+ return this.add("overflow", "auto");
1321
+ }
1322
+ /** Sets `overflow: value`. */
1323
+ overflow(value) {
1324
+ return this.add("overflow", value);
1325
+ }
1326
+ /** Sets `overflowY: "visible"`. */
1327
+ get overflowYVisible() {
1328
+ return this.add("overflowY", "visible");
1329
+ }
1330
+ /** Sets `overflowY: "hidden"`. */
1331
+ get overflowYHidden() {
1332
+ return this.add("overflowY", "hidden");
1333
+ }
1334
+ /** Sets `overflowY: "scroll"`. */
1335
+ get overflowYScroll() {
1336
+ return this.add("overflowY", "scroll");
1337
+ }
1338
+ /** Sets `overflowY: "auto"`. */
1339
+ get overflowYAuto() {
1340
+ return this.add("overflowY", "auto");
1341
+ }
1342
+ /** Sets `overflowY: value`. */
1343
+ overflowY(value) {
1344
+ return this.add("overflowY", value);
1345
+ }
1346
+ /** Sets `overflowX: "visible"`. */
1347
+ get overflowXVisible() {
1348
+ return this.add("overflowX", "visible");
1349
+ }
1350
+ /** Sets `overflowX: "hidden"`. */
1351
+ get overflowXHidden() {
1352
+ return this.add("overflowX", "hidden");
1353
+ }
1354
+ /** Sets `overflowX: "scroll"`. */
1355
+ get overflowXScroll() {
1356
+ return this.add("overflowX", "scroll");
1357
+ }
1358
+ /** Sets `overflowX: "auto"`. */
1359
+ get overflowXAuto() {
1360
+ return this.add("overflowX", "auto");
1361
+ }
1362
+ /** Sets `overflowX: value`. */
1363
+ overflowX(value) {
1364
+ return this.add("overflowX", value);
1365
+ }
1366
+ // position
1367
+ /** Sets `position: "absolute"`. */
1368
+ get absolute() {
1369
+ return this.add("position", "absolute");
1370
+ }
1371
+ /** Sets `position: "fixed"`. */
1372
+ get fixed() {
1373
+ return this.add("position", "fixed");
1374
+ }
1375
+ /** Sets `position: "static"`. */
1376
+ get static() {
1377
+ return this.add("position", "static");
1378
+ }
1379
+ /** Sets `position: "relative"`. */
1380
+ get relative() {
1381
+ return this.add("position", "relative");
1382
+ }
1383
+ /** Sets `position: "sticky"`. */
1384
+ get sticky() {
1385
+ return this.add("position", "sticky");
1386
+ }
1387
+ /** Sets `position: value`. */
1388
+ position(value) {
1389
+ return this.add("position", value);
1390
+ }
1391
+ // skins
1392
+ /** Sets `color: "rgba(254,254,254,1)"`. */
1393
+ get white() {
1394
+ return this.add("color", "rgba(254,254,254,1)");
1395
+ }
1396
+ /** Sets `color: "rgba(0,0,0,0)"`. */
1397
+ get transparent() {
1398
+ return this.add("color", "rgba(0,0,0,0)");
1399
+ }
1400
+ /** Sets `color: "rgba(255,253,253,1)"`. */
1401
+ get gray50() {
1402
+ return this.add("color", "rgba(255,253,253,1)");
1403
+ }
1404
+ /** Sets `color: "rgba(247,245,245,1)"`. */
1405
+ get gray100() {
1406
+ return this.add("color", "rgba(247,245,245,1)");
1407
+ }
1408
+ /** Sets `color: "rgba(236,235,235,1)"`. */
1409
+ get gray200() {
1410
+ return this.add("color", "rgba(236,235,235,1)");
1411
+ }
1412
+ /** Sets `color: "rgba(221,220,220,1)"`. */
1413
+ get gray300() {
1414
+ return this.add("color", "rgba(221,220,220,1)");
1415
+ }
1416
+ /** Sets `color: "rgba(201,201,201,1)"`. */
1417
+ get gray400() {
1418
+ return this.add("color", "rgba(201,201,201,1)");
1419
+ }
1420
+ /** Sets `color: "rgba(175,175,175,1)"`. */
1421
+ get gray500() {
1422
+ return this.add("color", "rgba(175,175,175,1)");
1423
+ }
1424
+ /** Sets `color: "rgba(141,141,141,1)"`. */
1425
+ get gray600() {
1426
+ return this.add("color", "rgba(141,141,141,1)");
1427
+ }
1428
+ /** Sets `color: "rgba(100,100,100,1)"`. */
1429
+ get gray700() {
1430
+ return this.add("color", "rgba(100,100,100,1)");
1431
+ }
1432
+ /** Sets `color: "rgba(53,53,53,1)"`. */
1433
+ get gray800() {
1434
+ return this.add("color", "rgba(53,53,53,1)");
1435
+ }
1436
+ /** Sets `color: "rgba(36,36,36,1)"`. */
1437
+ get gray900() {
1438
+ return this.add("color", "rgba(36,36,36,1)");
1439
+ }
1440
+ /** Sets `color: "rgba(240,249,255,1)"`. */
1441
+ get lightBlue50() {
1442
+ return this.add("color", "rgba(240,249,255,1)");
1443
+ }
1444
+ /** Sets `color: "rgba(224,242,254,1)"`. */
1445
+ get lightBlue100() {
1446
+ return this.add("color", "rgba(224,242,254,1)");
1447
+ }
1448
+ /** Sets `color: "rgba(186,230,253,1)"`. */
1449
+ get lightBlue200() {
1450
+ return this.add("color", "rgba(186,230,253,1)");
1451
+ }
1452
+ /** Sets `color: "rgba(125,211,252,1)"`. */
1453
+ get lightBlue300() {
1454
+ return this.add("color", "rgba(125,211,252,1)");
1455
+ }
1456
+ /** Sets `color: "rgba(56,189,248,1)"`. */
1457
+ get lightBlue400() {
1458
+ return this.add("color", "rgba(56,189,248,1)");
1459
+ }
1460
+ /** Sets `color: "rgba(14,165,233,1)"`. */
1461
+ get lightBlue500() {
1462
+ return this.add("color", "rgba(14,165,233,1)");
1463
+ }
1464
+ /** Sets `color: "rgba(2,143,199,1)"`. */
1465
+ get lightBlue600() {
1466
+ return this.add("color", "rgba(2,143,199,1)");
1467
+ }
1468
+ /** Sets `color: "rgba(3,105,161,1)"`. */
1469
+ get lightBlue700() {
1470
+ return this.add("color", "rgba(3,105,161,1)");
1471
+ }
1472
+ /** Sets `color: "rgba(7,89,133,1)"`. */
1473
+ get lightBlue800() {
1474
+ return this.add("color", "rgba(7,89,133,1)");
1475
+ }
1476
+ /** Sets `color: "rgba(12,74,110,1)"`. */
1477
+ get lightBlue900() {
1478
+ return this.add("color", "rgba(12,74,110,1)");
1479
+ }
1480
+ /** Sets `color: "rgba(255,242,242,1)"`. */
1481
+ get red50() {
1482
+ return this.add("color", "rgba(255,242,242,1)");
1483
+ }
1484
+ /** Sets `color: "rgba(253,210,209,1)"`. */
1485
+ get red100() {
1486
+ return this.add("color", "rgba(253,210,209,1)");
1487
+ }
1488
+ /** Sets `color: "rgba(249,181,177,1)"`. */
1489
+ get red200() {
1490
+ return this.add("color", "rgba(249,181,177,1)");
1491
+ }
1492
+ /** Sets `color: "rgba(242,155,148,1)"`. */
1493
+ get red300() {
1494
+ return this.add("color", "rgba(242,155,148,1)");
1495
+ }
1496
+ /** Sets `color: "rgba(232,133,122,1)"`. */
1497
+ get red400() {
1498
+ return this.add("color", "rgba(232,133,122,1)");
1499
+ }
1500
+ /** Sets `color: "rgba(218,114,100,1)"`. */
1501
+ get red500() {
1502
+ return this.add("color", "rgba(218,114,100,1)");
1503
+ }
1504
+ /** Sets `color: "rgba(200,98,81,1)"`. */
1505
+ get red600() {
1506
+ return this.add("color", "rgba(200,98,81,1)");
1507
+ }
1508
+ /** Sets `color: "rgba(176,83,73,1)"`. */
1509
+ get red700() {
1510
+ return this.add("color", "rgba(176,83,73,1)");
1511
+ }
1512
+ /** Sets `color: "rgba(149,68,64,1)"`. */
1513
+ get red800() {
1514
+ return this.add("color", "rgba(149,68,64,1)");
1515
+ }
1516
+ /** Sets `color: "rgba(120,54,54,1)"`. */
1517
+ get red900() {
1518
+ return this.add("color", "rgba(120,54,54,1)");
1519
+ }
1520
+ /** Sets `color: "rgba(255,254,242,1)"`. */
1521
+ get yellow50() {
1522
+ return this.add("color", "rgba(255,254,242,1)");
1523
+ }
1524
+ /** Sets `color: "rgba(255,254,212,1)"`. */
1525
+ get yellow100() {
1526
+ return this.add("color", "rgba(255,254,212,1)");
1527
+ }
1528
+ /** Sets `color: "rgba(255,250,180,1)"`. */
1529
+ get yellow200() {
1530
+ return this.add("color", "rgba(255,250,180,1)");
1531
+ }
1532
+ /** Sets `color: "rgba(255,240,150,1)"`. */
1533
+ get yellow300() {
1534
+ return this.add("color", "rgba(255,240,150,1)");
1535
+ }
1536
+ /** Sets `color: "rgba(255,225,123,1)"`. */
1537
+ get yellow400() {
1538
+ return this.add("color", "rgba(255,225,123,1)");
1539
+ }
1540
+ /** Sets `color: "rgba(255,204,99,1)"`. */
1541
+ get yellow500() {
1542
+ return this.add("color", "rgba(255,204,99,1)");
1543
+ }
1544
+ /** Sets `color: "rgba(246,177,78,1)"`. */
1545
+ get yellow600() {
1546
+ return this.add("color", "rgba(246,177,78,1)");
1547
+ }
1548
+ /** Sets `color: "rgba(207,150,73,1)"`. */
1549
+ get yellow700() {
1550
+ return this.add("color", "rgba(207,150,73,1)");
1551
+ }
1552
+ /** Sets `color: "rgba(164,120,66,1)"`. */
1553
+ get yellow800() {
1554
+ return this.add("color", "rgba(164,120,66,1)");
1555
+ }
1556
+ /** Sets `color: "rgba(120,89,54,1)"`. */
1557
+ get yellow900() {
1558
+ return this.add("color", "rgba(120,89,54,1)");
1559
+ }
1560
+ /** Sets `color: "rgba(250,255,250,1)"`. */
1561
+ get green50() {
1562
+ return this.add("color", "rgba(250,255,250,1)");
1563
+ }
1564
+ /** Sets `color: "rgba(223,248,216,1)"`. */
1565
+ get green100() {
1566
+ return this.add("color", "rgba(223,248,216,1)");
1567
+ }
1568
+ /** Sets `color: "rgba(199,239,183,1)"`. */
1569
+ get green200() {
1570
+ return this.add("color", "rgba(199,239,183,1)");
1571
+ }
1572
+ /** Sets `color: "rgba(179,226,153,1)"`. */
1573
+ get green300() {
1574
+ return this.add("color", "rgba(179,226,153,1)");
1575
+ }
1576
+ /** Sets `color: "rgba(163,208,126,1)"`. */
1577
+ get green400() {
1578
+ return this.add("color", "rgba(163,208,126,1)");
1579
+ }
1580
+ /** Sets `color: "rgba(146,185,101,1)"`. */
1581
+ get green500() {
1582
+ return this.add("color", "rgba(146,185,101,1)");
1583
+ }
1584
+ /** Sets `color: "rgba(126,156,79,1)"`. */
1585
+ get green600() {
1586
+ return this.add("color", "rgba(126,156,79,1)");
1587
+ }
1588
+ /** Sets `color: "rgba(101,120,57,1)"`. */
1589
+ get green700() {
1590
+ return this.add("color", "rgba(101,120,57,1)");
1591
+ }
1592
+ /** Sets `color: "rgba(64,93,44,1)"`. */
1593
+ get green800() {
1594
+ return this.add("color", "rgba(64,93,44,1)");
1595
+ }
1596
+ /** Sets `color: "rgba(34,64,31,1)"`. */
1597
+ get green900() {
1598
+ return this.add("color", "rgba(34,64,31,1)");
1599
+ }
1600
+ /** Sets `color: "rgba(245,243,255,1)"`. */
1601
+ get violet50() {
1602
+ return this.add("color", "rgba(245,243,255,1)");
1603
+ }
1604
+ /** Sets `color: "rgba(238,234,253,1)"`. */
1605
+ get violet100() {
1606
+ return this.add("color", "rgba(238,234,253,1)");
1607
+ }
1608
+ /** Sets `color: "rgba(232,225,252,1)"`. */
1609
+ get violet200() {
1610
+ return this.add("color", "rgba(232,225,252,1)");
1611
+ }
1612
+ /** Sets `color: "rgba(218,205,246,1)"`. */
1613
+ get violet300() {
1614
+ return this.add("color", "rgba(218,205,246,1)");
1615
+ }
1616
+ /** Sets `color: "rgba(204,186,236,1)"`. */
1617
+ get violet400() {
1618
+ return this.add("color", "rgba(204,186,236,1)");
1619
+ }
1620
+ /** Sets `color: "rgba(190,167,223,1)"`. */
1621
+ get violet500() {
1622
+ return this.add("color", "rgba(190,167,223,1)");
1623
+ }
1624
+ /** Sets `color: "rgba(173,147,205,1)"`. */
1625
+ get violet600() {
1626
+ return this.add("color", "rgba(173,147,205,1)");
1627
+ }
1628
+ /** Sets `color: "rgba(153,126,181,1)"`. */
1629
+ get violet700() {
1630
+ return this.add("color", "rgba(153,126,181,1)");
1631
+ }
1632
+ /** Sets `color: "rgba(128,103,151,1)"`. */
1633
+ get violet800() {
1634
+ return this.add("color", "rgba(128,103,151,1)");
1635
+ }
1636
+ /** Sets `color: "rgba(100,78,116,1)"`. */
1637
+ get violet900() {
1638
+ return this.add("color", "rgba(100,78,116,1)");
1639
+ }
1640
+ /** Sets `color: value`. */
1641
+ color(value) {
1642
+ return this.add("color", value);
1643
+ }
1644
+ /** Sets `backgroundColor: "rgba(254,254,254,1)"`. */
1645
+ get bgWhite() {
1646
+ return this.add("backgroundColor", "rgba(254,254,254,1)");
1647
+ }
1648
+ /** Sets `backgroundColor: "rgba(0,0,0,0)"`. */
1649
+ get bgTransparent() {
1650
+ return this.add("backgroundColor", "rgba(0,0,0,0)");
1651
+ }
1652
+ /** Sets `backgroundColor: "rgba(255,253,253,1)"`. */
1653
+ get bgGray50() {
1654
+ return this.add("backgroundColor", "rgba(255,253,253,1)");
1655
+ }
1656
+ /** Sets `backgroundColor: "rgba(247,245,245,1)"`. */
1657
+ get bgGray100() {
1658
+ return this.add("backgroundColor", "rgba(247,245,245,1)");
1659
+ }
1660
+ /** Sets `backgroundColor: "rgba(236,235,235,1)"`. */
1661
+ get bgGray200() {
1662
+ return this.add("backgroundColor", "rgba(236,235,235,1)");
1663
+ }
1664
+ /** Sets `backgroundColor: "rgba(221,220,220,1)"`. */
1665
+ get bgGray300() {
1666
+ return this.add("backgroundColor", "rgba(221,220,220,1)");
1667
+ }
1668
+ /** Sets `backgroundColor: "rgba(201,201,201,1)"`. */
1669
+ get bgGray400() {
1670
+ return this.add("backgroundColor", "rgba(201,201,201,1)");
1671
+ }
1672
+ /** Sets `backgroundColor: "rgba(175,175,175,1)"`. */
1673
+ get bgGray500() {
1674
+ return this.add("backgroundColor", "rgba(175,175,175,1)");
1675
+ }
1676
+ /** Sets `backgroundColor: "rgba(141,141,141,1)"`. */
1677
+ get bgGray600() {
1678
+ return this.add("backgroundColor", "rgba(141,141,141,1)");
1679
+ }
1680
+ /** Sets `backgroundColor: "rgba(100,100,100,1)"`. */
1681
+ get bgGray700() {
1682
+ return this.add("backgroundColor", "rgba(100,100,100,1)");
1683
+ }
1684
+ /** Sets `backgroundColor: "rgba(53,53,53,1)"`. */
1685
+ get bgGray800() {
1686
+ return this.add("backgroundColor", "rgba(53,53,53,1)");
1687
+ }
1688
+ /** Sets `backgroundColor: "rgba(36,36,36,1)"`. */
1689
+ get bgGray900() {
1690
+ return this.add("backgroundColor", "rgba(36,36,36,1)");
1691
+ }
1692
+ /** Sets `backgroundColor: "rgba(240,249,255,1)"`. */
1693
+ get bgLightBlue50() {
1694
+ return this.add("backgroundColor", "rgba(240,249,255,1)");
1695
+ }
1696
+ /** Sets `backgroundColor: "rgba(224,242,254,1)"`. */
1697
+ get bgLightBlue100() {
1698
+ return this.add("backgroundColor", "rgba(224,242,254,1)");
1699
+ }
1700
+ /** Sets `backgroundColor: "rgba(186,230,253,1)"`. */
1701
+ get bgLightBlue200() {
1702
+ return this.add("backgroundColor", "rgba(186,230,253,1)");
1703
+ }
1704
+ /** Sets `backgroundColor: "rgba(125,211,252,1)"`. */
1705
+ get bgLightBlue300() {
1706
+ return this.add("backgroundColor", "rgba(125,211,252,1)");
1707
+ }
1708
+ /** Sets `backgroundColor: "rgba(56,189,248,1)"`. */
1709
+ get bgLightBlue400() {
1710
+ return this.add("backgroundColor", "rgba(56,189,248,1)");
1711
+ }
1712
+ /** Sets `backgroundColor: "rgba(14,165,233,1)"`. */
1713
+ get bgLightBlue500() {
1714
+ return this.add("backgroundColor", "rgba(14,165,233,1)");
1715
+ }
1716
+ /** Sets `backgroundColor: "rgba(2,143,199,1)"`. */
1717
+ get bgLightBlue600() {
1718
+ return this.add("backgroundColor", "rgba(2,143,199,1)");
1719
+ }
1720
+ /** Sets `backgroundColor: "rgba(3,105,161,1)"`. */
1721
+ get bgLightBlue700() {
1722
+ return this.add("backgroundColor", "rgba(3,105,161,1)");
1723
+ }
1724
+ /** Sets `backgroundColor: "rgba(7,89,133,1)"`. */
1725
+ get bgLightBlue800() {
1726
+ return this.add("backgroundColor", "rgba(7,89,133,1)");
1727
+ }
1728
+ /** Sets `backgroundColor: "rgba(12,74,110,1)"`. */
1729
+ get bgLightBlue900() {
1730
+ return this.add("backgroundColor", "rgba(12,74,110,1)");
1731
+ }
1732
+ /** Sets `backgroundColor: "rgba(255,242,242,1)"`. */
1733
+ get bgRed50() {
1734
+ return this.add("backgroundColor", "rgba(255,242,242,1)");
1735
+ }
1736
+ /** Sets `backgroundColor: "rgba(253,210,209,1)"`. */
1737
+ get bgRed100() {
1738
+ return this.add("backgroundColor", "rgba(253,210,209,1)");
1739
+ }
1740
+ /** Sets `backgroundColor: "rgba(249,181,177,1)"`. */
1741
+ get bgRed200() {
1742
+ return this.add("backgroundColor", "rgba(249,181,177,1)");
1743
+ }
1744
+ /** Sets `backgroundColor: "rgba(242,155,148,1)"`. */
1745
+ get bgRed300() {
1746
+ return this.add("backgroundColor", "rgba(242,155,148,1)");
1747
+ }
1748
+ /** Sets `backgroundColor: "rgba(232,133,122,1)"`. */
1749
+ get bgRed400() {
1750
+ return this.add("backgroundColor", "rgba(232,133,122,1)");
1751
+ }
1752
+ /** Sets `backgroundColor: "rgba(218,114,100,1)"`. */
1753
+ get bgRed500() {
1754
+ return this.add("backgroundColor", "rgba(218,114,100,1)");
1755
+ }
1756
+ /** Sets `backgroundColor: "rgba(200,98,81,1)"`. */
1757
+ get bgRed600() {
1758
+ return this.add("backgroundColor", "rgba(200,98,81,1)");
1759
+ }
1760
+ /** Sets `backgroundColor: "rgba(176,83,73,1)"`. */
1761
+ get bgRed700() {
1762
+ return this.add("backgroundColor", "rgba(176,83,73,1)");
1763
+ }
1764
+ /** Sets `backgroundColor: "rgba(149,68,64,1)"`. */
1765
+ get bgRed800() {
1766
+ return this.add("backgroundColor", "rgba(149,68,64,1)");
1767
+ }
1768
+ /** Sets `backgroundColor: "rgba(120,54,54,1)"`. */
1769
+ get bgRed900() {
1770
+ return this.add("backgroundColor", "rgba(120,54,54,1)");
1771
+ }
1772
+ /** Sets `backgroundColor: "rgba(255,254,242,1)"`. */
1773
+ get bgYellow50() {
1774
+ return this.add("backgroundColor", "rgba(255,254,242,1)");
1775
+ }
1776
+ /** Sets `backgroundColor: "rgba(255,254,212,1)"`. */
1777
+ get bgYellow100() {
1778
+ return this.add("backgroundColor", "rgba(255,254,212,1)");
1779
+ }
1780
+ /** Sets `backgroundColor: "rgba(255,250,180,1)"`. */
1781
+ get bgYellow200() {
1782
+ return this.add("backgroundColor", "rgba(255,250,180,1)");
1783
+ }
1784
+ /** Sets `backgroundColor: "rgba(255,240,150,1)"`. */
1785
+ get bgYellow300() {
1786
+ return this.add("backgroundColor", "rgba(255,240,150,1)");
1787
+ }
1788
+ /** Sets `backgroundColor: "rgba(255,225,123,1)"`. */
1789
+ get bgYellow400() {
1790
+ return this.add("backgroundColor", "rgba(255,225,123,1)");
1791
+ }
1792
+ /** Sets `backgroundColor: "rgba(255,204,99,1)"`. */
1793
+ get bgYellow500() {
1794
+ return this.add("backgroundColor", "rgba(255,204,99,1)");
1795
+ }
1796
+ /** Sets `backgroundColor: "rgba(246,177,78,1)"`. */
1797
+ get bgYellow600() {
1798
+ return this.add("backgroundColor", "rgba(246,177,78,1)");
1799
+ }
1800
+ /** Sets `backgroundColor: "rgba(207,150,73,1)"`. */
1801
+ get bgYellow700() {
1802
+ return this.add("backgroundColor", "rgba(207,150,73,1)");
1803
+ }
1804
+ /** Sets `backgroundColor: "rgba(164,120,66,1)"`. */
1805
+ get bgYellow800() {
1806
+ return this.add("backgroundColor", "rgba(164,120,66,1)");
1807
+ }
1808
+ /** Sets `backgroundColor: "rgba(120,89,54,1)"`. */
1809
+ get bgYellow900() {
1810
+ return this.add("backgroundColor", "rgba(120,89,54,1)");
1811
+ }
1812
+ /** Sets `backgroundColor: "rgba(250,255,250,1)"`. */
1813
+ get bgGreen50() {
1814
+ return this.add("backgroundColor", "rgba(250,255,250,1)");
1815
+ }
1816
+ /** Sets `backgroundColor: "rgba(223,248,216,1)"`. */
1817
+ get bgGreen100() {
1818
+ return this.add("backgroundColor", "rgba(223,248,216,1)");
1819
+ }
1820
+ /** Sets `backgroundColor: "rgba(199,239,183,1)"`. */
1821
+ get bgGreen200() {
1822
+ return this.add("backgroundColor", "rgba(199,239,183,1)");
1823
+ }
1824
+ /** Sets `backgroundColor: "rgba(179,226,153,1)"`. */
1825
+ get bgGreen300() {
1826
+ return this.add("backgroundColor", "rgba(179,226,153,1)");
1827
+ }
1828
+ /** Sets `backgroundColor: "rgba(163,208,126,1)"`. */
1829
+ get bgGreen400() {
1830
+ return this.add("backgroundColor", "rgba(163,208,126,1)");
1831
+ }
1832
+ /** Sets `backgroundColor: "rgba(146,185,101,1)"`. */
1833
+ get bgGreen500() {
1834
+ return this.add("backgroundColor", "rgba(146,185,101,1)");
1835
+ }
1836
+ /** Sets `backgroundColor: "rgba(126,156,79,1)"`. */
1837
+ get bgGreen600() {
1838
+ return this.add("backgroundColor", "rgba(126,156,79,1)");
1839
+ }
1840
+ /** Sets `backgroundColor: "rgba(101,120,57,1)"`. */
1841
+ get bgGreen700() {
1842
+ return this.add("backgroundColor", "rgba(101,120,57,1)");
1843
+ }
1844
+ /** Sets `backgroundColor: "rgba(64,93,44,1)"`. */
1845
+ get bgGreen800() {
1846
+ return this.add("backgroundColor", "rgba(64,93,44,1)");
1847
+ }
1848
+ /** Sets `backgroundColor: "rgba(34,64,31,1)"`. */
1849
+ get bgGreen900() {
1850
+ return this.add("backgroundColor", "rgba(34,64,31,1)");
1851
+ }
1852
+ /** Sets `backgroundColor: "rgba(245,243,255,1)"`. */
1853
+ get bgViolet50() {
1854
+ return this.add("backgroundColor", "rgba(245,243,255,1)");
1855
+ }
1856
+ /** Sets `backgroundColor: "rgba(238,234,253,1)"`. */
1857
+ get bgViolet100() {
1858
+ return this.add("backgroundColor", "rgba(238,234,253,1)");
1859
+ }
1860
+ /** Sets `backgroundColor: "rgba(232,225,252,1)"`. */
1861
+ get bgViolet200() {
1862
+ return this.add("backgroundColor", "rgba(232,225,252,1)");
1863
+ }
1864
+ /** Sets `backgroundColor: "rgba(218,205,246,1)"`. */
1865
+ get bgViolet300() {
1866
+ return this.add("backgroundColor", "rgba(218,205,246,1)");
1867
+ }
1868
+ /** Sets `backgroundColor: "rgba(204,186,236,1)"`. */
1869
+ get bgViolet400() {
1870
+ return this.add("backgroundColor", "rgba(204,186,236,1)");
1871
+ }
1872
+ /** Sets `backgroundColor: "rgba(190,167,223,1)"`. */
1873
+ get bgViolet500() {
1874
+ return this.add("backgroundColor", "rgba(190,167,223,1)");
1875
+ }
1876
+ /** Sets `backgroundColor: "rgba(173,147,205,1)"`. */
1877
+ get bgViolet600() {
1878
+ return this.add("backgroundColor", "rgba(173,147,205,1)");
1879
+ }
1880
+ /** Sets `backgroundColor: "rgba(153,126,181,1)"`. */
1881
+ get bgViolet700() {
1882
+ return this.add("backgroundColor", "rgba(153,126,181,1)");
1883
+ }
1884
+ /** Sets `backgroundColor: "rgba(128,103,151,1)"`. */
1885
+ get bgViolet800() {
1886
+ return this.add("backgroundColor", "rgba(128,103,151,1)");
1887
+ }
1888
+ /** Sets `backgroundColor: "rgba(100,78,116,1)"`. */
1889
+ get bgViolet900() {
1890
+ return this.add("backgroundColor", "rgba(100,78,116,1)");
1891
+ }
1892
+ /** Sets `backgroundColor: value`. */
1893
+ bgColor(value) {
1894
+ return this.add("backgroundColor", value);
1895
+ }
1896
+ /** Sets `fill: "rgba(254,254,254,1)"`. */
1897
+ get fWhite() {
1898
+ return this.add("fill", "rgba(254,254,254,1)");
1899
+ }
1900
+ /** Sets `fill: "rgba(0,0,0,0)"`. */
1901
+ get fTransparent() {
1902
+ return this.add("fill", "rgba(0,0,0,0)");
1903
+ }
1904
+ /** Sets `fill: "rgba(255,253,253,1)"`. */
1905
+ get fGray50() {
1906
+ return this.add("fill", "rgba(255,253,253,1)");
1907
+ }
1908
+ /** Sets `fill: "rgba(247,245,245,1)"`. */
1909
+ get fGray100() {
1910
+ return this.add("fill", "rgba(247,245,245,1)");
1911
+ }
1912
+ /** Sets `fill: "rgba(236,235,235,1)"`. */
1913
+ get fGray200() {
1914
+ return this.add("fill", "rgba(236,235,235,1)");
1915
+ }
1916
+ /** Sets `fill: "rgba(221,220,220,1)"`. */
1917
+ get fGray300() {
1918
+ return this.add("fill", "rgba(221,220,220,1)");
1919
+ }
1920
+ /** Sets `fill: "rgba(201,201,201,1)"`. */
1921
+ get fGray400() {
1922
+ return this.add("fill", "rgba(201,201,201,1)");
1923
+ }
1924
+ /** Sets `fill: "rgba(175,175,175,1)"`. */
1925
+ get fGray500() {
1926
+ return this.add("fill", "rgba(175,175,175,1)");
1927
+ }
1928
+ /** Sets `fill: "rgba(141,141,141,1)"`. */
1929
+ get fGray600() {
1930
+ return this.add("fill", "rgba(141,141,141,1)");
1931
+ }
1932
+ /** Sets `fill: "rgba(100,100,100,1)"`. */
1933
+ get fGray700() {
1934
+ return this.add("fill", "rgba(100,100,100,1)");
1935
+ }
1936
+ /** Sets `fill: "rgba(53,53,53,1)"`. */
1937
+ get fGray800() {
1938
+ return this.add("fill", "rgba(53,53,53,1)");
1939
+ }
1940
+ /** Sets `fill: "rgba(36,36,36,1)"`. */
1941
+ get fGray900() {
1942
+ return this.add("fill", "rgba(36,36,36,1)");
1943
+ }
1944
+ /** Sets `fill: "rgba(240,249,255,1)"`. */
1945
+ get fLightBlue50() {
1946
+ return this.add("fill", "rgba(240,249,255,1)");
1947
+ }
1948
+ /** Sets `fill: "rgba(224,242,254,1)"`. */
1949
+ get fLightBlue100() {
1950
+ return this.add("fill", "rgba(224,242,254,1)");
1951
+ }
1952
+ /** Sets `fill: "rgba(186,230,253,1)"`. */
1953
+ get fLightBlue200() {
1954
+ return this.add("fill", "rgba(186,230,253,1)");
1955
+ }
1956
+ /** Sets `fill: "rgba(125,211,252,1)"`. */
1957
+ get fLightBlue300() {
1958
+ return this.add("fill", "rgba(125,211,252,1)");
1959
+ }
1960
+ /** Sets `fill: "rgba(56,189,248,1)"`. */
1961
+ get fLightBlue400() {
1962
+ return this.add("fill", "rgba(56,189,248,1)");
1963
+ }
1964
+ /** Sets `fill: "rgba(14,165,233,1)"`. */
1965
+ get fLightBlue500() {
1966
+ return this.add("fill", "rgba(14,165,233,1)");
1967
+ }
1968
+ /** Sets `fill: "rgba(2,143,199,1)"`. */
1969
+ get fLightBlue600() {
1970
+ return this.add("fill", "rgba(2,143,199,1)");
1971
+ }
1972
+ /** Sets `fill: "rgba(3,105,161,1)"`. */
1973
+ get fLightBlue700() {
1974
+ return this.add("fill", "rgba(3,105,161,1)");
1975
+ }
1976
+ /** Sets `fill: "rgba(7,89,133,1)"`. */
1977
+ get fLightBlue800() {
1978
+ return this.add("fill", "rgba(7,89,133,1)");
1979
+ }
1980
+ /** Sets `fill: "rgba(12,74,110,1)"`. */
1981
+ get fLightBlue900() {
1982
+ return this.add("fill", "rgba(12,74,110,1)");
1983
+ }
1984
+ /** Sets `fill: "rgba(255,242,242,1)"`. */
1985
+ get fRed50() {
1986
+ return this.add("fill", "rgba(255,242,242,1)");
1987
+ }
1988
+ /** Sets `fill: "rgba(253,210,209,1)"`. */
1989
+ get fRed100() {
1990
+ return this.add("fill", "rgba(253,210,209,1)");
1991
+ }
1992
+ /** Sets `fill: "rgba(249,181,177,1)"`. */
1993
+ get fRed200() {
1994
+ return this.add("fill", "rgba(249,181,177,1)");
1995
+ }
1996
+ /** Sets `fill: "rgba(242,155,148,1)"`. */
1997
+ get fRed300() {
1998
+ return this.add("fill", "rgba(242,155,148,1)");
1999
+ }
2000
+ /** Sets `fill: "rgba(232,133,122,1)"`. */
2001
+ get fRed400() {
2002
+ return this.add("fill", "rgba(232,133,122,1)");
2003
+ }
2004
+ /** Sets `fill: "rgba(218,114,100,1)"`. */
2005
+ get fRed500() {
2006
+ return this.add("fill", "rgba(218,114,100,1)");
2007
+ }
2008
+ /** Sets `fill: "rgba(200,98,81,1)"`. */
2009
+ get fRed600() {
2010
+ return this.add("fill", "rgba(200,98,81,1)");
2011
+ }
2012
+ /** Sets `fill: "rgba(176,83,73,1)"`. */
2013
+ get fRed700() {
2014
+ return this.add("fill", "rgba(176,83,73,1)");
2015
+ }
2016
+ /** Sets `fill: "rgba(149,68,64,1)"`. */
2017
+ get fRed800() {
2018
+ return this.add("fill", "rgba(149,68,64,1)");
2019
+ }
2020
+ /** Sets `fill: "rgba(120,54,54,1)"`. */
2021
+ get fRed900() {
2022
+ return this.add("fill", "rgba(120,54,54,1)");
2023
+ }
2024
+ /** Sets `fill: "rgba(255,254,242,1)"`. */
2025
+ get fYellow50() {
2026
+ return this.add("fill", "rgba(255,254,242,1)");
2027
+ }
2028
+ /** Sets `fill: "rgba(255,254,212,1)"`. */
2029
+ get fYellow100() {
2030
+ return this.add("fill", "rgba(255,254,212,1)");
2031
+ }
2032
+ /** Sets `fill: "rgba(255,250,180,1)"`. */
2033
+ get fYellow200() {
2034
+ return this.add("fill", "rgba(255,250,180,1)");
2035
+ }
2036
+ /** Sets `fill: "rgba(255,240,150,1)"`. */
2037
+ get fYellow300() {
2038
+ return this.add("fill", "rgba(255,240,150,1)");
2039
+ }
2040
+ /** Sets `fill: "rgba(255,225,123,1)"`. */
2041
+ get fYellow400() {
2042
+ return this.add("fill", "rgba(255,225,123,1)");
2043
+ }
2044
+ /** Sets `fill: "rgba(255,204,99,1)"`. */
2045
+ get fYellow500() {
2046
+ return this.add("fill", "rgba(255,204,99,1)");
2047
+ }
2048
+ /** Sets `fill: "rgba(246,177,78,1)"`. */
2049
+ get fYellow600() {
2050
+ return this.add("fill", "rgba(246,177,78,1)");
2051
+ }
2052
+ /** Sets `fill: "rgba(207,150,73,1)"`. */
2053
+ get fYellow700() {
2054
+ return this.add("fill", "rgba(207,150,73,1)");
2055
+ }
2056
+ /** Sets `fill: "rgba(164,120,66,1)"`. */
2057
+ get fYellow800() {
2058
+ return this.add("fill", "rgba(164,120,66,1)");
2059
+ }
2060
+ /** Sets `fill: "rgba(120,89,54,1)"`. */
2061
+ get fYellow900() {
2062
+ return this.add("fill", "rgba(120,89,54,1)");
2063
+ }
2064
+ /** Sets `fill: "rgba(250,255,250,1)"`. */
2065
+ get fGreen50() {
2066
+ return this.add("fill", "rgba(250,255,250,1)");
2067
+ }
2068
+ /** Sets `fill: "rgba(223,248,216,1)"`. */
2069
+ get fGreen100() {
2070
+ return this.add("fill", "rgba(223,248,216,1)");
2071
+ }
2072
+ /** Sets `fill: "rgba(199,239,183,1)"`. */
2073
+ get fGreen200() {
2074
+ return this.add("fill", "rgba(199,239,183,1)");
2075
+ }
2076
+ /** Sets `fill: "rgba(179,226,153,1)"`. */
2077
+ get fGreen300() {
2078
+ return this.add("fill", "rgba(179,226,153,1)");
2079
+ }
2080
+ /** Sets `fill: "rgba(163,208,126,1)"`. */
2081
+ get fGreen400() {
2082
+ return this.add("fill", "rgba(163,208,126,1)");
2083
+ }
2084
+ /** Sets `fill: "rgba(146,185,101,1)"`. */
2085
+ get fGreen500() {
2086
+ return this.add("fill", "rgba(146,185,101,1)");
2087
+ }
2088
+ /** Sets `fill: "rgba(126,156,79,1)"`. */
2089
+ get fGreen600() {
2090
+ return this.add("fill", "rgba(126,156,79,1)");
2091
+ }
2092
+ /** Sets `fill: "rgba(101,120,57,1)"`. */
2093
+ get fGreen700() {
2094
+ return this.add("fill", "rgba(101,120,57,1)");
2095
+ }
2096
+ /** Sets `fill: "rgba(64,93,44,1)"`. */
2097
+ get fGreen800() {
2098
+ return this.add("fill", "rgba(64,93,44,1)");
2099
+ }
2100
+ /** Sets `fill: "rgba(34,64,31,1)"`. */
2101
+ get fGreen900() {
2102
+ return this.add("fill", "rgba(34,64,31,1)");
2103
+ }
2104
+ /** Sets `fill: "rgba(245,243,255,1)"`. */
2105
+ get fViolet50() {
2106
+ return this.add("fill", "rgba(245,243,255,1)");
2107
+ }
2108
+ /** Sets `fill: "rgba(238,234,253,1)"`. */
2109
+ get fViolet100() {
2110
+ return this.add("fill", "rgba(238,234,253,1)");
2111
+ }
2112
+ /** Sets `fill: "rgba(232,225,252,1)"`. */
2113
+ get fViolet200() {
2114
+ return this.add("fill", "rgba(232,225,252,1)");
2115
+ }
2116
+ /** Sets `fill: "rgba(218,205,246,1)"`. */
2117
+ get fViolet300() {
2118
+ return this.add("fill", "rgba(218,205,246,1)");
2119
+ }
2120
+ /** Sets `fill: "rgba(204,186,236,1)"`. */
2121
+ get fViolet400() {
2122
+ return this.add("fill", "rgba(204,186,236,1)");
2123
+ }
2124
+ /** Sets `fill: "rgba(190,167,223,1)"`. */
2125
+ get fViolet500() {
2126
+ return this.add("fill", "rgba(190,167,223,1)");
2127
+ }
2128
+ /** Sets `fill: "rgba(173,147,205,1)"`. */
2129
+ get fViolet600() {
2130
+ return this.add("fill", "rgba(173,147,205,1)");
2131
+ }
2132
+ /** Sets `fill: "rgba(153,126,181,1)"`. */
2133
+ get fViolet700() {
2134
+ return this.add("fill", "rgba(153,126,181,1)");
2135
+ }
2136
+ /** Sets `fill: "rgba(128,103,151,1)"`. */
2137
+ get fViolet800() {
2138
+ return this.add("fill", "rgba(128,103,151,1)");
2139
+ }
2140
+ /** Sets `fill: "rgba(100,78,116,1)"`. */
2141
+ get fViolet900() {
2142
+ return this.add("fill", "rgba(100,78,116,1)");
2143
+ }
2144
+ /** Sets `fill: value`. */
2145
+ fill(value) {
2146
+ return this.add("fill", value);
2147
+ }
2148
+ // spacing
2149
+ /** Sets `marginTop: "0px"`. */
2150
+ get mt0() {
2151
+ return this.mt(0);
2152
+ }
2153
+ /** Sets `marginTop: "8px"`. */
2154
+ get mt1() {
2155
+ return this.mt(1);
2156
+ }
2157
+ /** Sets `marginTop: "16px"`. */
2158
+ get mt2() {
2159
+ return this.mt(2);
2160
+ }
2161
+ /** Sets `marginTop: "24px"`. */
2162
+ get mt3() {
2163
+ return this.mt(3);
2164
+ }
2165
+ /** Sets `marginTop: "32px"`. */
2166
+ get mt4() {
2167
+ return this.mt(4);
2168
+ }
2169
+ /** Sets `marginTop: "40px"`. */
2170
+ get mt5() {
2171
+ return this.mt(5);
2172
+ }
2173
+ /** Sets `marginTop: "48px"`. */
2174
+ get mt6() {
2175
+ return this.mt(6);
2176
+ }
2177
+ /** Sets `marginTop: "56px"`. */
2178
+ get mt7() {
2179
+ return this.mt(7);
2180
+ }
2181
+ /** Sets `marginTop: "64px"`. */
2182
+ get mt8() {
2183
+ return this.mt(8);
2184
+ }
2185
+ /** Sets `marginTop: inc`. */
2186
+ mt(inc) {
2187
+ return this.add("marginTop", maybeInc(inc));
2188
+ }
2189
+ /** Sets `marginTop: px`. */
2190
+ mtPx(px) {
2191
+ return this.mt(`${px}px`);
2192
+ }
2193
+ /** Sets `marginRight: "0px"`. */
2194
+ get mr0() {
2195
+ return this.mr(0);
2196
+ }
2197
+ /** Sets `marginRight: "8px"`. */
2198
+ get mr1() {
2199
+ return this.mr(1);
2200
+ }
2201
+ /** Sets `marginRight: "16px"`. */
2202
+ get mr2() {
2203
+ return this.mr(2);
2204
+ }
2205
+ /** Sets `marginRight: "24px"`. */
2206
+ get mr3() {
2207
+ return this.mr(3);
2208
+ }
2209
+ /** Sets `marginRight: "32px"`. */
2210
+ get mr4() {
2211
+ return this.mr(4);
2212
+ }
2213
+ /** Sets `marginRight: "40px"`. */
2214
+ get mr5() {
2215
+ return this.mr(5);
2216
+ }
2217
+ /** Sets `marginRight: "48px"`. */
2218
+ get mr6() {
2219
+ return this.mr(6);
2220
+ }
2221
+ /** Sets `marginRight: "56px"`. */
2222
+ get mr7() {
2223
+ return this.mr(7);
2224
+ }
2225
+ /** Sets `marginRight: "64px"`. */
2226
+ get mr8() {
2227
+ return this.mr(8);
2228
+ }
2229
+ /** Sets `marginRight: inc`. */
2230
+ mr(inc) {
2231
+ return this.add("marginRight", maybeInc(inc));
2232
+ }
2233
+ /** Sets `marginRight: px`. */
2234
+ mrPx(px) {
2235
+ return this.mr(`${px}px`);
2236
+ }
2237
+ /** Sets `marginBottom: "0px"`. */
2238
+ get mb0() {
2239
+ return this.mb(0);
2240
+ }
2241
+ /** Sets `marginBottom: "8px"`. */
2242
+ get mb1() {
2243
+ return this.mb(1);
2244
+ }
2245
+ /** Sets `marginBottom: "16px"`. */
2246
+ get mb2() {
2247
+ return this.mb(2);
2248
+ }
2249
+ /** Sets `marginBottom: "24px"`. */
2250
+ get mb3() {
2251
+ return this.mb(3);
2252
+ }
2253
+ /** Sets `marginBottom: "32px"`. */
2254
+ get mb4() {
2255
+ return this.mb(4);
2256
+ }
2257
+ /** Sets `marginBottom: "40px"`. */
2258
+ get mb5() {
2259
+ return this.mb(5);
2260
+ }
2261
+ /** Sets `marginBottom: "48px"`. */
2262
+ get mb6() {
2263
+ return this.mb(6);
2264
+ }
2265
+ /** Sets `marginBottom: "56px"`. */
2266
+ get mb7() {
2267
+ return this.mb(7);
2268
+ }
2269
+ /** Sets `marginBottom: "64px"`. */
2270
+ get mb8() {
2271
+ return this.mb(8);
2272
+ }
2273
+ /** Sets `marginBottom: inc`. */
2274
+ mb(inc) {
2275
+ return this.add("marginBottom", maybeInc(inc));
2276
+ }
2277
+ /** Sets `marginBottom: px`. */
2278
+ mbPx(px) {
2279
+ return this.mb(`${px}px`);
2280
+ }
2281
+ /** Sets `marginLeft: "0px"`. */
2282
+ get ml0() {
2283
+ return this.ml(0);
2284
+ }
2285
+ /** Sets `marginLeft: "8px"`. */
2286
+ get ml1() {
2287
+ return this.ml(1);
2288
+ }
2289
+ /** Sets `marginLeft: "16px"`. */
2290
+ get ml2() {
2291
+ return this.ml(2);
2292
+ }
2293
+ /** Sets `marginLeft: "24px"`. */
2294
+ get ml3() {
2295
+ return this.ml(3);
2296
+ }
2297
+ /** Sets `marginLeft: "32px"`. */
2298
+ get ml4() {
2299
+ return this.ml(4);
2300
+ }
2301
+ /** Sets `marginLeft: "40px"`. */
2302
+ get ml5() {
2303
+ return this.ml(5);
2304
+ }
2305
+ /** Sets `marginLeft: "48px"`. */
2306
+ get ml6() {
2307
+ return this.ml(6);
2308
+ }
2309
+ /** Sets `marginLeft: "56px"`. */
2310
+ get ml7() {
2311
+ return this.ml(7);
2312
+ }
2313
+ /** Sets `marginLeft: "64px"`. */
2314
+ get ml8() {
2315
+ return this.ml(8);
2316
+ }
2317
+ /** Sets `marginLeft: inc`. */
2318
+ ml(inc) {
2319
+ return this.add("marginLeft", maybeInc(inc));
2320
+ }
2321
+ /** Sets `marginLeft: px`. */
2322
+ mlPx(px) {
2323
+ return this.ml(`${px}px`);
2324
+ }
2325
+ /** Sets `ml: "0px"; mr: "0px"`. */
2326
+ get mx0() {
2327
+ return this.mx(0);
2328
+ }
2329
+ /** Sets `ml: "8px"; mr: "8px"`. */
2330
+ get mx1() {
2331
+ return this.mx(1);
2332
+ }
2333
+ /** Sets `ml: "16px"; mr: "16px"`. */
2334
+ get mx2() {
2335
+ return this.mx(2);
2336
+ }
2337
+ /** Sets `ml: "24px"; mr: "24px"`. */
2338
+ get mx3() {
2339
+ return this.mx(3);
2340
+ }
2341
+ /** Sets `ml: "32px"; mr: "32px"`. */
2342
+ get mx4() {
2343
+ return this.mx(4);
2344
+ }
2345
+ /** Sets `ml: "40px"; mr: "40px"`. */
2346
+ get mx5() {
2347
+ return this.mx(5);
2348
+ }
2349
+ /** Sets `ml: "48px"; mr: "48px"`. */
2350
+ get mx6() {
2351
+ return this.mx(6);
2352
+ }
2353
+ /** Sets `ml: "56px"; mr: "56px"`. */
2354
+ get mx7() {
2355
+ return this.mx(7);
2356
+ }
2357
+ /** Sets `ml: "64px"; mr: "64px"`. */
2358
+ get mx8() {
2359
+ return this.mx(8);
2360
+ }
2361
+ mx(inc) {
2362
+ return this.ml(inc).mr(inc);
2363
+ }
2364
+ mxPx(px) {
2365
+ return this.mlPx(px).mrPx(px);
2366
+ }
2367
+ /** Sets `mt: "0px"; mb: "0px"`. */
2368
+ get my0() {
2369
+ return this.my(0);
2370
+ }
2371
+ /** Sets `mt: "8px"; mb: "8px"`. */
2372
+ get my1() {
2373
+ return this.my(1);
2374
+ }
2375
+ /** Sets `mt: "16px"; mb: "16px"`. */
2376
+ get my2() {
2377
+ return this.my(2);
2378
+ }
2379
+ /** Sets `mt: "24px"; mb: "24px"`. */
2380
+ get my3() {
2381
+ return this.my(3);
2382
+ }
2383
+ /** Sets `mt: "32px"; mb: "32px"`. */
2384
+ get my4() {
2385
+ return this.my(4);
2386
+ }
2387
+ /** Sets `mt: "40px"; mb: "40px"`. */
2388
+ get my5() {
2389
+ return this.my(5);
2390
+ }
2391
+ /** Sets `mt: "48px"; mb: "48px"`. */
2392
+ get my6() {
2393
+ return this.my(6);
2394
+ }
2395
+ /** Sets `mt: "56px"; mb: "56px"`. */
2396
+ get my7() {
2397
+ return this.my(7);
2398
+ }
2399
+ /** Sets `mt: "64px"; mb: "64px"`. */
2400
+ get my8() {
2401
+ return this.my(8);
2402
+ }
2403
+ my(inc) {
2404
+ return this.mt(inc).mb(inc);
2405
+ }
2406
+ myPx(px) {
2407
+ return this.mtPx(px).mbPx(px);
2408
+ }
2409
+ /** Sets `mt: "0px"; mb: "0px"; mr: "0px"; ml: "0px"`. */
2410
+ get m0() {
2411
+ return this.m(0);
2412
+ }
2413
+ /** Sets `mt: "8px"; mb: "8px"; mr: "8px"; ml: "8px"`. */
2414
+ get m1() {
2415
+ return this.m(1);
2416
+ }
2417
+ /** Sets `mt: "16px"; mb: "16px"; mr: "16px"; ml: "16px"`. */
2418
+ get m2() {
2419
+ return this.m(2);
2420
+ }
2421
+ /** Sets `mt: "24px"; mb: "24px"; mr: "24px"; ml: "24px"`. */
2422
+ get m3() {
2423
+ return this.m(3);
2424
+ }
2425
+ /** Sets `mt: "32px"; mb: "32px"; mr: "32px"; ml: "32px"`. */
2426
+ get m4() {
2427
+ return this.m(4);
2428
+ }
2429
+ /** Sets `mt: "40px"; mb: "40px"; mr: "40px"; ml: "40px"`. */
2430
+ get m5() {
2431
+ return this.m(5);
2432
+ }
2433
+ /** Sets `mt: "48px"; mb: "48px"; mr: "48px"; ml: "48px"`. */
2434
+ get m6() {
2435
+ return this.m(6);
2436
+ }
2437
+ /** Sets `mt: "56px"; mb: "56px"; mr: "56px"; ml: "56px"`. */
2438
+ get m7() {
2439
+ return this.m(7);
2440
+ }
2441
+ /** Sets `mt: "64px"; mb: "64px"; mr: "64px"; ml: "64px"`. */
2442
+ get m8() {
2443
+ return this.m(8);
2444
+ }
2445
+ m(inc) {
2446
+ return this.mt(inc).mb(inc).mr(inc).ml(inc);
2447
+ }
2448
+ mPx(px) {
2449
+ return this.mtPx(px).mbPx(px).mrPx(px).mlPx(px);
2450
+ }
2451
+ /** Sets `paddingTop: "0px"`. */
2452
+ get pt0() {
2453
+ return this.pt(0);
2454
+ }
2455
+ /** Sets `paddingTop: "8px"`. */
2456
+ get pt1() {
2457
+ return this.pt(1);
2458
+ }
2459
+ /** Sets `paddingTop: "16px"`. */
2460
+ get pt2() {
2461
+ return this.pt(2);
2462
+ }
2463
+ /** Sets `paddingTop: "24px"`. */
2464
+ get pt3() {
2465
+ return this.pt(3);
2466
+ }
2467
+ /** Sets `paddingTop: "32px"`. */
2468
+ get pt4() {
2469
+ return this.pt(4);
2470
+ }
2471
+ /** Sets `paddingTop: "40px"`. */
2472
+ get pt5() {
2473
+ return this.pt(5);
2474
+ }
2475
+ /** Sets `paddingTop: "48px"`. */
2476
+ get pt6() {
2477
+ return this.pt(6);
2478
+ }
2479
+ /** Sets `paddingTop: "56px"`. */
2480
+ get pt7() {
2481
+ return this.pt(7);
2482
+ }
2483
+ /** Sets `paddingTop: "64px"`. */
2484
+ get pt8() {
2485
+ return this.pt(8);
2486
+ }
2487
+ /** Sets `paddingTop: inc`. */
2488
+ pt(inc) {
2489
+ return this.add("paddingTop", maybeInc(inc));
2490
+ }
2491
+ /** Sets `paddingTop: px`. */
2492
+ ptPx(px) {
2493
+ return this.pt(`${px}px`);
2494
+ }
2495
+ /** Sets `paddingRight: "0px"`. */
2496
+ get pr0() {
2497
+ return this.pr(0);
2498
+ }
2499
+ /** Sets `paddingRight: "8px"`. */
2500
+ get pr1() {
2501
+ return this.pr(1);
2502
+ }
2503
+ /** Sets `paddingRight: "16px"`. */
2504
+ get pr2() {
2505
+ return this.pr(2);
2506
+ }
2507
+ /** Sets `paddingRight: "24px"`. */
2508
+ get pr3() {
2509
+ return this.pr(3);
2510
+ }
2511
+ /** Sets `paddingRight: "32px"`. */
2512
+ get pr4() {
2513
+ return this.pr(4);
2514
+ }
2515
+ /** Sets `paddingRight: "40px"`. */
2516
+ get pr5() {
2517
+ return this.pr(5);
2518
+ }
2519
+ /** Sets `paddingRight: "48px"`. */
2520
+ get pr6() {
2521
+ return this.pr(6);
2522
+ }
2523
+ /** Sets `paddingRight: "56px"`. */
2524
+ get pr7() {
2525
+ return this.pr(7);
2526
+ }
2527
+ /** Sets `paddingRight: "64px"`. */
2528
+ get pr8() {
2529
+ return this.pr(8);
2530
+ }
2531
+ /** Sets `paddingRight: inc`. */
2532
+ pr(inc) {
2533
+ return this.add("paddingRight", maybeInc(inc));
2534
+ }
2535
+ /** Sets `paddingRight: px`. */
2536
+ prPx(px) {
2537
+ return this.pr(`${px}px`);
2538
+ }
2539
+ /** Sets `paddingBottom: "0px"`. */
2540
+ get pb0() {
2541
+ return this.pb(0);
2542
+ }
2543
+ /** Sets `paddingBottom: "8px"`. */
2544
+ get pb1() {
2545
+ return this.pb(1);
2546
+ }
2547
+ /** Sets `paddingBottom: "16px"`. */
2548
+ get pb2() {
2549
+ return this.pb(2);
2550
+ }
2551
+ /** Sets `paddingBottom: "24px"`. */
2552
+ get pb3() {
2553
+ return this.pb(3);
2554
+ }
2555
+ /** Sets `paddingBottom: "32px"`. */
2556
+ get pb4() {
2557
+ return this.pb(4);
2558
+ }
2559
+ /** Sets `paddingBottom: "40px"`. */
2560
+ get pb5() {
2561
+ return this.pb(5);
2562
+ }
2563
+ /** Sets `paddingBottom: "48px"`. */
2564
+ get pb6() {
2565
+ return this.pb(6);
2566
+ }
2567
+ /** Sets `paddingBottom: "56px"`. */
2568
+ get pb7() {
2569
+ return this.pb(7);
2570
+ }
2571
+ /** Sets `paddingBottom: "64px"`. */
2572
+ get pb8() {
2573
+ return this.pb(8);
2574
+ }
2575
+ /** Sets `paddingBottom: inc`. */
2576
+ pb(inc) {
2577
+ return this.add("paddingBottom", maybeInc(inc));
2578
+ }
2579
+ /** Sets `paddingBottom: px`. */
2580
+ pbPx(px) {
2581
+ return this.pb(`${px}px`);
2582
+ }
2583
+ /** Sets `paddingLeft: "0px"`. */
2584
+ get pl0() {
2585
+ return this.pl(0);
2586
+ }
2587
+ /** Sets `paddingLeft: "8px"`. */
2588
+ get pl1() {
2589
+ return this.pl(1);
2590
+ }
2591
+ /** Sets `paddingLeft: "16px"`. */
2592
+ get pl2() {
2593
+ return this.pl(2);
2594
+ }
2595
+ /** Sets `paddingLeft: "24px"`. */
2596
+ get pl3() {
2597
+ return this.pl(3);
2598
+ }
2599
+ /** Sets `paddingLeft: "32px"`. */
2600
+ get pl4() {
2601
+ return this.pl(4);
2602
+ }
2603
+ /** Sets `paddingLeft: "40px"`. */
2604
+ get pl5() {
2605
+ return this.pl(5);
2606
+ }
2607
+ /** Sets `paddingLeft: "48px"`. */
2608
+ get pl6() {
2609
+ return this.pl(6);
2610
+ }
2611
+ /** Sets `paddingLeft: "56px"`. */
2612
+ get pl7() {
2613
+ return this.pl(7);
2614
+ }
2615
+ /** Sets `paddingLeft: "64px"`. */
2616
+ get pl8() {
2617
+ return this.pl(8);
2618
+ }
2619
+ /** Sets `paddingLeft: inc`. */
2620
+ pl(inc) {
2621
+ return this.add("paddingLeft", maybeInc(inc));
2622
+ }
2623
+ /** Sets `paddingLeft: px`. */
2624
+ plPx(px) {
2625
+ return this.pl(`${px}px`);
2626
+ }
2627
+ /** Sets `pl: "0px"; pr: "0px"`. */
2628
+ get px0() {
2629
+ return this.px(0);
2630
+ }
2631
+ /** Sets `pl: "8px"; pr: "8px"`. */
2632
+ get px1() {
2633
+ return this.px(1);
2634
+ }
2635
+ /** Sets `pl: "16px"; pr: "16px"`. */
2636
+ get px2() {
2637
+ return this.px(2);
2638
+ }
2639
+ /** Sets `pl: "24px"; pr: "24px"`. */
2640
+ get px3() {
2641
+ return this.px(3);
2642
+ }
2643
+ /** Sets `pl: "32px"; pr: "32px"`. */
2644
+ get px4() {
2645
+ return this.px(4);
2646
+ }
2647
+ /** Sets `pl: "40px"; pr: "40px"`. */
2648
+ get px5() {
2649
+ return this.px(5);
2650
+ }
2651
+ /** Sets `pl: "48px"; pr: "48px"`. */
2652
+ get px6() {
2653
+ return this.px(6);
2654
+ }
2655
+ /** Sets `pl: "56px"; pr: "56px"`. */
2656
+ get px7() {
2657
+ return this.px(7);
2658
+ }
2659
+ /** Sets `pl: "64px"; pr: "64px"`. */
2660
+ get px8() {
2661
+ return this.px(8);
2662
+ }
2663
+ px(inc) {
2664
+ return this.pl(inc).pr(inc);
2665
+ }
2666
+ pxPx(px) {
2667
+ return this.plPx(px).prPx(px);
2668
+ }
2669
+ /** Sets `pt: "0px"; pb: "0px"`. */
2670
+ get py0() {
2671
+ return this.py(0);
2672
+ }
2673
+ /** Sets `pt: "8px"; pb: "8px"`. */
2674
+ get py1() {
2675
+ return this.py(1);
2676
+ }
2677
+ /** Sets `pt: "16px"; pb: "16px"`. */
2678
+ get py2() {
2679
+ return this.py(2);
2680
+ }
2681
+ /** Sets `pt: "24px"; pb: "24px"`. */
2682
+ get py3() {
2683
+ return this.py(3);
2684
+ }
2685
+ /** Sets `pt: "32px"; pb: "32px"`. */
2686
+ get py4() {
2687
+ return this.py(4);
2688
+ }
2689
+ /** Sets `pt: "40px"; pb: "40px"`. */
2690
+ get py5() {
2691
+ return this.py(5);
2692
+ }
2693
+ /** Sets `pt: "48px"; pb: "48px"`. */
2694
+ get py6() {
2695
+ return this.py(6);
2696
+ }
2697
+ /** Sets `pt: "56px"; pb: "56px"`. */
2698
+ get py7() {
2699
+ return this.py(7);
2700
+ }
2701
+ /** Sets `pt: "64px"; pb: "64px"`. */
2702
+ get py8() {
2703
+ return this.py(8);
2704
+ }
2705
+ py(inc) {
2706
+ return this.pt(inc).pb(inc);
2707
+ }
2708
+ pyPx(px) {
2709
+ return this.ptPx(px).pbPx(px);
2710
+ }
2711
+ /** Sets `pt: "0px"; pb: "0px"; pr: "0px"; pl: "0px"`. */
2712
+ get p0() {
2713
+ return this.p(0);
2714
+ }
2715
+ /** Sets `pt: "8px"; pb: "8px"; pr: "8px"; pl: "8px"`. */
2716
+ get p1() {
2717
+ return this.p(1);
2718
+ }
2719
+ /** Sets `pt: "16px"; pb: "16px"; pr: "16px"; pl: "16px"`. */
2720
+ get p2() {
2721
+ return this.p(2);
2722
+ }
2723
+ /** Sets `pt: "24px"; pb: "24px"; pr: "24px"; pl: "24px"`. */
2724
+ get p3() {
2725
+ return this.p(3);
2726
+ }
2727
+ /** Sets `pt: "32px"; pb: "32px"; pr: "32px"; pl: "32px"`. */
2728
+ get p4() {
2729
+ return this.p(4);
2730
+ }
2731
+ /** Sets `pt: "40px"; pb: "40px"; pr: "40px"; pl: "40px"`. */
2732
+ get p5() {
2733
+ return this.p(5);
2734
+ }
2735
+ /** Sets `pt: "48px"; pb: "48px"; pr: "48px"; pl: "48px"`. */
2736
+ get p6() {
2737
+ return this.p(6);
2738
+ }
2739
+ /** Sets `pt: "56px"; pb: "56px"; pr: "56px"; pl: "56px"`. */
2740
+ get p7() {
2741
+ return this.p(7);
2742
+ }
2743
+ /** Sets `pt: "64px"; pb: "64px"; pr: "64px"; pl: "64px"`. */
2744
+ get p8() {
2745
+ return this.p(8);
2746
+ }
2747
+ p(inc) {
2748
+ return this.pt(inc).pb(inc).pr(inc).pl(inc);
2749
+ }
2750
+ pPx(px) {
2751
+ return this.ptPx(px).pbPx(px).prPx(px).plPx(px);
2752
+ }
719
2753
  // textAlign
720
- get tl() { return this.add("textAlign", "left"); }
721
- get tc() { return this.add("textAlign", "center"); }
722
- get tr() { return this.add("textAlign", "right"); }
723
- get tj() { return this.add("textAlign", "justify"); }
724
- ta(value) { return this.add("textAlign", value); }
2754
+ /** Sets `textAlign: "left"`. */
2755
+ get tl() {
2756
+ return this.add("textAlign", "left");
2757
+ }
2758
+ /** Sets `textAlign: "center"`. */
2759
+ get tc() {
2760
+ return this.add("textAlign", "center");
2761
+ }
2762
+ /** Sets `textAlign: "right"`. */
2763
+ get tr() {
2764
+ return this.add("textAlign", "right");
2765
+ }
2766
+ /** Sets `textAlign: "justify"`. */
2767
+ get tj() {
2768
+ return this.add("textAlign", "justify");
2769
+ }
2770
+ /** Sets `textAlign: value`. */
2771
+ ta(value) {
2772
+ return this.add("textAlign", value);
2773
+ }
725
2774
  // textDecoration
726
- get noUnderline() { return this.add("textDecoration", "none"); }
727
- get strike() { return this.add("textDecoration", "line-through"); }
728
- get underline() { return this.add("textDecoration", "underline"); }
729
- textDecoration(value) { return this.add("textDecoration", value); }
2775
+ /** Sets `textDecoration: "none"`. */
2776
+ get noUnderline() {
2777
+ return this.add("textDecoration", "none");
2778
+ }
2779
+ /** Sets `textDecoration: "line-through"`. */
2780
+ get strike() {
2781
+ return this.add("textDecoration", "line-through");
2782
+ }
2783
+ /** Sets `textDecoration: "underline"`. */
2784
+ get underline() {
2785
+ return this.add("textDecoration", "underline");
2786
+ }
2787
+ /** Sets `textDecoration: value`. */
2788
+ textDecoration(value) {
2789
+ return this.add("textDecoration", value);
2790
+ }
730
2791
  // textTransform
731
- get ttc() { return this.add("textTransform", "capitalize"); }
732
- get ttl() { return this.add("textTransform", "lowercase"); }
733
- get ttu() { return this.add("textTransform", "uppercase"); }
734
- get ttn() { return this.add("textTransform", "none"); }
735
- tt(value) { return this.add("textTransform", value); }
2792
+ /** Sets `textTransform: "capitalize"`. */
2793
+ get ttc() {
2794
+ return this.add("textTransform", "capitalize");
2795
+ }
2796
+ /** Sets `textTransform: "lowercase"`. */
2797
+ get ttl() {
2798
+ return this.add("textTransform", "lowercase");
2799
+ }
2800
+ /** Sets `textTransform: "uppercase"`. */
2801
+ get ttu() {
2802
+ return this.add("textTransform", "uppercase");
2803
+ }
2804
+ /** Sets `textTransform: "none"`. */
2805
+ get ttn() {
2806
+ return this.add("textTransform", "none");
2807
+ }
2808
+ /** Sets `textTransform: value`. */
2809
+ tt(value) {
2810
+ return this.add("textTransform", value);
2811
+ }
736
2812
  // typeScale
737
- get tiny() { return this.add("fontWeight", 400).add("fontSize", "10px").add("lineHeight", "14px"); }
738
- get tinyMd() { return this.add("fontWeight", 500).add("fontSize", "10px").add("lineHeight", "14px"); }
739
- get tinySb() { return this.add("fontWeight", 600).add("fontSize", "10px").add("lineHeight", "14px"); }
740
- get tinyBd() { return this.add("fontWeight", 700).add("fontSize", "10px").add("lineHeight", "14px"); }
741
- get xs() { return this.add("fontWeight", 400).add("fontSize", "12px").add("lineHeight", "16px"); }
742
- get xsMd() { return this.add("fontWeight", 500).add("fontSize", "12px").add("lineHeight", "16px"); }
743
- get xsSb() { return this.add("fontWeight", 600).add("fontSize", "12px").add("lineHeight", "16px"); }
744
- get xsBd() { return this.add("fontWeight", 700).add("fontSize", "12px").add("lineHeight", "16px"); }
745
- get sm() { return this.add("fontWeight", 400).add("fontSize", "14px").add("lineHeight", "20px"); }
746
- get smMd() { return this.add("fontWeight", 500).add("fontSize", "14px").add("lineHeight", "20px"); }
747
- get smSb() { return this.add("fontWeight", 600).add("fontSize", "14px").add("lineHeight", "20px"); }
748
- get smBd() { return this.add("fontWeight", 700).add("fontSize", "14px").add("lineHeight", "20px"); }
749
- get base() { return this.add("fontWeight", 400).add("fontSize", "16px").add("lineHeight", "24px"); }
750
- get baseMd() { return this.add("fontWeight", 500).add("fontSize", "16px").add("lineHeight", "24px"); }
751
- get baseSb() { return this.add("fontWeight", 600).add("fontSize", "16px").add("lineHeight", "24px"); }
752
- get baseBd() { return this.add("fontWeight", 700).add("fontSize", "16px").add("lineHeight", "24px"); }
753
- get lg() { return this.add("fontWeight", 400).add("fontSize", "18px").add("lineHeight", "28px"); }
754
- get lgMd() { return this.add("fontWeight", 500).add("fontSize", "18px").add("lineHeight", "28px"); }
755
- get lgSb() { return this.add("fontWeight", 600).add("fontSize", "18px").add("lineHeight", "28px"); }
756
- get lgBd() { return this.add("fontWeight", 700).add("fontSize", "18px").add("lineHeight", "28px"); }
757
- get xl() { return this.add("fontWeight", 400).add("fontSize", "20px").add("lineHeight", "28px"); }
758
- get xlMd() { return this.add("fontWeight", 500).add("fontSize", "20px").add("lineHeight", "28px"); }
759
- get xlSb() { return this.add("fontWeight", 600).add("fontSize", "20px").add("lineHeight", "28px"); }
760
- get xlBd() { return this.add("fontWeight", 700).add("fontSize", "20px").add("lineHeight", "28px"); }
761
- get xl2() { return this.add("fontWeight", 400).add("fontSize", "24px").add("lineHeight", "32px"); }
762
- get xl2Md() { return this.add("fontWeight", 500).add("fontSize", "24px").add("lineHeight", "32px"); }
763
- get xl2Sb() { return this.add("fontWeight", 600).add("fontSize", "24px").add("lineHeight", "32px"); }
764
- get xl2Bd() { return this.add("fontWeight", 700).add("fontSize", "24px").add("lineHeight", "32px"); }
765
- get xl3() { return this.add("fontWeight", 400).add("fontSize", "30px").add("lineHeight", "36px"); }
766
- get xl3Md() { return this.add("fontWeight", 500).add("fontSize", "30px").add("lineHeight", "36px"); }
767
- get xl3Sb() { return this.add("fontWeight", 600).add("fontSize", "30px").add("lineHeight", "36px"); }
768
- get xl3Bd() { return this.add("fontWeight", 700).add("fontSize", "30px").add("lineHeight", "36px"); }
769
- get xl4() { return this.add("fontWeight", 400).add("fontSize", "36px").add("lineHeight", "40px"); }
770
- get xl4Md() { return this.add("fontWeight", 500).add("fontSize", "36px").add("lineHeight", "40px"); }
771
- get xl4Sb() { return this.add("fontWeight", 600).add("fontSize", "36px").add("lineHeight", "40px"); }
772
- get xl4Bd() { return this.add("fontWeight", 700).add("fontSize", "36px").add("lineHeight", "40px"); }
773
- get xl5() { return this.add("fontWeight", 400).add("fontSize", "48px").add("lineHeight", "48px"); }
774
- get xl5Md() { return this.add("fontWeight", 500).add("fontSize", "48px").add("lineHeight", "48px"); }
775
- get xl5Sb() { return this.add("fontWeight", 600).add("fontSize", "48px").add("lineHeight", "48px"); }
776
- get xl5Bd() { return this.add("fontWeight", 700).add("fontSize", "48px").add("lineHeight", "48px"); }
2813
+ /** Sets `fontWeight: 400; fontSize: "10px"; lineHeight: "14px"`. */
2814
+ get tiny() {
2815
+ return this.add("fontWeight", 400).add("fontSize", "10px").add("lineHeight", "14px");
2816
+ }
2817
+ /** Sets `fontWeight: 500; fontSize: "10px"; lineHeight: "14px"`. */
2818
+ get tinyMd() {
2819
+ return this.add("fontWeight", 500).add("fontSize", "10px").add("lineHeight", "14px");
2820
+ }
2821
+ /** Sets `fontWeight: 600; fontSize: "10px"; lineHeight: "14px"`. */
2822
+ get tinySb() {
2823
+ return this.add("fontWeight", 600).add("fontSize", "10px").add("lineHeight", "14px");
2824
+ }
2825
+ /** Sets `fontWeight: 700; fontSize: "10px"; lineHeight: "14px"`. */
2826
+ get tinyBd() {
2827
+ return this.add("fontWeight", 700).add("fontSize", "10px").add("lineHeight", "14px");
2828
+ }
2829
+ /** Sets `fontWeight: 400; fontSize: "12px"; lineHeight: "16px"`. */
2830
+ get xs() {
2831
+ return this.add("fontWeight", 400).add("fontSize", "12px").add("lineHeight", "16px");
2832
+ }
2833
+ /** Sets `fontWeight: 500; fontSize: "12px"; lineHeight: "16px"`. */
2834
+ get xsMd() {
2835
+ return this.add("fontWeight", 500).add("fontSize", "12px").add("lineHeight", "16px");
2836
+ }
2837
+ /** Sets `fontWeight: 600; fontSize: "12px"; lineHeight: "16px"`. */
2838
+ get xsSb() {
2839
+ return this.add("fontWeight", 600).add("fontSize", "12px").add("lineHeight", "16px");
2840
+ }
2841
+ /** Sets `fontWeight: 700; fontSize: "12px"; lineHeight: "16px"`. */
2842
+ get xsBd() {
2843
+ return this.add("fontWeight", 700).add("fontSize", "12px").add("lineHeight", "16px");
2844
+ }
2845
+ /** Sets `fontWeight: 400; fontSize: "14px"; lineHeight: "20px"`. */
2846
+ get sm() {
2847
+ return this.add("fontWeight", 400).add("fontSize", "14px").add("lineHeight", "20px");
2848
+ }
2849
+ /** Sets `fontWeight: 500; fontSize: "14px"; lineHeight: "20px"`. */
2850
+ get smMd() {
2851
+ return this.add("fontWeight", 500).add("fontSize", "14px").add("lineHeight", "20px");
2852
+ }
2853
+ /** Sets `fontWeight: 600; fontSize: "14px"; lineHeight: "20px"`. */
2854
+ get smSb() {
2855
+ return this.add("fontWeight", 600).add("fontSize", "14px").add("lineHeight", "20px");
2856
+ }
2857
+ /** Sets `fontWeight: 700; fontSize: "14px"; lineHeight: "20px"`. */
2858
+ get smBd() {
2859
+ return this.add("fontWeight", 700).add("fontSize", "14px").add("lineHeight", "20px");
2860
+ }
2861
+ /** Sets `fontWeight: 400; fontSize: "16px"; lineHeight: "24px"`. */
2862
+ get base() {
2863
+ return this.add("fontWeight", 400).add("fontSize", "16px").add("lineHeight", "24px");
2864
+ }
2865
+ /** Sets `fontWeight: 500; fontSize: "16px"; lineHeight: "24px"`. */
2866
+ get baseMd() {
2867
+ return this.add("fontWeight", 500).add("fontSize", "16px").add("lineHeight", "24px");
2868
+ }
2869
+ /** Sets `fontWeight: 600; fontSize: "16px"; lineHeight: "24px"`. */
2870
+ get baseSb() {
2871
+ return this.add("fontWeight", 600).add("fontSize", "16px").add("lineHeight", "24px");
2872
+ }
2873
+ /** Sets `fontWeight: 700; fontSize: "16px"; lineHeight: "24px"`. */
2874
+ get baseBd() {
2875
+ return this.add("fontWeight", 700).add("fontSize", "16px").add("lineHeight", "24px");
2876
+ }
2877
+ /** Sets `fontWeight: 400; fontSize: "18px"; lineHeight: "28px"`. */
2878
+ get lg() {
2879
+ return this.add("fontWeight", 400).add("fontSize", "18px").add("lineHeight", "28px");
2880
+ }
2881
+ /** Sets `fontWeight: 500; fontSize: "18px"; lineHeight: "28px"`. */
2882
+ get lgMd() {
2883
+ return this.add("fontWeight", 500).add("fontSize", "18px").add("lineHeight", "28px");
2884
+ }
2885
+ /** Sets `fontWeight: 600; fontSize: "18px"; lineHeight: "28px"`. */
2886
+ get lgSb() {
2887
+ return this.add("fontWeight", 600).add("fontSize", "18px").add("lineHeight", "28px");
2888
+ }
2889
+ /** Sets `fontWeight: 700; fontSize: "18px"; lineHeight: "28px"`. */
2890
+ get lgBd() {
2891
+ return this.add("fontWeight", 700).add("fontSize", "18px").add("lineHeight", "28px");
2892
+ }
2893
+ /** Sets `fontWeight: 400; fontSize: "20px"; lineHeight: "28px"`. */
2894
+ get xl() {
2895
+ return this.add("fontWeight", 400).add("fontSize", "20px").add("lineHeight", "28px");
2896
+ }
2897
+ /** Sets `fontWeight: 500; fontSize: "20px"; lineHeight: "28px"`. */
2898
+ get xlMd() {
2899
+ return this.add("fontWeight", 500).add("fontSize", "20px").add("lineHeight", "28px");
2900
+ }
2901
+ /** Sets `fontWeight: 600; fontSize: "20px"; lineHeight: "28px"`. */
2902
+ get xlSb() {
2903
+ return this.add("fontWeight", 600).add("fontSize", "20px").add("lineHeight", "28px");
2904
+ }
2905
+ /** Sets `fontWeight: 700; fontSize: "20px"; lineHeight: "28px"`. */
2906
+ get xlBd() {
2907
+ return this.add("fontWeight", 700).add("fontSize", "20px").add("lineHeight", "28px");
2908
+ }
2909
+ /** Sets `fontWeight: 400; fontSize: "24px"; lineHeight: "32px"`. */
2910
+ get xl2() {
2911
+ return this.add("fontWeight", 400).add("fontSize", "24px").add("lineHeight", "32px");
2912
+ }
2913
+ /** Sets `fontWeight: 500; fontSize: "24px"; lineHeight: "32px"`. */
2914
+ get xl2Md() {
2915
+ return this.add("fontWeight", 500).add("fontSize", "24px").add("lineHeight", "32px");
2916
+ }
2917
+ /** Sets `fontWeight: 600; fontSize: "24px"; lineHeight: "32px"`. */
2918
+ get xl2Sb() {
2919
+ return this.add("fontWeight", 600).add("fontSize", "24px").add("lineHeight", "32px");
2920
+ }
2921
+ /** Sets `fontWeight: 700; fontSize: "24px"; lineHeight: "32px"`. */
2922
+ get xl2Bd() {
2923
+ return this.add("fontWeight", 700).add("fontSize", "24px").add("lineHeight", "32px");
2924
+ }
2925
+ /** Sets `fontWeight: 400; fontSize: "30px"; lineHeight: "36px"`. */
2926
+ get xl3() {
2927
+ return this.add("fontWeight", 400).add("fontSize", "30px").add("lineHeight", "36px");
2928
+ }
2929
+ /** Sets `fontWeight: 500; fontSize: "30px"; lineHeight: "36px"`. */
2930
+ get xl3Md() {
2931
+ return this.add("fontWeight", 500).add("fontSize", "30px").add("lineHeight", "36px");
2932
+ }
2933
+ /** Sets `fontWeight: 600; fontSize: "30px"; lineHeight: "36px"`. */
2934
+ get xl3Sb() {
2935
+ return this.add("fontWeight", 600).add("fontSize", "30px").add("lineHeight", "36px");
2936
+ }
2937
+ /** Sets `fontWeight: 700; fontSize: "30px"; lineHeight: "36px"`. */
2938
+ get xl3Bd() {
2939
+ return this.add("fontWeight", 700).add("fontSize", "30px").add("lineHeight", "36px");
2940
+ }
2941
+ /** Sets `fontWeight: 400; fontSize: "36px"; lineHeight: "40px"`. */
2942
+ get xl4() {
2943
+ return this.add("fontWeight", 400).add("fontSize", "36px").add("lineHeight", "40px");
2944
+ }
2945
+ /** Sets `fontWeight: 500; fontSize: "36px"; lineHeight: "40px"`. */
2946
+ get xl4Md() {
2947
+ return this.add("fontWeight", 500).add("fontSize", "36px").add("lineHeight", "40px");
2948
+ }
2949
+ /** Sets `fontWeight: 600; fontSize: "36px"; lineHeight: "40px"`. */
2950
+ get xl4Sb() {
2951
+ return this.add("fontWeight", 600).add("fontSize", "36px").add("lineHeight", "40px");
2952
+ }
2953
+ /** Sets `fontWeight: 700; fontSize: "36px"; lineHeight: "40px"`. */
2954
+ get xl4Bd() {
2955
+ return this.add("fontWeight", 700).add("fontSize", "36px").add("lineHeight", "40px");
2956
+ }
2957
+ /** Sets `fontWeight: 400; fontSize: "48px"; lineHeight: "48px"`. */
2958
+ get xl5() {
2959
+ return this.add("fontWeight", 400).add("fontSize", "48px").add("lineHeight", "48px");
2960
+ }
2961
+ /** Sets `fontWeight: 500; fontSize: "48px"; lineHeight: "48px"`. */
2962
+ get xl5Md() {
2963
+ return this.add("fontWeight", 500).add("fontSize", "48px").add("lineHeight", "48px");
2964
+ }
2965
+ /** Sets `fontWeight: 600; fontSize: "48px"; lineHeight: "48px"`. */
2966
+ get xl5Sb() {
2967
+ return this.add("fontWeight", 600).add("fontSize", "48px").add("lineHeight", "48px");
2968
+ }
2969
+ /** Sets `fontWeight: 700; fontSize: "48px"; lineHeight: "48px"`. */
2970
+ get xl5Bd() {
2971
+ return this.add("fontWeight", 700).add("fontSize", "48px").add("lineHeight", "48px");
2972
+ }
777
2973
  // typography
778
- get measure() { return this.add("maxWidth", "30em"); }
779
- get measureWide() { return this.add("maxWidth", "34em"); }
780
- get measureNarrow() { return this.add("maxWidth", "20em"); }
781
- get indent() { return this.add("textIndent", "1em").add("marginTop", 0).add("marginBottom", 0); }
782
- get smallCaps() { return this.add("fontVariant", "small-caps"); }
783
- get truncate() { return this.add("whiteSpace", "nowrap").add("overflow", "hidden").add("textOverflow", "ellipsis"); }
784
- lh(value) { return this.add("lineHeight", value); }
2974
+ /** Sets `maxWidth: "30em"`. */
2975
+ get measure() {
2976
+ return this.add("maxWidth", "30em");
2977
+ }
2978
+ /** Sets `maxWidth: "34em"`. */
2979
+ get measureWide() {
2980
+ return this.add("maxWidth", "34em");
2981
+ }
2982
+ /** Sets `maxWidth: "20em"`. */
2983
+ get measureNarrow() {
2984
+ return this.add("maxWidth", "20em");
2985
+ }
2986
+ /** Sets `textIndent: "1em"; marginTop: 0; marginBottom: 0`. */
2987
+ get indent() {
2988
+ return this.add("textIndent", "1em").add("marginTop", 0).add("marginBottom", 0);
2989
+ }
2990
+ /** Sets `fontVariant: "small-caps"`. */
2991
+ get smallCaps() {
2992
+ return this.add("fontVariant", "small-caps");
2993
+ }
2994
+ /** Sets `whiteSpace: "nowrap"; overflow: "hidden"; textOverflow: "ellipsis"`. */
2995
+ get truncate() {
2996
+ return this.add("whiteSpace", "nowrap").add("overflow", "hidden").add("textOverflow", "ellipsis");
2997
+ }
2998
+ /** Sets `lineHeight: value`. */
2999
+ lh(value) {
3000
+ return this.add("lineHeight", value);
3001
+ }
785
3002
  // userSelect
786
- get selectNone() { return this.add("userSelect", "none"); }
787
- get selectText() { return this.add("userSelect", "text"); }
788
- get selectAll() { return this.add("userSelect", "all"); }
789
- get selectAuto() { return this.add("userSelect", "auto"); }
790
- select(value) { return this.add("userSelect", value); }
3003
+ /** Sets `userSelect: "none"`. */
3004
+ get selectNone() {
3005
+ return this.add("userSelect", "none");
3006
+ }
3007
+ /** Sets `userSelect: "text"`. */
3008
+ get selectText() {
3009
+ return this.add("userSelect", "text");
3010
+ }
3011
+ /** Sets `userSelect: "all"`. */
3012
+ get selectAll() {
3013
+ return this.add("userSelect", "all");
3014
+ }
3015
+ /** Sets `userSelect: "auto"`. */
3016
+ get selectAuto() {
3017
+ return this.add("userSelect", "auto");
3018
+ }
3019
+ /** Sets `userSelect: value`. */
3020
+ select(value) {
3021
+ return this.add("userSelect", value);
3022
+ }
791
3023
  // verticalAlign
792
- get vBase() { return this.add("verticalAlign", "baseline"); }
793
- get vMid() { return this.add("verticalAlign", "middle"); }
794
- get vTop() { return this.add("verticalAlign", "top"); }
795
- get vBottom() { return this.add("verticalAlign", "bottom"); }
796
- va(value) { return this.add("verticalAlign", value); }
3024
+ /** Sets `verticalAlign: "baseline"`. */
3025
+ get vBase() {
3026
+ return this.add("verticalAlign", "baseline");
3027
+ }
3028
+ /** Sets `verticalAlign: "middle"`. */
3029
+ get vMid() {
3030
+ return this.add("verticalAlign", "middle");
3031
+ }
3032
+ /** Sets `verticalAlign: "top"`. */
3033
+ get vTop() {
3034
+ return this.add("verticalAlign", "top");
3035
+ }
3036
+ /** Sets `verticalAlign: "bottom"`. */
3037
+ get vBottom() {
3038
+ return this.add("verticalAlign", "bottom");
3039
+ }
3040
+ /** Sets `verticalAlign: value`. */
3041
+ va(value) {
3042
+ return this.add("verticalAlign", value);
3043
+ }
797
3044
  // visibility
798
- get visible() { return this.add("visibility", "visible"); }
799
- get invisible() { return this.add("visibility", "hidden"); }
800
- visibility(value) { return this.add("visibility", value); }
3045
+ /** Sets `visibility: "visible"`. */
3046
+ get visible() {
3047
+ return this.add("visibility", "visible");
3048
+ }
3049
+ /** Sets `visibility: "hidden"`. */
3050
+ get invisible() {
3051
+ return this.add("visibility", "hidden");
3052
+ }
3053
+ /** Sets `visibility: value`. */
3054
+ visibility(value) {
3055
+ return this.add("visibility", value);
3056
+ }
801
3057
  // whitespace
802
- get nowrap() { return this.add("whiteSpace", "nowrap"); }
803
- get pre() { return this.add("whiteSpace", "pre"); }
804
- get wsNormal() { return this.add("whiteSpace", "normal"); }
805
- whiteSpace(value) { return this.add("whiteSpace", value); }
3058
+ /** Sets `whiteSpace: "nowrap"`. */
3059
+ get nowrap() {
3060
+ return this.add("whiteSpace", "nowrap");
3061
+ }
3062
+ /** Sets `whiteSpace: "pre"`. */
3063
+ get pre() {
3064
+ return this.add("whiteSpace", "pre");
3065
+ }
3066
+ /** Sets `whiteSpace: "normal"`. */
3067
+ get wsNormal() {
3068
+ return this.add("whiteSpace", "normal");
3069
+ }
3070
+ /** Sets `whiteSpace: value`. */
3071
+ whiteSpace(value) {
3072
+ return this.add("whiteSpace", value);
3073
+ }
806
3074
  // width
807
- get w25() { return this.add("width", "25%"); }
808
- get w50() { return this.add("width", "50%"); }
809
- get w75() { return this.add("width", "75%"); }
810
- get w100() { return this.add("width", "100%"); }
811
- get mw0() { return this.add("minWidth", 0); }
812
- get mw25() { return this.add("minWidth", "25%"); }
813
- get mw50() { return this.add("minWidth", "50%"); }
814
- get mw75() { return this.add("minWidth", "75%"); }
815
- get mw100() { return this.add("minWidth", "100%"); }
816
- mw(value) { return this.add("minWidth", value); }
817
- mwPx(px) { return this.mw(`${px}px`); }
818
- get maxw0() { return this.add("maxWidth", "0"); }
819
- get maxw25() { return this.add("maxWidth", "25%"); }
820
- get maxw50() { return this.add("maxWidth", "50%"); }
821
- get maxw75() { return this.add("maxWidth", "75%"); }
822
- get maxw100() { return this.add("maxWidth", "100%"); }
823
- maxw(value) { return this.add("maxWidth", value); }
824
- maxwPx(px) { return this.maxw(`${px}px`); }
825
- get w0() { return this.w(0); }
826
- get w1() { return this.w(1); }
827
- get w2() { return this.w(2); }
828
- get w3() { return this.w(3); }
829
- get w4() { return this.w(4); }
830
- get w5() { return this.w(5); }
831
- get w6() { return this.w(6); }
832
- get w7() { return this.w(7); }
833
- get w8() { return this.w(8); }
834
- w(inc) { return this.add("width", maybeInc(inc)); }
835
- wPx(px) { return this.w(`${px}px`); }
3075
+ /** Sets `width: "25%"`. */
3076
+ get w25() {
3077
+ return this.add("width", "25%");
3078
+ }
3079
+ /** Sets `width: "50%"`. */
3080
+ get w50() {
3081
+ return this.add("width", "50%");
3082
+ }
3083
+ /** Sets `width: "75%"`. */
3084
+ get w75() {
3085
+ return this.add("width", "75%");
3086
+ }
3087
+ /** Sets `width: "100%"`. */
3088
+ get w100() {
3089
+ return this.add("width", "100%");
3090
+ }
3091
+ /** Sets `minWidth: 0`. */
3092
+ get mw0() {
3093
+ return this.add("minWidth", 0);
3094
+ }
3095
+ /** Sets `minWidth: "25%"`. */
3096
+ get mw25() {
3097
+ return this.add("minWidth", "25%");
3098
+ }
3099
+ /** Sets `minWidth: "50%"`. */
3100
+ get mw50() {
3101
+ return this.add("minWidth", "50%");
3102
+ }
3103
+ /** Sets `minWidth: "75%"`. */
3104
+ get mw75() {
3105
+ return this.add("minWidth", "75%");
3106
+ }
3107
+ /** Sets `minWidth: "100%"`. */
3108
+ get mw100() {
3109
+ return this.add("minWidth", "100%");
3110
+ }
3111
+ /** Sets `minWidth: value`. */
3112
+ mw(value) {
3113
+ return this.add("minWidth", value);
3114
+ }
3115
+ /** Sets `minWidth: px`. */
3116
+ mwPx(px) {
3117
+ return this.mw(`${px}px`);
3118
+ }
3119
+ /** Sets `maxWidth: "0"`. */
3120
+ get maxw0() {
3121
+ return this.add("maxWidth", "0");
3122
+ }
3123
+ /** Sets `maxWidth: "25%"`. */
3124
+ get maxw25() {
3125
+ return this.add("maxWidth", "25%");
3126
+ }
3127
+ /** Sets `maxWidth: "50%"`. */
3128
+ get maxw50() {
3129
+ return this.add("maxWidth", "50%");
3130
+ }
3131
+ /** Sets `maxWidth: "75%"`. */
3132
+ get maxw75() {
3133
+ return this.add("maxWidth", "75%");
3134
+ }
3135
+ /** Sets `maxWidth: "100%"`. */
3136
+ get maxw100() {
3137
+ return this.add("maxWidth", "100%");
3138
+ }
3139
+ /** Sets `maxWidth: value`. */
3140
+ maxw(value) {
3141
+ return this.add("maxWidth", value);
3142
+ }
3143
+ /** Sets `maxWidth: px`. */
3144
+ maxwPx(px) {
3145
+ return this.maxw(`${px}px`);
3146
+ }
3147
+ /** Sets `width: "0px"`. */
3148
+ get w0() {
3149
+ return this.w(0);
3150
+ }
3151
+ /** Sets `width: "8px"`. */
3152
+ get w1() {
3153
+ return this.w(1);
3154
+ }
3155
+ /** Sets `width: "16px"`. */
3156
+ get w2() {
3157
+ return this.w(2);
3158
+ }
3159
+ /** Sets `width: "24px"`. */
3160
+ get w3() {
3161
+ return this.w(3);
3162
+ }
3163
+ /** Sets `width: "32px"`. */
3164
+ get w4() {
3165
+ return this.w(4);
3166
+ }
3167
+ /** Sets `width: "40px"`. */
3168
+ get w5() {
3169
+ return this.w(5);
3170
+ }
3171
+ /** Sets `width: "48px"`. */
3172
+ get w6() {
3173
+ return this.w(6);
3174
+ }
3175
+ /** Sets `width: "56px"`. */
3176
+ get w7() {
3177
+ return this.w(7);
3178
+ }
3179
+ /** Sets `width: "64px"`. */
3180
+ get w8() {
3181
+ return this.w(8);
3182
+ }
3183
+ /** Sets `width: inc`. */
3184
+ w(inc) {
3185
+ return this.add("width", maybeInc(inc));
3186
+ }
3187
+ /** Sets `width: px`. */
3188
+ wPx(px) {
3189
+ return this.w(`${px}px`);
3190
+ }
836
3191
  // wordBreak
837
- get breakNormal() { return this.add("wordBreak", "normal"); }
838
- get breakAll() { return this.add("wordBreak", "break-all"); }
839
- get breakKeepAll() { return this.add("wordBreak", "keep-all"); }
840
- get breakWord() { return this.add("wordBreak", "break-word"); }
841
- wordBreak(value) { return this.add("wordBreak", value); }
3192
+ /** Sets `wordBreak: "normal"`. */
3193
+ get breakNormal() {
3194
+ return this.add("wordBreak", "normal");
3195
+ }
3196
+ /** Sets `wordBreak: "break-all"`. */
3197
+ get breakAll() {
3198
+ return this.add("wordBreak", "break-all");
3199
+ }
3200
+ /** Sets `wordBreak: "keep-all"`. */
3201
+ get breakKeepAll() {
3202
+ return this.add("wordBreak", "keep-all");
3203
+ }
3204
+ /** Sets `wordBreak: "break-word"`. */
3205
+ get breakWord() {
3206
+ return this.add("wordBreak", "break-word");
3207
+ }
3208
+ /** Sets `wordBreak: value`. */
3209
+ wordBreak(value) {
3210
+ return this.add("wordBreak", value);
3211
+ }
842
3212
  // zIndex
843
- get z0() { return this.add("zIndex", 0); }
844
- get z1() { return this.add("zIndex", 1); }
845
- get z2() { return this.add("zIndex", 2); }
846
- get z3() { return this.add("zIndex", 3); }
847
- get z4() { return this.add("zIndex", 4); }
848
- get z5() { return this.add("zIndex", 5); }
849
- get z999() { return this.add("zIndex", 999); }
850
- get z9999() { return this.add("zIndex", 9999); }
851
- get zInherit() { return this.add("zIndex", "inherit"); }
852
- get zInitial() { return this.add("zIndex", "initial"); }
853
- get zUnset() { return this.add("zIndex", "unset"); }
854
- z(value) { return this.add("zIndex", value); }
3213
+ /** Sets `zIndex: 0`. */
3214
+ get z0() {
3215
+ return this.add("zIndex", 0);
3216
+ }
3217
+ /** Sets `zIndex: 1`. */
3218
+ get z1() {
3219
+ return this.add("zIndex", 1);
3220
+ }
3221
+ /** Sets `zIndex: 2`. */
3222
+ get z2() {
3223
+ return this.add("zIndex", 2);
3224
+ }
3225
+ /** Sets `zIndex: 3`. */
3226
+ get z3() {
3227
+ return this.add("zIndex", 3);
3228
+ }
3229
+ /** Sets `zIndex: 4`. */
3230
+ get z4() {
3231
+ return this.add("zIndex", 4);
3232
+ }
3233
+ /** Sets `zIndex: 5`. */
3234
+ get z5() {
3235
+ return this.add("zIndex", 5);
3236
+ }
3237
+ /** Sets `zIndex: 999`. */
3238
+ get z999() {
3239
+ return this.add("zIndex", 999);
3240
+ }
3241
+ /** Sets `zIndex: 9999`. */
3242
+ get z9999() {
3243
+ return this.add("zIndex", 9999);
3244
+ }
3245
+ /** Sets `zIndex: "inherit"`. */
3246
+ get zInherit() {
3247
+ return this.add("zIndex", "inherit");
3248
+ }
3249
+ /** Sets `zIndex: "initial"`. */
3250
+ get zInitial() {
3251
+ return this.add("zIndex", "initial");
3252
+ }
3253
+ /** Sets `zIndex: "unset"`. */
3254
+ get zUnset() {
3255
+ return this.add("zIndex", "unset");
3256
+ }
3257
+ /** Sets `zIndex: value`. */
3258
+ z(value) {
3259
+ return this.add("zIndex", value);
3260
+ }
855
3261
  // fontFamily
856
- get sansSerif() { return this.add("fontFamily", "'Inter', sans-serif"); }
857
- fontFamily(value) { return this.add("fontFamily", value); }
3262
+ /** Sets `fontFamily: "'Inter', sans-serif"`. */
3263
+ get sansSerif() {
3264
+ return this.add("fontFamily", "'Inter', sans-serif");
3265
+ }
3266
+ /** Sets `fontFamily: value`. */
3267
+ fontFamily(value) {
3268
+ return this.add("fontFamily", value);
3269
+ }
858
3270
  // animation
859
- get transition() { return this.add("transition", "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"); }
3271
+ /** Sets `transition: "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"`. */
3272
+ get transition() {
3273
+ return this.add("transition", "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms");
3274
+ }
860
3275
  // buttonBase
861
- get buttonBase() { return this.add("fontWeight", 500).add("fontSize", "14px").add("lineHeight", "20px").add("outline", 0).add("borderRadius", "4px").add("display", "inline-flex").add("alignItems", "center").add("whiteSpace", "nowrap").add("transition", "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"); }
3276
+ /** Sets `fontWeight: 500; fontSize: "14px"; lineHeight: "20px"; outline: 0; borderRadius: "4px"; display: "inline-flex"; alignItems: "center"; whiteSpace: "nowrap"; transition: "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"`. */
3277
+ get buttonBase() {
3278
+ return this.add("fontWeight", 500).add("fontSize", "14px").add("lineHeight", "20px").add("outline", 0).add("borderRadius", "4px").add("display", "inline-flex").add("alignItems", "center").add("whiteSpace", "nowrap").add("transition", "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms");
3279
+ }
862
3280
  // listReset
863
- get listReset() { return this.add("padding", 0).add("margin", 0).add("listStyle", "none"); }
3281
+ /** Sets `padding: 0; margin: 0; listStyle: "none"`. */
3282
+ get listReset() {
3283
+ return this.add("padding", 0).add("margin", 0).add("listStyle", "none");
3284
+ }
864
3285
  // underlay
865
- get underlay() { return this.add("position", "fixed").add("top", 0).add("bottom", 0).add("left", 0).add("right", 0).add("display", "flex").add("alignItems", "center").add("justifyContent", "center").add("backgroundColor", "rgba(36,36,36,0.2)"); }
3286
+ /** Sets `position: "fixed"; top: 0; bottom: 0; left: 0; right: 0; display: "flex"; alignItems: "center"; justifyContent: "center"; backgroundColor: "rgba(36,36,36,0.2)"`. */
3287
+ get underlay() {
3288
+ return this.add("position", "fixed").add("top", 0).add("bottom", 0).add("left", 0).add("right", 0).add("display", "flex").add("alignItems", "center").add("justifyContent", "center").add("backgroundColor", "rgba(36,36,36,0.2)");
3289
+ }
866
3290
  // contentEmpty
867
- get contentEmpty() { return this.add("content", "''"); }
3291
+ /** Sets `content: "''"`. */
3292
+ get contentEmpty() {
3293
+ return this.add("content", "''");
3294
+ }
868
3295
  // aliases
869
- get $() { return maybeImportant(sortObject(this.rules), this.opts.important); }
870
- if(t) {
871
- if (typeof t === "boolean") {
872
- return this.newCss({ enabled: t });
3296
+ get $() {
3297
+ return maybeImportant(sortObject(this.rules), this.opts.important);
3298
+ }
3299
+ if(arg) {
3300
+ if (typeof arg === "boolean") {
3301
+ return this.newCss({ enabled: arg });
873
3302
  }
874
3303
  else {
875
- return this.newCss({ selector: t });
3304
+ return this.newCss({ selector: Breakpoints[arg] });
876
3305
  }
877
3306
  }
3307
+ get onHover() {
3308
+ return this.newCss({ selector: ":hover" });
3309
+ }
3310
+ get ifPrint() {
3311
+ return this.newCss({ selector: "@media print" });
3312
+ }
3313
+ get ifSm() {
3314
+ return this.newCss({ selector: "@media screen and (max-width:599px)" });
3315
+ }
3316
+ get ifMd() {
3317
+ return this.newCss({ selector: "@media screen and (min-width:600px) and (max-width:1024px)" });
3318
+ }
3319
+ get ifSmOrMd() {
3320
+ return this.newCss({ selector: "@media screen and (max-width:1024px)" });
3321
+ }
3322
+ get ifMdAndUp() {
3323
+ return this.newCss({ selector: "@media screen and (min-width:600px)" });
3324
+ }
3325
+ get ifMdAndDown() {
3326
+ return this.newCss({ selector: "@media screen and (max-width:1024px)" });
3327
+ }
3328
+ get ifLg() {
3329
+ return this.newCss({ selector: "@media screen and (min-width:1025px)" });
3330
+ }
3331
+ get ifMdOrLg() {
3332
+ return this.newCss({ selector: "@media screen and (min-width:600px)" });
3333
+ }
878
3334
  get else() {
879
3335
  if (this.selector !== undefined) {
880
- throw new Error("else is not supported with if(selector)");
3336
+ if (this.selector.includes("not")) {
3337
+ throw new Error("else was already called");
3338
+ }
3339
+ else {
3340
+ return this.newCss({ selector: this.selector.replace("@media", "@media not") });
3341
+ }
881
3342
  }
882
3343
  return this.newCss({ enabled: !this.enabled });
883
3344
  }
884
- get important() { return this.newCss({ important: true }); }
3345
+ get important() {
3346
+ return this.newCss({ important: true });
3347
+ }
885
3348
  add(propOrProperties, value) {
3349
+ if (!this.enabled) {
3350
+ return this;
3351
+ }
886
3352
  const newRules = typeof propOrProperties === "string" ? { [propOrProperties]: value } : propOrProperties;
887
3353
  const rules = this.selector
888
3354
  ? { ...this.rules, [this.selector]: { ...this.rules[this.selector], ...newRules } }
889
- : this.enabled ? { ...this.rules, ...newRules } : this.rules;
3355
+ : { ...this.rules, ...newRules };
890
3356
  return this.newCss({ rules: rules });
891
3357
  }
892
3358
  addIn(selector, propOrProperties, value) {
893
3359
  const newRules = typeof propOrProperties === "string" ? { [propOrProperties]: value } : propOrProperties;
3360
+ if (!this.enabled) {
3361
+ return this;
3362
+ }
894
3363
  if (newRules === undefined) {
895
3364
  return this;
896
3365
  }
@@ -900,9 +3369,7 @@ class CssBuilder {
900
3369
  }
901
3370
  /** Emotion treats the same rules, ordered differently as different classes, but naively they can be the same. */
902
3371
  function sortObject(obj) {
903
- return Object.keys(obj)
904
- .sort()
905
- .reduce((acc, key) => {
3372
+ return Object.keys(obj).sort().reduce((acc, key) => {
906
3373
  acc[key] = obj[key];
907
3374
  return acc;
908
3375
  }, {});
@@ -1009,11 +3476,3 @@ var Breakpoints;
1009
3476
  Breakpoints["lg"] = "@media screen and (min-width:1025px)";
1010
3477
  Breakpoints["mdOrLg"] = "@media screen and (min-width:600px)";
1011
3478
  })(Breakpoints = exports.Breakpoints || (exports.Breakpoints = {}));
1012
- exports.print = "@media print";
1013
- exports.sm = "@media screen and (max-width:599px)";
1014
- exports.md = "@media screen and (min-width:600px) and (max-width:1024px)";
1015
- exports.smOrMd = "@media screen and (max-width:1024px)";
1016
- exports.mdAndUp = "@media screen and (min-width:600px)";
1017
- exports.mdAndDown = "@media screen and (max-width:1024px)";
1018
- exports.lg = "@media screen and (min-width:1025px)";
1019
- exports.mdOrLg = "@media screen and (min-width:600px)";