@homebound/beam 2.304.1 → 2.306.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/Css.d.ts +557 -387
  2. package/dist/Css.js +803 -633
  3. package/dist/components/Accordion.js +1 -1
  4. package/dist/components/Button.js +16 -16
  5. package/dist/components/Chip.js +4 -4
  6. package/dist/components/CssReset.js +2 -2
  7. package/dist/components/DnDGrid/DnDGridItemHandle.js +1 -1
  8. package/dist/components/Filters/Filters.js +1 -1
  9. package/dist/components/IconButton.js +1 -1
  10. package/dist/components/Loader.js +1 -1
  11. package/dist/components/NavLink.js +2 -2
  12. package/dist/components/Pagination.js +1 -1
  13. package/dist/components/Snackbar/SnackbarNotice.js +2 -2
  14. package/dist/components/Stepper.js +5 -6
  15. package/dist/components/Table/TableStyles.js +1 -1
  16. package/dist/components/Table/components/ExpandableHeader.js +1 -1
  17. package/dist/components/Table/components/Row.js +3 -3
  18. package/dist/components/Table/components/SortHeader.js +1 -1
  19. package/dist/components/Table/utils/RowState.d.ts +3 -1
  20. package/dist/components/Table/utils/RowState.js +14 -15
  21. package/dist/components/Table/utils/RowStates.d.ts +1 -1
  22. package/dist/components/Table/utils/RowStates.js +25 -16
  23. package/dist/components/Table/utils/TableState.js +2 -10
  24. package/dist/components/Table/utils/utils.js +1 -1
  25. package/dist/components/Tabs.js +3 -3
  26. package/dist/components/Tag.js +3 -3
  27. package/dist/components/Toast/Toast.js +1 -1
  28. package/dist/components/internal/CompoundField.js +3 -3
  29. package/dist/components/internal/DatePicker/DatePicker.css +2 -2
  30. package/dist/components/internal/DatePicker/Day.js +4 -4
  31. package/dist/components/internal/MenuItem.js +3 -9
  32. package/dist/inputs/CheckboxBase.js +3 -3
  33. package/dist/inputs/RadioGroupField.js +2 -2
  34. package/dist/inputs/RichTextField.js +3 -3
  35. package/dist/inputs/Switch.js +3 -3
  36. package/dist/inputs/TextFieldBase.js +1 -1
  37. package/dist/inputs/ToggleButton.js +1 -1
  38. package/dist/inputs/ToggleChipGroup.js +2 -2
  39. package/dist/inputs/TreeSelectField/TreeOption.js +1 -1
  40. package/dist/inputs/internal/ComboBoxInput.js +1 -1
  41. package/dist/inputs/internal/Option.js +2 -2
  42. package/package.json +1 -1
package/dist/Css.d.ts CHANGED
@@ -52,7 +52,7 @@ declare class CssBuilder<T extends Properties> {
52
52
  } & {
53
53
  borderWidth: import("csstype").Property.BorderWidth<string | 0> | undefined;
54
54
  }>;
55
- /** Sets `borderColor: "rgba(254,254,254,1)"`. */
55
+ /** Sets `borderColor: "rgba(255,255,255,1)"`. */
56
56
  get bWhite(): CssBuilder<T & {
57
57
  borderColor: import("csstype").Property.BorderColor | undefined;
58
58
  }>;
@@ -60,244 +60,284 @@ declare class CssBuilder<T extends Properties> {
60
60
  get bTransparent(): CssBuilder<T & {
61
61
  borderColor: import("csstype").Property.BorderColor | undefined;
62
62
  }>;
63
- /** Sets `borderColor: "rgba(255,253,253,1)"`. */
63
+ /** Sets `borderColor: "rgba(255, 253, 253, 1)"`. */
64
64
  get bGray50(): CssBuilder<T & {
65
65
  borderColor: import("csstype").Property.BorderColor | undefined;
66
66
  }>;
67
- /** Sets `borderColor: "rgba(247,245,245,1)"`. */
67
+ /** Sets `borderColor: "rgba(247, 245, 245, 1)"`. */
68
68
  get bGray100(): CssBuilder<T & {
69
69
  borderColor: import("csstype").Property.BorderColor | undefined;
70
70
  }>;
71
- /** Sets `borderColor: "rgba(236,235,235,1)"`. */
71
+ /** Sets `borderColor: "rgba(236, 235, 235, 1)"`. */
72
72
  get bGray200(): CssBuilder<T & {
73
73
  borderColor: import("csstype").Property.BorderColor | undefined;
74
74
  }>;
75
- /** Sets `borderColor: "rgba(221,220,220,1)"`. */
75
+ /** Sets `borderColor: "rgba(221, 220, 220, 1)"`. */
76
76
  get bGray300(): CssBuilder<T & {
77
77
  borderColor: import("csstype").Property.BorderColor | undefined;
78
78
  }>;
79
- /** Sets `borderColor: "rgba(201,201,201,1)"`. */
79
+ /** Sets `borderColor: "rgba(201, 201, 201, 1)"`. */
80
80
  get bGray400(): CssBuilder<T & {
81
81
  borderColor: import("csstype").Property.BorderColor | undefined;
82
82
  }>;
83
- /** Sets `borderColor: "rgba(175,175,175,1)"`. */
83
+ /** Sets `borderColor: "rgba(175, 175, 175, 1)"`. */
84
84
  get bGray500(): CssBuilder<T & {
85
85
  borderColor: import("csstype").Property.BorderColor | undefined;
86
86
  }>;
87
- /** Sets `borderColor: "rgba(141,141,141,1)"`. */
87
+ /** Sets `borderColor: "rgba(141, 141, 141, 1)"`. */
88
88
  get bGray600(): CssBuilder<T & {
89
89
  borderColor: import("csstype").Property.BorderColor | undefined;
90
90
  }>;
91
- /** Sets `borderColor: "rgba(100,100,100,1)"`. */
91
+ /** Sets `borderColor: "rgba(100, 100, 100, 1)"`. */
92
92
  get bGray700(): CssBuilder<T & {
93
93
  borderColor: import("csstype").Property.BorderColor | undefined;
94
94
  }>;
95
- /** Sets `borderColor: "rgba(53,53,53,1)"`. */
95
+ /** Sets `borderColor: "rgba(53, 53, 53, 1)"`. */
96
96
  get bGray800(): CssBuilder<T & {
97
97
  borderColor: import("csstype").Property.BorderColor | undefined;
98
98
  }>;
99
- /** Sets `borderColor: "rgba(36,36,36,1)"`. */
99
+ /** Sets `borderColor: "rgba(36, 36, 36, 1)"`. */
100
100
  get bGray900(): CssBuilder<T & {
101
101
  borderColor: import("csstype").Property.BorderColor | undefined;
102
102
  }>;
103
- /** Sets `borderColor: "rgba(240,249,255,1)"`. */
104
- get bLightBlue50(): CssBuilder<T & {
103
+ /** Sets `borderColor: "rgba(239, 246, 255, 1)"`. */
104
+ get bBlue50(): CssBuilder<T & {
105
105
  borderColor: import("csstype").Property.BorderColor | undefined;
106
106
  }>;
107
- /** Sets `borderColor: "rgba(224,242,254,1)"`. */
108
- get bLightBlue100(): CssBuilder<T & {
107
+ /** Sets `borderColor: "rgba(219, 234, 254, 1)"`. */
108
+ get bBlue100(): CssBuilder<T & {
109
109
  borderColor: import("csstype").Property.BorderColor | undefined;
110
110
  }>;
111
- /** Sets `borderColor: "rgba(186,230,253,1)"`. */
112
- get bLightBlue200(): CssBuilder<T & {
111
+ /** Sets `borderColor: "rgba(191, 219, 254, 1)"`. */
112
+ get bBlue200(): CssBuilder<T & {
113
113
  borderColor: import("csstype").Property.BorderColor | undefined;
114
114
  }>;
115
- /** Sets `borderColor: "rgba(125,211,252,1)"`. */
116
- get bLightBlue300(): CssBuilder<T & {
115
+ /** Sets `borderColor: "rgba(147, 197, 253, 1)"`. */
116
+ get bBlue300(): CssBuilder<T & {
117
117
  borderColor: import("csstype").Property.BorderColor | undefined;
118
118
  }>;
119
- /** Sets `borderColor: "rgba(56,189,248,1)"`. */
120
- get bLightBlue400(): CssBuilder<T & {
119
+ /** Sets `borderColor: "rgba(96, 165, 250, 1)"`. */
120
+ get bBlue400(): CssBuilder<T & {
121
121
  borderColor: import("csstype").Property.BorderColor | undefined;
122
122
  }>;
123
- /** Sets `borderColor: "rgba(14,165,233,1)"`. */
124
- get bLightBlue500(): CssBuilder<T & {
123
+ /** Sets `borderColor: "rgba(59, 130, 246, 1)"`. */
124
+ get bBlue500(): CssBuilder<T & {
125
125
  borderColor: import("csstype").Property.BorderColor | undefined;
126
126
  }>;
127
- /** Sets `borderColor: "rgba(2,143,199,1)"`. */
128
- get bLightBlue600(): CssBuilder<T & {
127
+ /** Sets `borderColor: "rgba(37, 99, 235, 1)"`. */
128
+ get bBlue600(): CssBuilder<T & {
129
129
  borderColor: import("csstype").Property.BorderColor | undefined;
130
130
  }>;
131
- /** Sets `borderColor: "rgba(3,105,161,1)"`. */
132
- get bLightBlue700(): CssBuilder<T & {
131
+ /** Sets `borderColor: "rgba(29, 78, 216, 1)"`. */
132
+ get bBlue700(): CssBuilder<T & {
133
133
  borderColor: import("csstype").Property.BorderColor | undefined;
134
134
  }>;
135
- /** Sets `borderColor: "rgba(7,89,133,1)"`. */
136
- get bLightBlue800(): CssBuilder<T & {
135
+ /** Sets `borderColor: "rgba(30, 64, 175, 1)"`. */
136
+ get bBlue800(): CssBuilder<T & {
137
137
  borderColor: import("csstype").Property.BorderColor | undefined;
138
138
  }>;
139
- /** Sets `borderColor: "rgba(12,74,110,1)"`. */
140
- get bLightBlue900(): CssBuilder<T & {
139
+ /** Sets `borderColor: "rgba(30, 58, 138, 1)"`. */
140
+ get bBlue900(): CssBuilder<T & {
141
141
  borderColor: import("csstype").Property.BorderColor | undefined;
142
142
  }>;
143
- /** Sets `borderColor: "rgba(255,242,242,1)"`. */
143
+ /** Sets `borderColor: "rgba(254, 242, 242, 1)"`. */
144
144
  get bRed50(): CssBuilder<T & {
145
145
  borderColor: import("csstype").Property.BorderColor | undefined;
146
146
  }>;
147
- /** Sets `borderColor: "rgba(253,210,209,1)"`. */
147
+ /** Sets `borderColor: "rgba(254, 226, 226, 1)"`. */
148
148
  get bRed100(): CssBuilder<T & {
149
149
  borderColor: import("csstype").Property.BorderColor | undefined;
150
150
  }>;
151
- /** Sets `borderColor: "rgba(249,181,177,1)"`. */
151
+ /** Sets `borderColor: "rgba(254, 202, 202, 1)"`. */
152
152
  get bRed200(): CssBuilder<T & {
153
153
  borderColor: import("csstype").Property.BorderColor | undefined;
154
154
  }>;
155
- /** Sets `borderColor: "rgba(242,155,148,1)"`. */
155
+ /** Sets `borderColor: "rgba(252, 165, 165, 1)"`. */
156
156
  get bRed300(): CssBuilder<T & {
157
157
  borderColor: import("csstype").Property.BorderColor | undefined;
158
158
  }>;
159
- /** Sets `borderColor: "rgba(232,133,122,1)"`. */
159
+ /** Sets `borderColor: "rgba(248, 113, 113, 1)"`. */
160
160
  get bRed400(): CssBuilder<T & {
161
161
  borderColor: import("csstype").Property.BorderColor | undefined;
162
162
  }>;
163
- /** Sets `borderColor: "rgba(218,114,100,1)"`. */
163
+ /** Sets `borderColor: "rgba(239, 68, 68, 1)"`. */
164
164
  get bRed500(): CssBuilder<T & {
165
165
  borderColor: import("csstype").Property.BorderColor | undefined;
166
166
  }>;
167
- /** Sets `borderColor: "rgba(200,98,81,1)"`. */
167
+ /** Sets `borderColor: "rgba(220, 38, 38, 1)"`. */
168
168
  get bRed600(): CssBuilder<T & {
169
169
  borderColor: import("csstype").Property.BorderColor | undefined;
170
170
  }>;
171
- /** Sets `borderColor: "rgba(176,83,73,1)"`. */
171
+ /** Sets `borderColor: "rgba(185, 28, 28, 1)"`. */
172
172
  get bRed700(): CssBuilder<T & {
173
173
  borderColor: import("csstype").Property.BorderColor | undefined;
174
174
  }>;
175
- /** Sets `borderColor: "rgba(149,68,64,1)"`. */
175
+ /** Sets `borderColor: "rgba(153, 27, 27, 1)"`. */
176
176
  get bRed800(): CssBuilder<T & {
177
177
  borderColor: import("csstype").Property.BorderColor | undefined;
178
178
  }>;
179
- /** Sets `borderColor: "rgba(120,54,54,1)"`. */
179
+ /** Sets `borderColor: "rgba(127, 29, 29, 1)"`. */
180
180
  get bRed900(): CssBuilder<T & {
181
181
  borderColor: import("csstype").Property.BorderColor | undefined;
182
182
  }>;
183
- /** Sets `borderColor: "rgba(255,254,242,1)"`. */
183
+ /** Sets `borderColor: "rgba(254, 252, 232, 1)"`. */
184
184
  get bYellow50(): CssBuilder<T & {
185
185
  borderColor: import("csstype").Property.BorderColor | undefined;
186
186
  }>;
187
- /** Sets `borderColor: "rgba(255,254,212,1)"`. */
187
+ /** Sets `borderColor: "rgba(254, 249, 195, 1)"`. */
188
188
  get bYellow100(): CssBuilder<T & {
189
189
  borderColor: import("csstype").Property.BorderColor | undefined;
190
190
  }>;
191
- /** Sets `borderColor: "rgba(255,250,180,1)"`. */
191
+ /** Sets `borderColor: "rgba(254, 240, 138, 1)"`. */
192
192
  get bYellow200(): CssBuilder<T & {
193
193
  borderColor: import("csstype").Property.BorderColor | undefined;
194
194
  }>;
195
- /** Sets `borderColor: "rgba(255,240,150,1)"`. */
195
+ /** Sets `borderColor: "rgba(253, 224, 71, 1)"`. */
196
196
  get bYellow300(): CssBuilder<T & {
197
197
  borderColor: import("csstype").Property.BorderColor | undefined;
198
198
  }>;
199
- /** Sets `borderColor: "rgba(255,225,123,1)"`. */
199
+ /** Sets `borderColor: "rgba(250, 204, 21, 1)"`. */
200
200
  get bYellow400(): CssBuilder<T & {
201
201
  borderColor: import("csstype").Property.BorderColor | undefined;
202
202
  }>;
203
- /** Sets `borderColor: "rgba(255,204,99,1)"`. */
203
+ /** Sets `borderColor: "rgba(234, 179, 8, 1)"`. */
204
204
  get bYellow500(): CssBuilder<T & {
205
205
  borderColor: import("csstype").Property.BorderColor | undefined;
206
206
  }>;
207
- /** Sets `borderColor: "rgba(246,177,78,1)"`. */
207
+ /** Sets `borderColor: "rgba(202, 138, 4, 1)"`. */
208
208
  get bYellow600(): CssBuilder<T & {
209
209
  borderColor: import("csstype").Property.BorderColor | undefined;
210
210
  }>;
211
- /** Sets `borderColor: "rgba(207,150,73,1)"`. */
211
+ /** Sets `borderColor: "rgba(161, 98, 7, 1)"`. */
212
212
  get bYellow700(): CssBuilder<T & {
213
213
  borderColor: import("csstype").Property.BorderColor | undefined;
214
214
  }>;
215
- /** Sets `borderColor: "rgba(164,120,66,1)"`. */
215
+ /** Sets `borderColor: "rgba(133, 77, 14, 1)"`. */
216
216
  get bYellow800(): CssBuilder<T & {
217
217
  borderColor: import("csstype").Property.BorderColor | undefined;
218
218
  }>;
219
- /** Sets `borderColor: "rgba(120,89,54,1)"`. */
219
+ /** Sets `borderColor: "rgba(113, 63, 18, 1)"`. */
220
220
  get bYellow900(): CssBuilder<T & {
221
221
  borderColor: import("csstype").Property.BorderColor | undefined;
222
222
  }>;
223
- /** Sets `borderColor: "rgba(250,255,250,1)"`. */
223
+ /** Sets `borderColor: "rgba(236, 253, 245, 1)"`. */
224
224
  get bGreen50(): CssBuilder<T & {
225
225
  borderColor: import("csstype").Property.BorderColor | undefined;
226
226
  }>;
227
- /** Sets `borderColor: "rgba(223,248,216,1)"`. */
227
+ /** Sets `borderColor: "rgba(209, 250, 229, 1)"`. */
228
228
  get bGreen100(): CssBuilder<T & {
229
229
  borderColor: import("csstype").Property.BorderColor | undefined;
230
230
  }>;
231
- /** Sets `borderColor: "rgba(199,239,183,1)"`. */
231
+ /** Sets `borderColor: "rgba(167, 243, 208, 1)"`. */
232
232
  get bGreen200(): CssBuilder<T & {
233
233
  borderColor: import("csstype").Property.BorderColor | undefined;
234
234
  }>;
235
- /** Sets `borderColor: "rgba(179,226,153,1)"`. */
235
+ /** Sets `borderColor: "rgba(110, 231, 183, 1)"`. */
236
236
  get bGreen300(): CssBuilder<T & {
237
237
  borderColor: import("csstype").Property.BorderColor | undefined;
238
238
  }>;
239
- /** Sets `borderColor: "rgba(163,208,126,1)"`. */
239
+ /** Sets `borderColor: "rgba(52, 211, 153, 1)"`. */
240
240
  get bGreen400(): CssBuilder<T & {
241
241
  borderColor: import("csstype").Property.BorderColor | undefined;
242
242
  }>;
243
- /** Sets `borderColor: "rgba(146,185,101,1)"`. */
243
+ /** Sets `borderColor: "rgba(16, 185, 129, 1)"`. */
244
244
  get bGreen500(): CssBuilder<T & {
245
245
  borderColor: import("csstype").Property.BorderColor | undefined;
246
246
  }>;
247
- /** Sets `borderColor: "rgba(126,156,79,1)"`. */
247
+ /** Sets `borderColor: "rgba(5, 150, 105, 1)"`. */
248
248
  get bGreen600(): CssBuilder<T & {
249
249
  borderColor: import("csstype").Property.BorderColor | undefined;
250
250
  }>;
251
- /** Sets `borderColor: "rgba(101,120,57,1)"`. */
251
+ /** Sets `borderColor: "rgba(4, 120, 87, 1)"`. */
252
252
  get bGreen700(): CssBuilder<T & {
253
253
  borderColor: import("csstype").Property.BorderColor | undefined;
254
254
  }>;
255
- /** Sets `borderColor: "rgba(64,93,44,1)"`. */
255
+ /** Sets `borderColor: "rgba(6, 95, 70, 1)"`. */
256
256
  get bGreen800(): CssBuilder<T & {
257
257
  borderColor: import("csstype").Property.BorderColor | undefined;
258
258
  }>;
259
- /** Sets `borderColor: "rgba(34,64,31,1)"`. */
259
+ /** Sets `borderColor: "rgba(6, 78, 59, 1)"`. */
260
260
  get bGreen900(): CssBuilder<T & {
261
261
  borderColor: import("csstype").Property.BorderColor | undefined;
262
262
  }>;
263
- /** Sets `borderColor: "rgba(245,243,255,1)"`. */
264
- get bViolet50(): CssBuilder<T & {
263
+ /** Sets `borderColor: "rgba(245, 243, 255, 1)"`. */
264
+ get bPurple50(): CssBuilder<T & {
265
265
  borderColor: import("csstype").Property.BorderColor | undefined;
266
266
  }>;
267
- /** Sets `borderColor: "rgba(238,234,253,1)"`. */
268
- get bViolet100(): CssBuilder<T & {
267
+ /** Sets `borderColor: "rgba(237, 233, 254, 1)"`. */
268
+ get bPurple100(): CssBuilder<T & {
269
269
  borderColor: import("csstype").Property.BorderColor | undefined;
270
270
  }>;
271
- /** Sets `borderColor: "rgba(232,225,252,1)"`. */
272
- get bViolet200(): CssBuilder<T & {
271
+ /** Sets `borderColor: "rgba(221, 214, 254, 1)"`. */
272
+ get bPurple200(): CssBuilder<T & {
273
273
  borderColor: import("csstype").Property.BorderColor | undefined;
274
274
  }>;
275
- /** Sets `borderColor: "rgba(218,205,246,1)"`. */
276
- get bViolet300(): CssBuilder<T & {
275
+ /** Sets `borderColor: "rgba(196, 181, 253, 1)"`. */
276
+ get bPurple300(): CssBuilder<T & {
277
277
  borderColor: import("csstype").Property.BorderColor | undefined;
278
278
  }>;
279
- /** Sets `borderColor: "rgba(204,186,236,1)"`. */
280
- get bViolet400(): CssBuilder<T & {
279
+ /** Sets `borderColor: "rgba(167, 139, 250, 1)"`. */
280
+ get bPurple400(): CssBuilder<T & {
281
281
  borderColor: import("csstype").Property.BorderColor | undefined;
282
282
  }>;
283
- /** Sets `borderColor: "rgba(190,167,223,1)"`. */
284
- get bViolet500(): CssBuilder<T & {
283
+ /** Sets `borderColor: "rgba(139, 92, 246, 1)"`. */
284
+ get bPurple500(): CssBuilder<T & {
285
285
  borderColor: import("csstype").Property.BorderColor | undefined;
286
286
  }>;
287
- /** Sets `borderColor: "rgba(173,147,205,1)"`. */
288
- get bViolet600(): CssBuilder<T & {
287
+ /** Sets `borderColor: "rgba(124, 58, 237, 1)"`. */
288
+ get bPurple600(): CssBuilder<T & {
289
289
  borderColor: import("csstype").Property.BorderColor | undefined;
290
290
  }>;
291
- /** Sets `borderColor: "rgba(153,126,181,1)"`. */
292
- get bViolet700(): CssBuilder<T & {
291
+ /** Sets `borderColor: "rgba(109, 40, 217, 1)"`. */
292
+ get bPurple700(): CssBuilder<T & {
293
293
  borderColor: import("csstype").Property.BorderColor | undefined;
294
294
  }>;
295
- /** Sets `borderColor: "rgba(128,103,151,1)"`. */
296
- get bViolet800(): CssBuilder<T & {
295
+ /** Sets `borderColor: "rgba(91, 33, 182, 1)"`. */
296
+ get bPurple800(): CssBuilder<T & {
297
297
  borderColor: import("csstype").Property.BorderColor | undefined;
298
298
  }>;
299
- /** Sets `borderColor: "rgba(100,78,116,1)"`. */
300
- get bViolet900(): CssBuilder<T & {
299
+ /** Sets `borderColor: "rgba(76, 29, 149, 1)"`. */
300
+ get bPurple900(): CssBuilder<T & {
301
+ borderColor: import("csstype").Property.BorderColor | undefined;
302
+ }>;
303
+ /** Sets `borderColor: "rgba(255, 247, 237, 1)"`. */
304
+ get bOrange50(): CssBuilder<T & {
305
+ borderColor: import("csstype").Property.BorderColor | undefined;
306
+ }>;
307
+ /** Sets `borderColor: "rgba(255, 237, 213, 1)"`. */
308
+ get bOrange100(): CssBuilder<T & {
309
+ borderColor: import("csstype").Property.BorderColor | undefined;
310
+ }>;
311
+ /** Sets `borderColor: "rgba(254, 215, 170, 1)"`. */
312
+ get bOrange200(): CssBuilder<T & {
313
+ borderColor: import("csstype").Property.BorderColor | undefined;
314
+ }>;
315
+ /** Sets `borderColor: "rgba(253, 186, 116, 1)"`. */
316
+ get bOrange300(): CssBuilder<T & {
317
+ borderColor: import("csstype").Property.BorderColor | undefined;
318
+ }>;
319
+ /** Sets `borderColor: "rgba(251, 146, 60, 1)"`. */
320
+ get bOrange400(): CssBuilder<T & {
321
+ borderColor: import("csstype").Property.BorderColor | undefined;
322
+ }>;
323
+ /** Sets `borderColor: "rgba(249, 115, 22, 1)"`. */
324
+ get bOrange500(): CssBuilder<T & {
325
+ borderColor: import("csstype").Property.BorderColor | undefined;
326
+ }>;
327
+ /** Sets `borderColor: "rgba(234, 88, 12, 1)"`. */
328
+ get bOrange600(): CssBuilder<T & {
329
+ borderColor: import("csstype").Property.BorderColor | undefined;
330
+ }>;
331
+ /** Sets `borderColor: "rgba(194, 65, 12, 1)"`. */
332
+ get bOrange700(): CssBuilder<T & {
333
+ borderColor: import("csstype").Property.BorderColor | undefined;
334
+ }>;
335
+ /** Sets `borderColor: "rgba(154, 52, 18, 1)"`. */
336
+ get bOrange800(): CssBuilder<T & {
337
+ borderColor: import("csstype").Property.BorderColor | undefined;
338
+ }>;
339
+ /** Sets `borderColor: "rgba(124, 45, 18, 1)"`. */
340
+ get bOrange900(): CssBuilder<T & {
301
341
  borderColor: import("csstype").Property.BorderColor | undefined;
302
342
  }>;
303
343
  /** Sets `borderColor: value`. */
@@ -392,11 +432,11 @@ declare class CssBuilder<T extends Properties> {
392
432
  get bshHover(): CssBuilder<T & {
393
433
  boxShadow: import("csstype").Property.BoxShadow | undefined;
394
434
  }>;
395
- /** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(3,105,161,1)"`. */
435
+ /** Sets `boxShadow: "0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 0px 4px rgba(29, 78, 216, 1)"`. */
396
436
  get bshFocus(): CssBuilder<T & {
397
437
  boxShadow: import("csstype").Property.BoxShadow | undefined;
398
438
  }>;
399
- /** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(149,68,64,1)"`. */
439
+ /** Sets `boxShadow: "0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 0px 4px rgba(153, 27, 27, 1)"`. */
400
440
  get bshDanger(): CssBuilder<T & {
401
441
  boxShadow: import("csstype").Property.BoxShadow | undefined;
402
442
  }>;
@@ -1610,7 +1650,7 @@ declare class CssBuilder<T extends Properties> {
1610
1650
  position(value: Properties["position"]): CssBuilder<T & {
1611
1651
  position: import("csstype").Property.Position | undefined;
1612
1652
  }>;
1613
- /** Sets `color: "rgba(254,254,254,1)"`. */
1653
+ /** Sets `color: "rgba(255,255,255,1)"`. */
1614
1654
  get white(): CssBuilder<T & {
1615
1655
  color: import("csstype").Property.Color | undefined;
1616
1656
  }>;
@@ -1618,251 +1658,291 @@ declare class CssBuilder<T extends Properties> {
1618
1658
  get transparent(): CssBuilder<T & {
1619
1659
  color: import("csstype").Property.Color | undefined;
1620
1660
  }>;
1621
- /** Sets `color: "rgba(255,253,253,1)"`. */
1661
+ /** Sets `color: "rgba(255, 253, 253, 1)"`. */
1622
1662
  get gray50(): CssBuilder<T & {
1623
1663
  color: import("csstype").Property.Color | undefined;
1624
1664
  }>;
1625
- /** Sets `color: "rgba(247,245,245,1)"`. */
1665
+ /** Sets `color: "rgba(247, 245, 245, 1)"`. */
1626
1666
  get gray100(): CssBuilder<T & {
1627
1667
  color: import("csstype").Property.Color | undefined;
1628
1668
  }>;
1629
- /** Sets `color: "rgba(236,235,235,1)"`. */
1669
+ /** Sets `color: "rgba(236, 235, 235, 1)"`. */
1630
1670
  get gray200(): CssBuilder<T & {
1631
1671
  color: import("csstype").Property.Color | undefined;
1632
1672
  }>;
1633
- /** Sets `color: "rgba(221,220,220,1)"`. */
1673
+ /** Sets `color: "rgba(221, 220, 220, 1)"`. */
1634
1674
  get gray300(): CssBuilder<T & {
1635
1675
  color: import("csstype").Property.Color | undefined;
1636
1676
  }>;
1637
- /** Sets `color: "rgba(201,201,201,1)"`. */
1677
+ /** Sets `color: "rgba(201, 201, 201, 1)"`. */
1638
1678
  get gray400(): CssBuilder<T & {
1639
1679
  color: import("csstype").Property.Color | undefined;
1640
1680
  }>;
1641
- /** Sets `color: "rgba(175,175,175,1)"`. */
1681
+ /** Sets `color: "rgba(175, 175, 175, 1)"`. */
1642
1682
  get gray500(): CssBuilder<T & {
1643
1683
  color: import("csstype").Property.Color | undefined;
1644
1684
  }>;
1645
- /** Sets `color: "rgba(141,141,141,1)"`. */
1685
+ /** Sets `color: "rgba(141, 141, 141, 1)"`. */
1646
1686
  get gray600(): CssBuilder<T & {
1647
1687
  color: import("csstype").Property.Color | undefined;
1648
1688
  }>;
1649
- /** Sets `color: "rgba(100,100,100,1)"`. */
1689
+ /** Sets `color: "rgba(100, 100, 100, 1)"`. */
1650
1690
  get gray700(): CssBuilder<T & {
1651
1691
  color: import("csstype").Property.Color | undefined;
1652
1692
  }>;
1653
- /** Sets `color: "rgba(53,53,53,1)"`. */
1693
+ /** Sets `color: "rgba(53, 53, 53, 1)"`. */
1654
1694
  get gray800(): CssBuilder<T & {
1655
1695
  color: import("csstype").Property.Color | undefined;
1656
1696
  }>;
1657
- /** Sets `color: "rgba(36,36,36,1)"`. */
1697
+ /** Sets `color: "rgba(36, 36, 36, 1)"`. */
1658
1698
  get gray900(): CssBuilder<T & {
1659
1699
  color: import("csstype").Property.Color | undefined;
1660
1700
  }>;
1661
- /** Sets `color: "rgba(240,249,255,1)"`. */
1662
- get lightBlue50(): CssBuilder<T & {
1701
+ /** Sets `color: "rgba(239, 246, 255, 1)"`. */
1702
+ get blue50(): CssBuilder<T & {
1663
1703
  color: import("csstype").Property.Color | undefined;
1664
1704
  }>;
1665
- /** Sets `color: "rgba(224,242,254,1)"`. */
1666
- get lightBlue100(): CssBuilder<T & {
1705
+ /** Sets `color: "rgba(219, 234, 254, 1)"`. */
1706
+ get blue100(): CssBuilder<T & {
1667
1707
  color: import("csstype").Property.Color | undefined;
1668
1708
  }>;
1669
- /** Sets `color: "rgba(186,230,253,1)"`. */
1670
- get lightBlue200(): CssBuilder<T & {
1709
+ /** Sets `color: "rgba(191, 219, 254, 1)"`. */
1710
+ get blue200(): CssBuilder<T & {
1671
1711
  color: import("csstype").Property.Color | undefined;
1672
1712
  }>;
1673
- /** Sets `color: "rgba(125,211,252,1)"`. */
1674
- get lightBlue300(): CssBuilder<T & {
1713
+ /** Sets `color: "rgba(147, 197, 253, 1)"`. */
1714
+ get blue300(): CssBuilder<T & {
1675
1715
  color: import("csstype").Property.Color | undefined;
1676
1716
  }>;
1677
- /** Sets `color: "rgba(56,189,248,1)"`. */
1678
- get lightBlue400(): CssBuilder<T & {
1717
+ /** Sets `color: "rgba(96, 165, 250, 1)"`. */
1718
+ get blue400(): CssBuilder<T & {
1679
1719
  color: import("csstype").Property.Color | undefined;
1680
1720
  }>;
1681
- /** Sets `color: "rgba(14,165,233,1)"`. */
1682
- get lightBlue500(): CssBuilder<T & {
1721
+ /** Sets `color: "rgba(59, 130, 246, 1)"`. */
1722
+ get blue500(): CssBuilder<T & {
1683
1723
  color: import("csstype").Property.Color | undefined;
1684
1724
  }>;
1685
- /** Sets `color: "rgba(2,143,199,1)"`. */
1686
- get lightBlue600(): CssBuilder<T & {
1725
+ /** Sets `color: "rgba(37, 99, 235, 1)"`. */
1726
+ get blue600(): CssBuilder<T & {
1687
1727
  color: import("csstype").Property.Color | undefined;
1688
1728
  }>;
1689
- /** Sets `color: "rgba(3,105,161,1)"`. */
1690
- get lightBlue700(): CssBuilder<T & {
1729
+ /** Sets `color: "rgba(29, 78, 216, 1)"`. */
1730
+ get blue700(): CssBuilder<T & {
1691
1731
  color: import("csstype").Property.Color | undefined;
1692
1732
  }>;
1693
- /** Sets `color: "rgba(7,89,133,1)"`. */
1694
- get lightBlue800(): CssBuilder<T & {
1733
+ /** Sets `color: "rgba(30, 64, 175, 1)"`. */
1734
+ get blue800(): CssBuilder<T & {
1695
1735
  color: import("csstype").Property.Color | undefined;
1696
1736
  }>;
1697
- /** Sets `color: "rgba(12,74,110,1)"`. */
1698
- get lightBlue900(): CssBuilder<T & {
1737
+ /** Sets `color: "rgba(30, 58, 138, 1)"`. */
1738
+ get blue900(): CssBuilder<T & {
1699
1739
  color: import("csstype").Property.Color | undefined;
1700
1740
  }>;
1701
- /** Sets `color: "rgba(255,242,242,1)"`. */
1741
+ /** Sets `color: "rgba(254, 242, 242, 1)"`. */
1702
1742
  get red50(): CssBuilder<T & {
1703
1743
  color: import("csstype").Property.Color | undefined;
1704
1744
  }>;
1705
- /** Sets `color: "rgba(253,210,209,1)"`. */
1745
+ /** Sets `color: "rgba(254, 226, 226, 1)"`. */
1706
1746
  get red100(): CssBuilder<T & {
1707
1747
  color: import("csstype").Property.Color | undefined;
1708
1748
  }>;
1709
- /** Sets `color: "rgba(249,181,177,1)"`. */
1749
+ /** Sets `color: "rgba(254, 202, 202, 1)"`. */
1710
1750
  get red200(): CssBuilder<T & {
1711
1751
  color: import("csstype").Property.Color | undefined;
1712
1752
  }>;
1713
- /** Sets `color: "rgba(242,155,148,1)"`. */
1753
+ /** Sets `color: "rgba(252, 165, 165, 1)"`. */
1714
1754
  get red300(): CssBuilder<T & {
1715
1755
  color: import("csstype").Property.Color | undefined;
1716
1756
  }>;
1717
- /** Sets `color: "rgba(232,133,122,1)"`. */
1757
+ /** Sets `color: "rgba(248, 113, 113, 1)"`. */
1718
1758
  get red400(): CssBuilder<T & {
1719
1759
  color: import("csstype").Property.Color | undefined;
1720
1760
  }>;
1721
- /** Sets `color: "rgba(218,114,100,1)"`. */
1761
+ /** Sets `color: "rgba(239, 68, 68, 1)"`. */
1722
1762
  get red500(): CssBuilder<T & {
1723
1763
  color: import("csstype").Property.Color | undefined;
1724
1764
  }>;
1725
- /** Sets `color: "rgba(200,98,81,1)"`. */
1765
+ /** Sets `color: "rgba(220, 38, 38, 1)"`. */
1726
1766
  get red600(): CssBuilder<T & {
1727
1767
  color: import("csstype").Property.Color | undefined;
1728
1768
  }>;
1729
- /** Sets `color: "rgba(176,83,73,1)"`. */
1769
+ /** Sets `color: "rgba(185, 28, 28, 1)"`. */
1730
1770
  get red700(): CssBuilder<T & {
1731
1771
  color: import("csstype").Property.Color | undefined;
1732
1772
  }>;
1733
- /** Sets `color: "rgba(149,68,64,1)"`. */
1773
+ /** Sets `color: "rgba(153, 27, 27, 1)"`. */
1734
1774
  get red800(): CssBuilder<T & {
1735
1775
  color: import("csstype").Property.Color | undefined;
1736
1776
  }>;
1737
- /** Sets `color: "rgba(120,54,54,1)"`. */
1777
+ /** Sets `color: "rgba(127, 29, 29, 1)"`. */
1738
1778
  get red900(): CssBuilder<T & {
1739
1779
  color: import("csstype").Property.Color | undefined;
1740
1780
  }>;
1741
- /** Sets `color: "rgba(255,254,242,1)"`. */
1781
+ /** Sets `color: "rgba(254, 252, 232, 1)"`. */
1742
1782
  get yellow50(): CssBuilder<T & {
1743
1783
  color: import("csstype").Property.Color | undefined;
1744
1784
  }>;
1745
- /** Sets `color: "rgba(255,254,212,1)"`. */
1785
+ /** Sets `color: "rgba(254, 249, 195, 1)"`. */
1746
1786
  get yellow100(): CssBuilder<T & {
1747
1787
  color: import("csstype").Property.Color | undefined;
1748
1788
  }>;
1749
- /** Sets `color: "rgba(255,250,180,1)"`. */
1789
+ /** Sets `color: "rgba(254, 240, 138, 1)"`. */
1750
1790
  get yellow200(): CssBuilder<T & {
1751
1791
  color: import("csstype").Property.Color | undefined;
1752
1792
  }>;
1753
- /** Sets `color: "rgba(255,240,150,1)"`. */
1793
+ /** Sets `color: "rgba(253, 224, 71, 1)"`. */
1754
1794
  get yellow300(): CssBuilder<T & {
1755
1795
  color: import("csstype").Property.Color | undefined;
1756
1796
  }>;
1757
- /** Sets `color: "rgba(255,225,123,1)"`. */
1797
+ /** Sets `color: "rgba(250, 204, 21, 1)"`. */
1758
1798
  get yellow400(): CssBuilder<T & {
1759
1799
  color: import("csstype").Property.Color | undefined;
1760
1800
  }>;
1761
- /** Sets `color: "rgba(255,204,99,1)"`. */
1801
+ /** Sets `color: "rgba(234, 179, 8, 1)"`. */
1762
1802
  get yellow500(): CssBuilder<T & {
1763
1803
  color: import("csstype").Property.Color | undefined;
1764
1804
  }>;
1765
- /** Sets `color: "rgba(246,177,78,1)"`. */
1805
+ /** Sets `color: "rgba(202, 138, 4, 1)"`. */
1766
1806
  get yellow600(): CssBuilder<T & {
1767
1807
  color: import("csstype").Property.Color | undefined;
1768
1808
  }>;
1769
- /** Sets `color: "rgba(207,150,73,1)"`. */
1809
+ /** Sets `color: "rgba(161, 98, 7, 1)"`. */
1770
1810
  get yellow700(): CssBuilder<T & {
1771
1811
  color: import("csstype").Property.Color | undefined;
1772
1812
  }>;
1773
- /** Sets `color: "rgba(164,120,66,1)"`. */
1813
+ /** Sets `color: "rgba(133, 77, 14, 1)"`. */
1774
1814
  get yellow800(): CssBuilder<T & {
1775
1815
  color: import("csstype").Property.Color | undefined;
1776
1816
  }>;
1777
- /** Sets `color: "rgba(120,89,54,1)"`. */
1817
+ /** Sets `color: "rgba(113, 63, 18, 1)"`. */
1778
1818
  get yellow900(): CssBuilder<T & {
1779
1819
  color: import("csstype").Property.Color | undefined;
1780
1820
  }>;
1781
- /** Sets `color: "rgba(250,255,250,1)"`. */
1821
+ /** Sets `color: "rgba(236, 253, 245, 1)"`. */
1782
1822
  get green50(): CssBuilder<T & {
1783
1823
  color: import("csstype").Property.Color | undefined;
1784
1824
  }>;
1785
- /** Sets `color: "rgba(223,248,216,1)"`. */
1825
+ /** Sets `color: "rgba(209, 250, 229, 1)"`. */
1786
1826
  get green100(): CssBuilder<T & {
1787
1827
  color: import("csstype").Property.Color | undefined;
1788
1828
  }>;
1789
- /** Sets `color: "rgba(199,239,183,1)"`. */
1829
+ /** Sets `color: "rgba(167, 243, 208, 1)"`. */
1790
1830
  get green200(): CssBuilder<T & {
1791
1831
  color: import("csstype").Property.Color | undefined;
1792
1832
  }>;
1793
- /** Sets `color: "rgba(179,226,153,1)"`. */
1833
+ /** Sets `color: "rgba(110, 231, 183, 1)"`. */
1794
1834
  get green300(): CssBuilder<T & {
1795
1835
  color: import("csstype").Property.Color | undefined;
1796
1836
  }>;
1797
- /** Sets `color: "rgba(163,208,126,1)"`. */
1837
+ /** Sets `color: "rgba(52, 211, 153, 1)"`. */
1798
1838
  get green400(): CssBuilder<T & {
1799
1839
  color: import("csstype").Property.Color | undefined;
1800
1840
  }>;
1801
- /** Sets `color: "rgba(146,185,101,1)"`. */
1841
+ /** Sets `color: "rgba(16, 185, 129, 1)"`. */
1802
1842
  get green500(): CssBuilder<T & {
1803
1843
  color: import("csstype").Property.Color | undefined;
1804
1844
  }>;
1805
- /** Sets `color: "rgba(126,156,79,1)"`. */
1845
+ /** Sets `color: "rgba(5, 150, 105, 1)"`. */
1806
1846
  get green600(): CssBuilder<T & {
1807
1847
  color: import("csstype").Property.Color | undefined;
1808
1848
  }>;
1809
- /** Sets `color: "rgba(101,120,57,1)"`. */
1849
+ /** Sets `color: "rgba(4, 120, 87, 1)"`. */
1810
1850
  get green700(): CssBuilder<T & {
1811
1851
  color: import("csstype").Property.Color | undefined;
1812
1852
  }>;
1813
- /** Sets `color: "rgba(64,93,44,1)"`. */
1853
+ /** Sets `color: "rgba(6, 95, 70, 1)"`. */
1814
1854
  get green800(): CssBuilder<T & {
1815
1855
  color: import("csstype").Property.Color | undefined;
1816
1856
  }>;
1817
- /** Sets `color: "rgba(34,64,31,1)"`. */
1857
+ /** Sets `color: "rgba(6, 78, 59, 1)"`. */
1818
1858
  get green900(): CssBuilder<T & {
1819
1859
  color: import("csstype").Property.Color | undefined;
1820
1860
  }>;
1821
- /** Sets `color: "rgba(245,243,255,1)"`. */
1822
- get violet50(): CssBuilder<T & {
1861
+ /** Sets `color: "rgba(245, 243, 255, 1)"`. */
1862
+ get purple50(): CssBuilder<T & {
1863
+ color: import("csstype").Property.Color | undefined;
1864
+ }>;
1865
+ /** Sets `color: "rgba(237, 233, 254, 1)"`. */
1866
+ get purple100(): CssBuilder<T & {
1867
+ color: import("csstype").Property.Color | undefined;
1868
+ }>;
1869
+ /** Sets `color: "rgba(221, 214, 254, 1)"`. */
1870
+ get purple200(): CssBuilder<T & {
1871
+ color: import("csstype").Property.Color | undefined;
1872
+ }>;
1873
+ /** Sets `color: "rgba(196, 181, 253, 1)"`. */
1874
+ get purple300(): CssBuilder<T & {
1875
+ color: import("csstype").Property.Color | undefined;
1876
+ }>;
1877
+ /** Sets `color: "rgba(167, 139, 250, 1)"`. */
1878
+ get purple400(): CssBuilder<T & {
1879
+ color: import("csstype").Property.Color | undefined;
1880
+ }>;
1881
+ /** Sets `color: "rgba(139, 92, 246, 1)"`. */
1882
+ get purple500(): CssBuilder<T & {
1883
+ color: import("csstype").Property.Color | undefined;
1884
+ }>;
1885
+ /** Sets `color: "rgba(124, 58, 237, 1)"`. */
1886
+ get purple600(): CssBuilder<T & {
1887
+ color: import("csstype").Property.Color | undefined;
1888
+ }>;
1889
+ /** Sets `color: "rgba(109, 40, 217, 1)"`. */
1890
+ get purple700(): CssBuilder<T & {
1891
+ color: import("csstype").Property.Color | undefined;
1892
+ }>;
1893
+ /** Sets `color: "rgba(91, 33, 182, 1)"`. */
1894
+ get purple800(): CssBuilder<T & {
1895
+ color: import("csstype").Property.Color | undefined;
1896
+ }>;
1897
+ /** Sets `color: "rgba(76, 29, 149, 1)"`. */
1898
+ get purple900(): CssBuilder<T & {
1899
+ color: import("csstype").Property.Color | undefined;
1900
+ }>;
1901
+ /** Sets `color: "rgba(255, 247, 237, 1)"`. */
1902
+ get orange50(): CssBuilder<T & {
1823
1903
  color: import("csstype").Property.Color | undefined;
1824
1904
  }>;
1825
- /** Sets `color: "rgba(238,234,253,1)"`. */
1826
- get violet100(): CssBuilder<T & {
1905
+ /** Sets `color: "rgba(255, 237, 213, 1)"`. */
1906
+ get orange100(): CssBuilder<T & {
1827
1907
  color: import("csstype").Property.Color | undefined;
1828
1908
  }>;
1829
- /** Sets `color: "rgba(232,225,252,1)"`. */
1830
- get violet200(): CssBuilder<T & {
1909
+ /** Sets `color: "rgba(254, 215, 170, 1)"`. */
1910
+ get orange200(): CssBuilder<T & {
1831
1911
  color: import("csstype").Property.Color | undefined;
1832
1912
  }>;
1833
- /** Sets `color: "rgba(218,205,246,1)"`. */
1834
- get violet300(): CssBuilder<T & {
1913
+ /** Sets `color: "rgba(253, 186, 116, 1)"`. */
1914
+ get orange300(): CssBuilder<T & {
1835
1915
  color: import("csstype").Property.Color | undefined;
1836
1916
  }>;
1837
- /** Sets `color: "rgba(204,186,236,1)"`. */
1838
- get violet400(): CssBuilder<T & {
1917
+ /** Sets `color: "rgba(251, 146, 60, 1)"`. */
1918
+ get orange400(): CssBuilder<T & {
1839
1919
  color: import("csstype").Property.Color | undefined;
1840
1920
  }>;
1841
- /** Sets `color: "rgba(190,167,223,1)"`. */
1842
- get violet500(): CssBuilder<T & {
1921
+ /** Sets `color: "rgba(249, 115, 22, 1)"`. */
1922
+ get orange500(): CssBuilder<T & {
1843
1923
  color: import("csstype").Property.Color | undefined;
1844
1924
  }>;
1845
- /** Sets `color: "rgba(173,147,205,1)"`. */
1846
- get violet600(): CssBuilder<T & {
1925
+ /** Sets `color: "rgba(234, 88, 12, 1)"`. */
1926
+ get orange600(): CssBuilder<T & {
1847
1927
  color: import("csstype").Property.Color | undefined;
1848
1928
  }>;
1849
- /** Sets `color: "rgba(153,126,181,1)"`. */
1850
- get violet700(): CssBuilder<T & {
1929
+ /** Sets `color: "rgba(194, 65, 12, 1)"`. */
1930
+ get orange700(): CssBuilder<T & {
1851
1931
  color: import("csstype").Property.Color | undefined;
1852
1932
  }>;
1853
- /** Sets `color: "rgba(128,103,151,1)"`. */
1854
- get violet800(): CssBuilder<T & {
1933
+ /** Sets `color: "rgba(154, 52, 18, 1)"`. */
1934
+ get orange800(): CssBuilder<T & {
1855
1935
  color: import("csstype").Property.Color | undefined;
1856
1936
  }>;
1857
- /** Sets `color: "rgba(100,78,116,1)"`. */
1858
- get violet900(): CssBuilder<T & {
1937
+ /** Sets `color: "rgba(124, 45, 18, 1)"`. */
1938
+ get orange900(): CssBuilder<T & {
1859
1939
  color: import("csstype").Property.Color | undefined;
1860
1940
  }>;
1861
1941
  /** Sets `color: value`. */
1862
1942
  color(value: Properties["color"]): CssBuilder<T & {
1863
1943
  color: import("csstype").Property.Color | undefined;
1864
1944
  }>;
1865
- /** Sets `backgroundColor: "rgba(254,254,254,1)"`. */
1945
+ /** Sets `backgroundColor: "rgba(255,255,255,1)"`. */
1866
1946
  get bgWhite(): CssBuilder<T & {
1867
1947
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1868
1948
  }>;
@@ -1870,251 +1950,291 @@ declare class CssBuilder<T extends Properties> {
1870
1950
  get bgTransparent(): CssBuilder<T & {
1871
1951
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1872
1952
  }>;
1873
- /** Sets `backgroundColor: "rgba(255,253,253,1)"`. */
1953
+ /** Sets `backgroundColor: "rgba(255, 253, 253, 1)"`. */
1874
1954
  get bgGray50(): CssBuilder<T & {
1875
1955
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1876
1956
  }>;
1877
- /** Sets `backgroundColor: "rgba(247,245,245,1)"`. */
1957
+ /** Sets `backgroundColor: "rgba(247, 245, 245, 1)"`. */
1878
1958
  get bgGray100(): CssBuilder<T & {
1879
1959
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1880
1960
  }>;
1881
- /** Sets `backgroundColor: "rgba(236,235,235,1)"`. */
1961
+ /** Sets `backgroundColor: "rgba(236, 235, 235, 1)"`. */
1882
1962
  get bgGray200(): CssBuilder<T & {
1883
1963
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1884
1964
  }>;
1885
- /** Sets `backgroundColor: "rgba(221,220,220,1)"`. */
1965
+ /** Sets `backgroundColor: "rgba(221, 220, 220, 1)"`. */
1886
1966
  get bgGray300(): CssBuilder<T & {
1887
1967
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1888
1968
  }>;
1889
- /** Sets `backgroundColor: "rgba(201,201,201,1)"`. */
1969
+ /** Sets `backgroundColor: "rgba(201, 201, 201, 1)"`. */
1890
1970
  get bgGray400(): CssBuilder<T & {
1891
1971
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1892
1972
  }>;
1893
- /** Sets `backgroundColor: "rgba(175,175,175,1)"`. */
1973
+ /** Sets `backgroundColor: "rgba(175, 175, 175, 1)"`. */
1894
1974
  get bgGray500(): CssBuilder<T & {
1895
1975
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1896
1976
  }>;
1897
- /** Sets `backgroundColor: "rgba(141,141,141,1)"`. */
1977
+ /** Sets `backgroundColor: "rgba(141, 141, 141, 1)"`. */
1898
1978
  get bgGray600(): CssBuilder<T & {
1899
1979
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1900
1980
  }>;
1901
- /** Sets `backgroundColor: "rgba(100,100,100,1)"`. */
1981
+ /** Sets `backgroundColor: "rgba(100, 100, 100, 1)"`. */
1902
1982
  get bgGray700(): CssBuilder<T & {
1903
1983
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1904
1984
  }>;
1905
- /** Sets `backgroundColor: "rgba(53,53,53,1)"`. */
1985
+ /** Sets `backgroundColor: "rgba(53, 53, 53, 1)"`. */
1906
1986
  get bgGray800(): CssBuilder<T & {
1907
1987
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1908
1988
  }>;
1909
- /** Sets `backgroundColor: "rgba(36,36,36,1)"`. */
1989
+ /** Sets `backgroundColor: "rgba(36, 36, 36, 1)"`. */
1910
1990
  get bgGray900(): CssBuilder<T & {
1911
1991
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1912
1992
  }>;
1913
- /** Sets `backgroundColor: "rgba(240,249,255,1)"`. */
1914
- get bgLightBlue50(): CssBuilder<T & {
1993
+ /** Sets `backgroundColor: "rgba(239, 246, 255, 1)"`. */
1994
+ get bgBlue50(): CssBuilder<T & {
1915
1995
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1916
1996
  }>;
1917
- /** Sets `backgroundColor: "rgba(224,242,254,1)"`. */
1918
- get bgLightBlue100(): CssBuilder<T & {
1997
+ /** Sets `backgroundColor: "rgba(219, 234, 254, 1)"`. */
1998
+ get bgBlue100(): CssBuilder<T & {
1919
1999
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1920
2000
  }>;
1921
- /** Sets `backgroundColor: "rgba(186,230,253,1)"`. */
1922
- get bgLightBlue200(): CssBuilder<T & {
2001
+ /** Sets `backgroundColor: "rgba(191, 219, 254, 1)"`. */
2002
+ get bgBlue200(): CssBuilder<T & {
1923
2003
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1924
2004
  }>;
1925
- /** Sets `backgroundColor: "rgba(125,211,252,1)"`. */
1926
- get bgLightBlue300(): CssBuilder<T & {
2005
+ /** Sets `backgroundColor: "rgba(147, 197, 253, 1)"`. */
2006
+ get bgBlue300(): CssBuilder<T & {
1927
2007
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1928
2008
  }>;
1929
- /** Sets `backgroundColor: "rgba(56,189,248,1)"`. */
1930
- get bgLightBlue400(): CssBuilder<T & {
2009
+ /** Sets `backgroundColor: "rgba(96, 165, 250, 1)"`. */
2010
+ get bgBlue400(): CssBuilder<T & {
1931
2011
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1932
2012
  }>;
1933
- /** Sets `backgroundColor: "rgba(14,165,233,1)"`. */
1934
- get bgLightBlue500(): CssBuilder<T & {
2013
+ /** Sets `backgroundColor: "rgba(59, 130, 246, 1)"`. */
2014
+ get bgBlue500(): CssBuilder<T & {
1935
2015
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1936
2016
  }>;
1937
- /** Sets `backgroundColor: "rgba(2,143,199,1)"`. */
1938
- get bgLightBlue600(): CssBuilder<T & {
2017
+ /** Sets `backgroundColor: "rgba(37, 99, 235, 1)"`. */
2018
+ get bgBlue600(): CssBuilder<T & {
1939
2019
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1940
2020
  }>;
1941
- /** Sets `backgroundColor: "rgba(3,105,161,1)"`. */
1942
- get bgLightBlue700(): CssBuilder<T & {
2021
+ /** Sets `backgroundColor: "rgba(29, 78, 216, 1)"`. */
2022
+ get bgBlue700(): CssBuilder<T & {
1943
2023
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1944
2024
  }>;
1945
- /** Sets `backgroundColor: "rgba(7,89,133,1)"`. */
1946
- get bgLightBlue800(): CssBuilder<T & {
2025
+ /** Sets `backgroundColor: "rgba(30, 64, 175, 1)"`. */
2026
+ get bgBlue800(): CssBuilder<T & {
1947
2027
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1948
2028
  }>;
1949
- /** Sets `backgroundColor: "rgba(12,74,110,1)"`. */
1950
- get bgLightBlue900(): CssBuilder<T & {
2029
+ /** Sets `backgroundColor: "rgba(30, 58, 138, 1)"`. */
2030
+ get bgBlue900(): CssBuilder<T & {
1951
2031
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1952
2032
  }>;
1953
- /** Sets `backgroundColor: "rgba(255,242,242,1)"`. */
2033
+ /** Sets `backgroundColor: "rgba(254, 242, 242, 1)"`. */
1954
2034
  get bgRed50(): CssBuilder<T & {
1955
2035
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1956
2036
  }>;
1957
- /** Sets `backgroundColor: "rgba(253,210,209,1)"`. */
2037
+ /** Sets `backgroundColor: "rgba(254, 226, 226, 1)"`. */
1958
2038
  get bgRed100(): CssBuilder<T & {
1959
2039
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1960
2040
  }>;
1961
- /** Sets `backgroundColor: "rgba(249,181,177,1)"`. */
2041
+ /** Sets `backgroundColor: "rgba(254, 202, 202, 1)"`. */
1962
2042
  get bgRed200(): CssBuilder<T & {
1963
2043
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1964
2044
  }>;
1965
- /** Sets `backgroundColor: "rgba(242,155,148,1)"`. */
2045
+ /** Sets `backgroundColor: "rgba(252, 165, 165, 1)"`. */
1966
2046
  get bgRed300(): CssBuilder<T & {
1967
2047
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1968
2048
  }>;
1969
- /** Sets `backgroundColor: "rgba(232,133,122,1)"`. */
2049
+ /** Sets `backgroundColor: "rgba(248, 113, 113, 1)"`. */
1970
2050
  get bgRed400(): CssBuilder<T & {
1971
2051
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1972
2052
  }>;
1973
- /** Sets `backgroundColor: "rgba(218,114,100,1)"`. */
2053
+ /** Sets `backgroundColor: "rgba(239, 68, 68, 1)"`. */
1974
2054
  get bgRed500(): CssBuilder<T & {
1975
2055
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1976
2056
  }>;
1977
- /** Sets `backgroundColor: "rgba(200,98,81,1)"`. */
2057
+ /** Sets `backgroundColor: "rgba(220, 38, 38, 1)"`. */
1978
2058
  get bgRed600(): CssBuilder<T & {
1979
2059
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1980
2060
  }>;
1981
- /** Sets `backgroundColor: "rgba(176,83,73,1)"`. */
2061
+ /** Sets `backgroundColor: "rgba(185, 28, 28, 1)"`. */
1982
2062
  get bgRed700(): CssBuilder<T & {
1983
2063
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1984
2064
  }>;
1985
- /** Sets `backgroundColor: "rgba(149,68,64,1)"`. */
2065
+ /** Sets `backgroundColor: "rgba(153, 27, 27, 1)"`. */
1986
2066
  get bgRed800(): CssBuilder<T & {
1987
2067
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1988
2068
  }>;
1989
- /** Sets `backgroundColor: "rgba(120,54,54,1)"`. */
2069
+ /** Sets `backgroundColor: "rgba(127, 29, 29, 1)"`. */
1990
2070
  get bgRed900(): CssBuilder<T & {
1991
2071
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1992
2072
  }>;
1993
- /** Sets `backgroundColor: "rgba(255,254,242,1)"`. */
2073
+ /** Sets `backgroundColor: "rgba(254, 252, 232, 1)"`. */
1994
2074
  get bgYellow50(): CssBuilder<T & {
1995
2075
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1996
2076
  }>;
1997
- /** Sets `backgroundColor: "rgba(255,254,212,1)"`. */
2077
+ /** Sets `backgroundColor: "rgba(254, 249, 195, 1)"`. */
1998
2078
  get bgYellow100(): CssBuilder<T & {
1999
2079
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2000
2080
  }>;
2001
- /** Sets `backgroundColor: "rgba(255,250,180,1)"`. */
2081
+ /** Sets `backgroundColor: "rgba(254, 240, 138, 1)"`. */
2002
2082
  get bgYellow200(): CssBuilder<T & {
2003
2083
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2004
2084
  }>;
2005
- /** Sets `backgroundColor: "rgba(255,240,150,1)"`. */
2085
+ /** Sets `backgroundColor: "rgba(253, 224, 71, 1)"`. */
2006
2086
  get bgYellow300(): CssBuilder<T & {
2007
2087
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2008
2088
  }>;
2009
- /** Sets `backgroundColor: "rgba(255,225,123,1)"`. */
2089
+ /** Sets `backgroundColor: "rgba(250, 204, 21, 1)"`. */
2010
2090
  get bgYellow400(): CssBuilder<T & {
2011
2091
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2012
2092
  }>;
2013
- /** Sets `backgroundColor: "rgba(255,204,99,1)"`. */
2093
+ /** Sets `backgroundColor: "rgba(234, 179, 8, 1)"`. */
2014
2094
  get bgYellow500(): CssBuilder<T & {
2015
2095
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2016
2096
  }>;
2017
- /** Sets `backgroundColor: "rgba(246,177,78,1)"`. */
2097
+ /** Sets `backgroundColor: "rgba(202, 138, 4, 1)"`. */
2018
2098
  get bgYellow600(): CssBuilder<T & {
2019
2099
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2020
2100
  }>;
2021
- /** Sets `backgroundColor: "rgba(207,150,73,1)"`. */
2101
+ /** Sets `backgroundColor: "rgba(161, 98, 7, 1)"`. */
2022
2102
  get bgYellow700(): CssBuilder<T & {
2023
2103
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2024
2104
  }>;
2025
- /** Sets `backgroundColor: "rgba(164,120,66,1)"`. */
2105
+ /** Sets `backgroundColor: "rgba(133, 77, 14, 1)"`. */
2026
2106
  get bgYellow800(): CssBuilder<T & {
2027
2107
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2028
2108
  }>;
2029
- /** Sets `backgroundColor: "rgba(120,89,54,1)"`. */
2109
+ /** Sets `backgroundColor: "rgba(113, 63, 18, 1)"`. */
2030
2110
  get bgYellow900(): CssBuilder<T & {
2031
2111
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2032
2112
  }>;
2033
- /** Sets `backgroundColor: "rgba(250,255,250,1)"`. */
2113
+ /** Sets `backgroundColor: "rgba(236, 253, 245, 1)"`. */
2034
2114
  get bgGreen50(): CssBuilder<T & {
2035
2115
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2036
2116
  }>;
2037
- /** Sets `backgroundColor: "rgba(223,248,216,1)"`. */
2117
+ /** Sets `backgroundColor: "rgba(209, 250, 229, 1)"`. */
2038
2118
  get bgGreen100(): CssBuilder<T & {
2039
2119
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2040
2120
  }>;
2041
- /** Sets `backgroundColor: "rgba(199,239,183,1)"`. */
2121
+ /** Sets `backgroundColor: "rgba(167, 243, 208, 1)"`. */
2042
2122
  get bgGreen200(): CssBuilder<T & {
2043
2123
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2044
2124
  }>;
2045
- /** Sets `backgroundColor: "rgba(179,226,153,1)"`. */
2125
+ /** Sets `backgroundColor: "rgba(110, 231, 183, 1)"`. */
2046
2126
  get bgGreen300(): CssBuilder<T & {
2047
2127
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2048
2128
  }>;
2049
- /** Sets `backgroundColor: "rgba(163,208,126,1)"`. */
2129
+ /** Sets `backgroundColor: "rgba(52, 211, 153, 1)"`. */
2050
2130
  get bgGreen400(): CssBuilder<T & {
2051
2131
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2052
2132
  }>;
2053
- /** Sets `backgroundColor: "rgba(146,185,101,1)"`. */
2133
+ /** Sets `backgroundColor: "rgba(16, 185, 129, 1)"`. */
2054
2134
  get bgGreen500(): CssBuilder<T & {
2055
2135
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2056
2136
  }>;
2057
- /** Sets `backgroundColor: "rgba(126,156,79,1)"`. */
2137
+ /** Sets `backgroundColor: "rgba(5, 150, 105, 1)"`. */
2058
2138
  get bgGreen600(): CssBuilder<T & {
2059
2139
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2060
2140
  }>;
2061
- /** Sets `backgroundColor: "rgba(101,120,57,1)"`. */
2141
+ /** Sets `backgroundColor: "rgba(4, 120, 87, 1)"`. */
2062
2142
  get bgGreen700(): CssBuilder<T & {
2063
2143
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2064
2144
  }>;
2065
- /** Sets `backgroundColor: "rgba(64,93,44,1)"`. */
2145
+ /** Sets `backgroundColor: "rgba(6, 95, 70, 1)"`. */
2066
2146
  get bgGreen800(): CssBuilder<T & {
2067
2147
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2068
2148
  }>;
2069
- /** Sets `backgroundColor: "rgba(34,64,31,1)"`. */
2149
+ /** Sets `backgroundColor: "rgba(6, 78, 59, 1)"`. */
2070
2150
  get bgGreen900(): CssBuilder<T & {
2071
2151
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2072
2152
  }>;
2073
- /** Sets `backgroundColor: "rgba(245,243,255,1)"`. */
2074
- get bgViolet50(): CssBuilder<T & {
2153
+ /** Sets `backgroundColor: "rgba(245, 243, 255, 1)"`. */
2154
+ get bgPurple50(): CssBuilder<T & {
2075
2155
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2076
2156
  }>;
2077
- /** Sets `backgroundColor: "rgba(238,234,253,1)"`. */
2078
- get bgViolet100(): CssBuilder<T & {
2157
+ /** Sets `backgroundColor: "rgba(237, 233, 254, 1)"`. */
2158
+ get bgPurple100(): CssBuilder<T & {
2079
2159
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2080
2160
  }>;
2081
- /** Sets `backgroundColor: "rgba(232,225,252,1)"`. */
2082
- get bgViolet200(): CssBuilder<T & {
2161
+ /** Sets `backgroundColor: "rgba(221, 214, 254, 1)"`. */
2162
+ get bgPurple200(): CssBuilder<T & {
2083
2163
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2084
2164
  }>;
2085
- /** Sets `backgroundColor: "rgba(218,205,246,1)"`. */
2086
- get bgViolet300(): CssBuilder<T & {
2165
+ /** Sets `backgroundColor: "rgba(196, 181, 253, 1)"`. */
2166
+ get bgPurple300(): CssBuilder<T & {
2087
2167
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2088
2168
  }>;
2089
- /** Sets `backgroundColor: "rgba(204,186,236,1)"`. */
2090
- get bgViolet400(): CssBuilder<T & {
2169
+ /** Sets `backgroundColor: "rgba(167, 139, 250, 1)"`. */
2170
+ get bgPurple400(): CssBuilder<T & {
2091
2171
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2092
2172
  }>;
2093
- /** Sets `backgroundColor: "rgba(190,167,223,1)"`. */
2094
- get bgViolet500(): CssBuilder<T & {
2173
+ /** Sets `backgroundColor: "rgba(139, 92, 246, 1)"`. */
2174
+ get bgPurple500(): CssBuilder<T & {
2095
2175
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2096
2176
  }>;
2097
- /** Sets `backgroundColor: "rgba(173,147,205,1)"`. */
2098
- get bgViolet600(): CssBuilder<T & {
2177
+ /** Sets `backgroundColor: "rgba(124, 58, 237, 1)"`. */
2178
+ get bgPurple600(): CssBuilder<T & {
2099
2179
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2100
2180
  }>;
2101
- /** Sets `backgroundColor: "rgba(153,126,181,1)"`. */
2102
- get bgViolet700(): CssBuilder<T & {
2181
+ /** Sets `backgroundColor: "rgba(109, 40, 217, 1)"`. */
2182
+ get bgPurple700(): CssBuilder<T & {
2103
2183
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2104
2184
  }>;
2105
- /** Sets `backgroundColor: "rgba(128,103,151,1)"`. */
2106
- get bgViolet800(): CssBuilder<T & {
2185
+ /** Sets `backgroundColor: "rgba(91, 33, 182, 1)"`. */
2186
+ get bgPurple800(): CssBuilder<T & {
2107
2187
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2108
2188
  }>;
2109
- /** Sets `backgroundColor: "rgba(100,78,116,1)"`. */
2110
- get bgViolet900(): CssBuilder<T & {
2189
+ /** Sets `backgroundColor: "rgba(76, 29, 149, 1)"`. */
2190
+ get bgPurple900(): CssBuilder<T & {
2191
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2192
+ }>;
2193
+ /** Sets `backgroundColor: "rgba(255, 247, 237, 1)"`. */
2194
+ get bgOrange50(): CssBuilder<T & {
2195
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2196
+ }>;
2197
+ /** Sets `backgroundColor: "rgba(255, 237, 213, 1)"`. */
2198
+ get bgOrange100(): CssBuilder<T & {
2199
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2200
+ }>;
2201
+ /** Sets `backgroundColor: "rgba(254, 215, 170, 1)"`. */
2202
+ get bgOrange200(): CssBuilder<T & {
2203
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2204
+ }>;
2205
+ /** Sets `backgroundColor: "rgba(253, 186, 116, 1)"`. */
2206
+ get bgOrange300(): CssBuilder<T & {
2207
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2208
+ }>;
2209
+ /** Sets `backgroundColor: "rgba(251, 146, 60, 1)"`. */
2210
+ get bgOrange400(): CssBuilder<T & {
2211
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2212
+ }>;
2213
+ /** Sets `backgroundColor: "rgba(249, 115, 22, 1)"`. */
2214
+ get bgOrange500(): CssBuilder<T & {
2215
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2216
+ }>;
2217
+ /** Sets `backgroundColor: "rgba(234, 88, 12, 1)"`. */
2218
+ get bgOrange600(): CssBuilder<T & {
2219
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2220
+ }>;
2221
+ /** Sets `backgroundColor: "rgba(194, 65, 12, 1)"`. */
2222
+ get bgOrange700(): CssBuilder<T & {
2223
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2224
+ }>;
2225
+ /** Sets `backgroundColor: "rgba(154, 52, 18, 1)"`. */
2226
+ get bgOrange800(): CssBuilder<T & {
2227
+ backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2228
+ }>;
2229
+ /** Sets `backgroundColor: "rgba(124, 45, 18, 1)"`. */
2230
+ get bgOrange900(): CssBuilder<T & {
2111
2231
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2112
2232
  }>;
2113
2233
  /** Sets `backgroundColor: value`. */
2114
2234
  bgColor(value: Properties["backgroundColor"]): CssBuilder<T & {
2115
2235
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2116
2236
  }>;
2117
- /** Sets `fill: "rgba(254,254,254,1)"`. */
2237
+ /** Sets `fill: "rgba(255,255,255,1)"`. */
2118
2238
  get fWhite(): CssBuilder<T & {
2119
2239
  fill: import("csstype").Property.Fill | undefined;
2120
2240
  }>;
@@ -2122,244 +2242,284 @@ declare class CssBuilder<T extends Properties> {
2122
2242
  get fTransparent(): CssBuilder<T & {
2123
2243
  fill: import("csstype").Property.Fill | undefined;
2124
2244
  }>;
2125
- /** Sets `fill: "rgba(255,253,253,1)"`. */
2245
+ /** Sets `fill: "rgba(255, 253, 253, 1)"`. */
2126
2246
  get fGray50(): CssBuilder<T & {
2127
2247
  fill: import("csstype").Property.Fill | undefined;
2128
2248
  }>;
2129
- /** Sets `fill: "rgba(247,245,245,1)"`. */
2249
+ /** Sets `fill: "rgba(247, 245, 245, 1)"`. */
2130
2250
  get fGray100(): CssBuilder<T & {
2131
2251
  fill: import("csstype").Property.Fill | undefined;
2132
2252
  }>;
2133
- /** Sets `fill: "rgba(236,235,235,1)"`. */
2253
+ /** Sets `fill: "rgba(236, 235, 235, 1)"`. */
2134
2254
  get fGray200(): CssBuilder<T & {
2135
2255
  fill: import("csstype").Property.Fill | undefined;
2136
2256
  }>;
2137
- /** Sets `fill: "rgba(221,220,220,1)"`. */
2257
+ /** Sets `fill: "rgba(221, 220, 220, 1)"`. */
2138
2258
  get fGray300(): CssBuilder<T & {
2139
2259
  fill: import("csstype").Property.Fill | undefined;
2140
2260
  }>;
2141
- /** Sets `fill: "rgba(201,201,201,1)"`. */
2261
+ /** Sets `fill: "rgba(201, 201, 201, 1)"`. */
2142
2262
  get fGray400(): CssBuilder<T & {
2143
2263
  fill: import("csstype").Property.Fill | undefined;
2144
2264
  }>;
2145
- /** Sets `fill: "rgba(175,175,175,1)"`. */
2265
+ /** Sets `fill: "rgba(175, 175, 175, 1)"`. */
2146
2266
  get fGray500(): CssBuilder<T & {
2147
2267
  fill: import("csstype").Property.Fill | undefined;
2148
2268
  }>;
2149
- /** Sets `fill: "rgba(141,141,141,1)"`. */
2269
+ /** Sets `fill: "rgba(141, 141, 141, 1)"`. */
2150
2270
  get fGray600(): CssBuilder<T & {
2151
2271
  fill: import("csstype").Property.Fill | undefined;
2152
2272
  }>;
2153
- /** Sets `fill: "rgba(100,100,100,1)"`. */
2273
+ /** Sets `fill: "rgba(100, 100, 100, 1)"`. */
2154
2274
  get fGray700(): CssBuilder<T & {
2155
2275
  fill: import("csstype").Property.Fill | undefined;
2156
2276
  }>;
2157
- /** Sets `fill: "rgba(53,53,53,1)"`. */
2277
+ /** Sets `fill: "rgba(53, 53, 53, 1)"`. */
2158
2278
  get fGray800(): CssBuilder<T & {
2159
2279
  fill: import("csstype").Property.Fill | undefined;
2160
2280
  }>;
2161
- /** Sets `fill: "rgba(36,36,36,1)"`. */
2281
+ /** Sets `fill: "rgba(36, 36, 36, 1)"`. */
2162
2282
  get fGray900(): CssBuilder<T & {
2163
2283
  fill: import("csstype").Property.Fill | undefined;
2164
2284
  }>;
2165
- /** Sets `fill: "rgba(240,249,255,1)"`. */
2166
- get fLightBlue50(): CssBuilder<T & {
2285
+ /** Sets `fill: "rgba(239, 246, 255, 1)"`. */
2286
+ get fBlue50(): CssBuilder<T & {
2167
2287
  fill: import("csstype").Property.Fill | undefined;
2168
2288
  }>;
2169
- /** Sets `fill: "rgba(224,242,254,1)"`. */
2170
- get fLightBlue100(): CssBuilder<T & {
2289
+ /** Sets `fill: "rgba(219, 234, 254, 1)"`. */
2290
+ get fBlue100(): CssBuilder<T & {
2171
2291
  fill: import("csstype").Property.Fill | undefined;
2172
2292
  }>;
2173
- /** Sets `fill: "rgba(186,230,253,1)"`. */
2174
- get fLightBlue200(): CssBuilder<T & {
2293
+ /** Sets `fill: "rgba(191, 219, 254, 1)"`. */
2294
+ get fBlue200(): CssBuilder<T & {
2175
2295
  fill: import("csstype").Property.Fill | undefined;
2176
2296
  }>;
2177
- /** Sets `fill: "rgba(125,211,252,1)"`. */
2178
- get fLightBlue300(): CssBuilder<T & {
2297
+ /** Sets `fill: "rgba(147, 197, 253, 1)"`. */
2298
+ get fBlue300(): CssBuilder<T & {
2179
2299
  fill: import("csstype").Property.Fill | undefined;
2180
2300
  }>;
2181
- /** Sets `fill: "rgba(56,189,248,1)"`. */
2182
- get fLightBlue400(): CssBuilder<T & {
2301
+ /** Sets `fill: "rgba(96, 165, 250, 1)"`. */
2302
+ get fBlue400(): CssBuilder<T & {
2183
2303
  fill: import("csstype").Property.Fill | undefined;
2184
2304
  }>;
2185
- /** Sets `fill: "rgba(14,165,233,1)"`. */
2186
- get fLightBlue500(): CssBuilder<T & {
2305
+ /** Sets `fill: "rgba(59, 130, 246, 1)"`. */
2306
+ get fBlue500(): CssBuilder<T & {
2187
2307
  fill: import("csstype").Property.Fill | undefined;
2188
2308
  }>;
2189
- /** Sets `fill: "rgba(2,143,199,1)"`. */
2190
- get fLightBlue600(): CssBuilder<T & {
2309
+ /** Sets `fill: "rgba(37, 99, 235, 1)"`. */
2310
+ get fBlue600(): CssBuilder<T & {
2191
2311
  fill: import("csstype").Property.Fill | undefined;
2192
2312
  }>;
2193
- /** Sets `fill: "rgba(3,105,161,1)"`. */
2194
- get fLightBlue700(): CssBuilder<T & {
2313
+ /** Sets `fill: "rgba(29, 78, 216, 1)"`. */
2314
+ get fBlue700(): CssBuilder<T & {
2195
2315
  fill: import("csstype").Property.Fill | undefined;
2196
2316
  }>;
2197
- /** Sets `fill: "rgba(7,89,133,1)"`. */
2198
- get fLightBlue800(): CssBuilder<T & {
2317
+ /** Sets `fill: "rgba(30, 64, 175, 1)"`. */
2318
+ get fBlue800(): CssBuilder<T & {
2199
2319
  fill: import("csstype").Property.Fill | undefined;
2200
2320
  }>;
2201
- /** Sets `fill: "rgba(12,74,110,1)"`. */
2202
- get fLightBlue900(): CssBuilder<T & {
2321
+ /** Sets `fill: "rgba(30, 58, 138, 1)"`. */
2322
+ get fBlue900(): CssBuilder<T & {
2203
2323
  fill: import("csstype").Property.Fill | undefined;
2204
2324
  }>;
2205
- /** Sets `fill: "rgba(255,242,242,1)"`. */
2325
+ /** Sets `fill: "rgba(254, 242, 242, 1)"`. */
2206
2326
  get fRed50(): CssBuilder<T & {
2207
2327
  fill: import("csstype").Property.Fill | undefined;
2208
2328
  }>;
2209
- /** Sets `fill: "rgba(253,210,209,1)"`. */
2329
+ /** Sets `fill: "rgba(254, 226, 226, 1)"`. */
2210
2330
  get fRed100(): CssBuilder<T & {
2211
2331
  fill: import("csstype").Property.Fill | undefined;
2212
2332
  }>;
2213
- /** Sets `fill: "rgba(249,181,177,1)"`. */
2333
+ /** Sets `fill: "rgba(254, 202, 202, 1)"`. */
2214
2334
  get fRed200(): CssBuilder<T & {
2215
2335
  fill: import("csstype").Property.Fill | undefined;
2216
2336
  }>;
2217
- /** Sets `fill: "rgba(242,155,148,1)"`. */
2337
+ /** Sets `fill: "rgba(252, 165, 165, 1)"`. */
2218
2338
  get fRed300(): CssBuilder<T & {
2219
2339
  fill: import("csstype").Property.Fill | undefined;
2220
2340
  }>;
2221
- /** Sets `fill: "rgba(232,133,122,1)"`. */
2341
+ /** Sets `fill: "rgba(248, 113, 113, 1)"`. */
2222
2342
  get fRed400(): CssBuilder<T & {
2223
2343
  fill: import("csstype").Property.Fill | undefined;
2224
2344
  }>;
2225
- /** Sets `fill: "rgba(218,114,100,1)"`. */
2345
+ /** Sets `fill: "rgba(239, 68, 68, 1)"`. */
2226
2346
  get fRed500(): CssBuilder<T & {
2227
2347
  fill: import("csstype").Property.Fill | undefined;
2228
2348
  }>;
2229
- /** Sets `fill: "rgba(200,98,81,1)"`. */
2349
+ /** Sets `fill: "rgba(220, 38, 38, 1)"`. */
2230
2350
  get fRed600(): CssBuilder<T & {
2231
2351
  fill: import("csstype").Property.Fill | undefined;
2232
2352
  }>;
2233
- /** Sets `fill: "rgba(176,83,73,1)"`. */
2353
+ /** Sets `fill: "rgba(185, 28, 28, 1)"`. */
2234
2354
  get fRed700(): CssBuilder<T & {
2235
2355
  fill: import("csstype").Property.Fill | undefined;
2236
2356
  }>;
2237
- /** Sets `fill: "rgba(149,68,64,1)"`. */
2357
+ /** Sets `fill: "rgba(153, 27, 27, 1)"`. */
2238
2358
  get fRed800(): CssBuilder<T & {
2239
2359
  fill: import("csstype").Property.Fill | undefined;
2240
2360
  }>;
2241
- /** Sets `fill: "rgba(120,54,54,1)"`. */
2361
+ /** Sets `fill: "rgba(127, 29, 29, 1)"`. */
2242
2362
  get fRed900(): CssBuilder<T & {
2243
2363
  fill: import("csstype").Property.Fill | undefined;
2244
2364
  }>;
2245
- /** Sets `fill: "rgba(255,254,242,1)"`. */
2365
+ /** Sets `fill: "rgba(254, 252, 232, 1)"`. */
2246
2366
  get fYellow50(): CssBuilder<T & {
2247
2367
  fill: import("csstype").Property.Fill | undefined;
2248
2368
  }>;
2249
- /** Sets `fill: "rgba(255,254,212,1)"`. */
2369
+ /** Sets `fill: "rgba(254, 249, 195, 1)"`. */
2250
2370
  get fYellow100(): CssBuilder<T & {
2251
2371
  fill: import("csstype").Property.Fill | undefined;
2252
2372
  }>;
2253
- /** Sets `fill: "rgba(255,250,180,1)"`. */
2373
+ /** Sets `fill: "rgba(254, 240, 138, 1)"`. */
2254
2374
  get fYellow200(): CssBuilder<T & {
2255
2375
  fill: import("csstype").Property.Fill | undefined;
2256
2376
  }>;
2257
- /** Sets `fill: "rgba(255,240,150,1)"`. */
2377
+ /** Sets `fill: "rgba(253, 224, 71, 1)"`. */
2258
2378
  get fYellow300(): CssBuilder<T & {
2259
2379
  fill: import("csstype").Property.Fill | undefined;
2260
2380
  }>;
2261
- /** Sets `fill: "rgba(255,225,123,1)"`. */
2381
+ /** Sets `fill: "rgba(250, 204, 21, 1)"`. */
2262
2382
  get fYellow400(): CssBuilder<T & {
2263
2383
  fill: import("csstype").Property.Fill | undefined;
2264
2384
  }>;
2265
- /** Sets `fill: "rgba(255,204,99,1)"`. */
2385
+ /** Sets `fill: "rgba(234, 179, 8, 1)"`. */
2266
2386
  get fYellow500(): CssBuilder<T & {
2267
2387
  fill: import("csstype").Property.Fill | undefined;
2268
2388
  }>;
2269
- /** Sets `fill: "rgba(246,177,78,1)"`. */
2389
+ /** Sets `fill: "rgba(202, 138, 4, 1)"`. */
2270
2390
  get fYellow600(): CssBuilder<T & {
2271
2391
  fill: import("csstype").Property.Fill | undefined;
2272
2392
  }>;
2273
- /** Sets `fill: "rgba(207,150,73,1)"`. */
2393
+ /** Sets `fill: "rgba(161, 98, 7, 1)"`. */
2274
2394
  get fYellow700(): CssBuilder<T & {
2275
2395
  fill: import("csstype").Property.Fill | undefined;
2276
2396
  }>;
2277
- /** Sets `fill: "rgba(164,120,66,1)"`. */
2397
+ /** Sets `fill: "rgba(133, 77, 14, 1)"`. */
2278
2398
  get fYellow800(): CssBuilder<T & {
2279
2399
  fill: import("csstype").Property.Fill | undefined;
2280
2400
  }>;
2281
- /** Sets `fill: "rgba(120,89,54,1)"`. */
2401
+ /** Sets `fill: "rgba(113, 63, 18, 1)"`. */
2282
2402
  get fYellow900(): CssBuilder<T & {
2283
2403
  fill: import("csstype").Property.Fill | undefined;
2284
2404
  }>;
2285
- /** Sets `fill: "rgba(250,255,250,1)"`. */
2405
+ /** Sets `fill: "rgba(236, 253, 245, 1)"`. */
2286
2406
  get fGreen50(): CssBuilder<T & {
2287
2407
  fill: import("csstype").Property.Fill | undefined;
2288
2408
  }>;
2289
- /** Sets `fill: "rgba(223,248,216,1)"`. */
2409
+ /** Sets `fill: "rgba(209, 250, 229, 1)"`. */
2290
2410
  get fGreen100(): CssBuilder<T & {
2291
2411
  fill: import("csstype").Property.Fill | undefined;
2292
2412
  }>;
2293
- /** Sets `fill: "rgba(199,239,183,1)"`. */
2413
+ /** Sets `fill: "rgba(167, 243, 208, 1)"`. */
2294
2414
  get fGreen200(): CssBuilder<T & {
2295
2415
  fill: import("csstype").Property.Fill | undefined;
2296
2416
  }>;
2297
- /** Sets `fill: "rgba(179,226,153,1)"`. */
2417
+ /** Sets `fill: "rgba(110, 231, 183, 1)"`. */
2298
2418
  get fGreen300(): CssBuilder<T & {
2299
2419
  fill: import("csstype").Property.Fill | undefined;
2300
2420
  }>;
2301
- /** Sets `fill: "rgba(163,208,126,1)"`. */
2421
+ /** Sets `fill: "rgba(52, 211, 153, 1)"`. */
2302
2422
  get fGreen400(): CssBuilder<T & {
2303
2423
  fill: import("csstype").Property.Fill | undefined;
2304
2424
  }>;
2305
- /** Sets `fill: "rgba(146,185,101,1)"`. */
2425
+ /** Sets `fill: "rgba(16, 185, 129, 1)"`. */
2306
2426
  get fGreen500(): CssBuilder<T & {
2307
2427
  fill: import("csstype").Property.Fill | undefined;
2308
2428
  }>;
2309
- /** Sets `fill: "rgba(126,156,79,1)"`. */
2429
+ /** Sets `fill: "rgba(5, 150, 105, 1)"`. */
2310
2430
  get fGreen600(): CssBuilder<T & {
2311
2431
  fill: import("csstype").Property.Fill | undefined;
2312
2432
  }>;
2313
- /** Sets `fill: "rgba(101,120,57,1)"`. */
2433
+ /** Sets `fill: "rgba(4, 120, 87, 1)"`. */
2314
2434
  get fGreen700(): CssBuilder<T & {
2315
2435
  fill: import("csstype").Property.Fill | undefined;
2316
2436
  }>;
2317
- /** Sets `fill: "rgba(64,93,44,1)"`. */
2437
+ /** Sets `fill: "rgba(6, 95, 70, 1)"`. */
2318
2438
  get fGreen800(): CssBuilder<T & {
2319
2439
  fill: import("csstype").Property.Fill | undefined;
2320
2440
  }>;
2321
- /** Sets `fill: "rgba(34,64,31,1)"`. */
2441
+ /** Sets `fill: "rgba(6, 78, 59, 1)"`. */
2322
2442
  get fGreen900(): CssBuilder<T & {
2323
2443
  fill: import("csstype").Property.Fill | undefined;
2324
2444
  }>;
2325
- /** Sets `fill: "rgba(245,243,255,1)"`. */
2326
- get fViolet50(): CssBuilder<T & {
2445
+ /** Sets `fill: "rgba(245, 243, 255, 1)"`. */
2446
+ get fPurple50(): CssBuilder<T & {
2447
+ fill: import("csstype").Property.Fill | undefined;
2448
+ }>;
2449
+ /** Sets `fill: "rgba(237, 233, 254, 1)"`. */
2450
+ get fPurple100(): CssBuilder<T & {
2451
+ fill: import("csstype").Property.Fill | undefined;
2452
+ }>;
2453
+ /** Sets `fill: "rgba(221, 214, 254, 1)"`. */
2454
+ get fPurple200(): CssBuilder<T & {
2455
+ fill: import("csstype").Property.Fill | undefined;
2456
+ }>;
2457
+ /** Sets `fill: "rgba(196, 181, 253, 1)"`. */
2458
+ get fPurple300(): CssBuilder<T & {
2459
+ fill: import("csstype").Property.Fill | undefined;
2460
+ }>;
2461
+ /** Sets `fill: "rgba(167, 139, 250, 1)"`. */
2462
+ get fPurple400(): CssBuilder<T & {
2463
+ fill: import("csstype").Property.Fill | undefined;
2464
+ }>;
2465
+ /** Sets `fill: "rgba(139, 92, 246, 1)"`. */
2466
+ get fPurple500(): CssBuilder<T & {
2467
+ fill: import("csstype").Property.Fill | undefined;
2468
+ }>;
2469
+ /** Sets `fill: "rgba(124, 58, 237, 1)"`. */
2470
+ get fPurple600(): CssBuilder<T & {
2471
+ fill: import("csstype").Property.Fill | undefined;
2472
+ }>;
2473
+ /** Sets `fill: "rgba(109, 40, 217, 1)"`. */
2474
+ get fPurple700(): CssBuilder<T & {
2475
+ fill: import("csstype").Property.Fill | undefined;
2476
+ }>;
2477
+ /** Sets `fill: "rgba(91, 33, 182, 1)"`. */
2478
+ get fPurple800(): CssBuilder<T & {
2479
+ fill: import("csstype").Property.Fill | undefined;
2480
+ }>;
2481
+ /** Sets `fill: "rgba(76, 29, 149, 1)"`. */
2482
+ get fPurple900(): CssBuilder<T & {
2483
+ fill: import("csstype").Property.Fill | undefined;
2484
+ }>;
2485
+ /** Sets `fill: "rgba(255, 247, 237, 1)"`. */
2486
+ get fOrange50(): CssBuilder<T & {
2327
2487
  fill: import("csstype").Property.Fill | undefined;
2328
2488
  }>;
2329
- /** Sets `fill: "rgba(238,234,253,1)"`. */
2330
- get fViolet100(): CssBuilder<T & {
2489
+ /** Sets `fill: "rgba(255, 237, 213, 1)"`. */
2490
+ get fOrange100(): CssBuilder<T & {
2331
2491
  fill: import("csstype").Property.Fill | undefined;
2332
2492
  }>;
2333
- /** Sets `fill: "rgba(232,225,252,1)"`. */
2334
- get fViolet200(): CssBuilder<T & {
2493
+ /** Sets `fill: "rgba(254, 215, 170, 1)"`. */
2494
+ get fOrange200(): CssBuilder<T & {
2335
2495
  fill: import("csstype").Property.Fill | undefined;
2336
2496
  }>;
2337
- /** Sets `fill: "rgba(218,205,246,1)"`. */
2338
- get fViolet300(): CssBuilder<T & {
2497
+ /** Sets `fill: "rgba(253, 186, 116, 1)"`. */
2498
+ get fOrange300(): CssBuilder<T & {
2339
2499
  fill: import("csstype").Property.Fill | undefined;
2340
2500
  }>;
2341
- /** Sets `fill: "rgba(204,186,236,1)"`. */
2342
- get fViolet400(): CssBuilder<T & {
2501
+ /** Sets `fill: "rgba(251, 146, 60, 1)"`. */
2502
+ get fOrange400(): CssBuilder<T & {
2343
2503
  fill: import("csstype").Property.Fill | undefined;
2344
2504
  }>;
2345
- /** Sets `fill: "rgba(190,167,223,1)"`. */
2346
- get fViolet500(): CssBuilder<T & {
2505
+ /** Sets `fill: "rgba(249, 115, 22, 1)"`. */
2506
+ get fOrange500(): CssBuilder<T & {
2347
2507
  fill: import("csstype").Property.Fill | undefined;
2348
2508
  }>;
2349
- /** Sets `fill: "rgba(173,147,205,1)"`. */
2350
- get fViolet600(): CssBuilder<T & {
2509
+ /** Sets `fill: "rgba(234, 88, 12, 1)"`. */
2510
+ get fOrange600(): CssBuilder<T & {
2351
2511
  fill: import("csstype").Property.Fill | undefined;
2352
2512
  }>;
2353
- /** Sets `fill: "rgba(153,126,181,1)"`. */
2354
- get fViolet700(): CssBuilder<T & {
2513
+ /** Sets `fill: "rgba(194, 65, 12, 1)"`. */
2514
+ get fOrange700(): CssBuilder<T & {
2355
2515
  fill: import("csstype").Property.Fill | undefined;
2356
2516
  }>;
2357
- /** Sets `fill: "rgba(128,103,151,1)"`. */
2358
- get fViolet800(): CssBuilder<T & {
2517
+ /** Sets `fill: "rgba(154, 52, 18, 1)"`. */
2518
+ get fOrange800(): CssBuilder<T & {
2359
2519
  fill: import("csstype").Property.Fill | undefined;
2360
2520
  }>;
2361
- /** Sets `fill: "rgba(100,78,116,1)"`. */
2362
- get fViolet900(): CssBuilder<T & {
2521
+ /** Sets `fill: "rgba(124, 45, 18, 1)"`. */
2522
+ get fOrange900(): CssBuilder<T & {
2363
2523
  fill: import("csstype").Property.Fill | undefined;
2364
2524
  }>;
2365
2525
  /** Sets `fill: value`. */
@@ -4042,68 +4202,78 @@ export declare function increment(inc: number): number;
4042
4202
  /** Convert `pixels` to a `px` units string so it's not ambiguous. */
4043
4203
  export declare function px(pixels: number): string;
4044
4204
  export declare enum Palette {
4045
- White = "rgba(254,254,254,1)",
4205
+ White = "rgba(255,255,255,1)",
4046
4206
  Transparent = "rgba(0,0,0,0)",
4047
- Gray50 = "rgba(255,253,253,1)",
4048
- Gray100 = "rgba(247,245,245,1)",
4049
- Gray200 = "rgba(236,235,235,1)",
4050
- Gray300 = "rgba(221,220,220,1)",
4051
- Gray400 = "rgba(201,201,201,1)",
4052
- Gray500 = "rgba(175,175,175,1)",
4053
- Gray600 = "rgba(141,141,141,1)",
4054
- Gray700 = "rgba(100,100,100,1)",
4055
- Gray800 = "rgba(53,53,53,1)",
4056
- Gray900 = "rgba(36,36,36,1)",
4057
- LightBlue50 = "rgba(240,249,255,1)",
4058
- LightBlue100 = "rgba(224,242,254,1)",
4059
- LightBlue200 = "rgba(186,230,253,1)",
4060
- LightBlue300 = "rgba(125,211,252,1)",
4061
- LightBlue400 = "rgba(56,189,248,1)",
4062
- LightBlue500 = "rgba(14,165,233,1)",
4063
- LightBlue600 = "rgba(2,143,199,1)",
4064
- LightBlue700 = "rgba(3,105,161,1)",
4065
- LightBlue800 = "rgba(7,89,133,1)",
4066
- LightBlue900 = "rgba(12,74,110,1)",
4067
- Red50 = "rgba(255,242,242,1)",
4068
- Red100 = "rgba(253,210,209,1)",
4069
- Red200 = "rgba(249,181,177,1)",
4070
- Red300 = "rgba(242,155,148,1)",
4071
- Red400 = "rgba(232,133,122,1)",
4072
- Red500 = "rgba(218,114,100,1)",
4073
- Red600 = "rgba(200,98,81,1)",
4074
- Red700 = "rgba(176,83,73,1)",
4075
- Red800 = "rgba(149,68,64,1)",
4076
- Red900 = "rgba(120,54,54,1)",
4077
- Yellow50 = "rgba(255,254,242,1)",
4078
- Yellow100 = "rgba(255,254,212,1)",
4079
- Yellow200 = "rgba(255,250,180,1)",
4080
- Yellow300 = "rgba(255,240,150,1)",
4081
- Yellow400 = "rgba(255,225,123,1)",
4082
- Yellow500 = "rgba(255,204,99,1)",
4083
- Yellow600 = "rgba(246,177,78,1)",
4084
- Yellow700 = "rgba(207,150,73,1)",
4085
- Yellow800 = "rgba(164,120,66,1)",
4086
- Yellow900 = "rgba(120,89,54,1)",
4087
- Green50 = "rgba(250,255,250,1)",
4088
- Green100 = "rgba(223,248,216,1)",
4089
- Green200 = "rgba(199,239,183,1)",
4090
- Green300 = "rgba(179,226,153,1)",
4091
- Green400 = "rgba(163,208,126,1)",
4092
- Green500 = "rgba(146,185,101,1)",
4093
- Green600 = "rgba(126,156,79,1)",
4094
- Green700 = "rgba(101,120,57,1)",
4095
- Green800 = "rgba(64,93,44,1)",
4096
- Green900 = "rgba(34,64,31,1)",
4097
- Violet50 = "rgba(245,243,255,1)",
4098
- Violet100 = "rgba(238,234,253,1)",
4099
- Violet200 = "rgba(232,225,252,1)",
4100
- Violet300 = "rgba(218,205,246,1)",
4101
- Violet400 = "rgba(204,186,236,1)",
4102
- Violet500 = "rgba(190,167,223,1)",
4103
- Violet600 = "rgba(173,147,205,1)",
4104
- Violet700 = "rgba(153,126,181,1)",
4105
- Violet800 = "rgba(128,103,151,1)",
4106
- Violet900 = "rgba(100,78,116,1)"
4207
+ Gray50 = "rgba(255, 253, 253, 1)",
4208
+ Gray100 = "rgba(247, 245, 245, 1)",
4209
+ Gray200 = "rgba(236, 235, 235, 1)",
4210
+ Gray300 = "rgba(221, 220, 220, 1)",
4211
+ Gray400 = "rgba(201, 201, 201, 1)",
4212
+ Gray500 = "rgba(175, 175, 175, 1)",
4213
+ Gray600 = "rgba(141, 141, 141, 1)",
4214
+ Gray700 = "rgba(100, 100, 100, 1)",
4215
+ Gray800 = "rgba(53, 53, 53, 1)",
4216
+ Gray900 = "rgba(36, 36, 36, 1)",
4217
+ Blue50 = "rgba(239, 246, 255, 1)",
4218
+ Blue100 = "rgba(219, 234, 254, 1)",
4219
+ Blue200 = "rgba(191, 219, 254, 1)",
4220
+ Blue300 = "rgba(147, 197, 253, 1)",
4221
+ Blue400 = "rgba(96, 165, 250, 1)",
4222
+ Blue500 = "rgba(59, 130, 246, 1)",
4223
+ Blue600 = "rgba(37, 99, 235, 1)",
4224
+ Blue700 = "rgba(29, 78, 216, 1)",
4225
+ Blue800 = "rgba(30, 64, 175, 1)",
4226
+ Blue900 = "rgba(30, 58, 138, 1)",
4227
+ Red50 = "rgba(254, 242, 242, 1)",
4228
+ Red100 = "rgba(254, 226, 226, 1)",
4229
+ Red200 = "rgba(254, 202, 202, 1)",
4230
+ Red300 = "rgba(252, 165, 165, 1)",
4231
+ Red400 = "rgba(248, 113, 113, 1)",
4232
+ Red500 = "rgba(239, 68, 68, 1)",
4233
+ Red600 = "rgba(220, 38, 38, 1)",
4234
+ Red700 = "rgba(185, 28, 28, 1)",
4235
+ Red800 = "rgba(153, 27, 27, 1)",
4236
+ Red900 = "rgba(127, 29, 29, 1)",
4237
+ Yellow50 = "rgba(254, 252, 232, 1)",
4238
+ Yellow100 = "rgba(254, 249, 195, 1)",
4239
+ Yellow200 = "rgba(254, 240, 138, 1)",
4240
+ Yellow300 = "rgba(253, 224, 71, 1)",
4241
+ Yellow400 = "rgba(250, 204, 21, 1)",
4242
+ Yellow500 = "rgba(234, 179, 8, 1)",
4243
+ Yellow600 = "rgba(202, 138, 4, 1)",
4244
+ Yellow700 = "rgba(161, 98, 7, 1)",
4245
+ Yellow800 = "rgba(133, 77, 14, 1)",
4246
+ Yellow900 = "rgba(113, 63, 18, 1)",
4247
+ Green50 = "rgba(236, 253, 245, 1)",
4248
+ Green100 = "rgba(209, 250, 229, 1)",
4249
+ Green200 = "rgba(167, 243, 208, 1)",
4250
+ Green300 = "rgba(110, 231, 183, 1)",
4251
+ Green400 = "rgba(52, 211, 153, 1)",
4252
+ Green500 = "rgba(16, 185, 129, 1)",
4253
+ Green600 = "rgba(5, 150, 105, 1)",
4254
+ Green700 = "rgba(4, 120, 87, 1)",
4255
+ Green800 = "rgba(6, 95, 70, 1)",
4256
+ Green900 = "rgba(6, 78, 59, 1)",
4257
+ Purple50 = "rgba(245, 243, 255, 1)",
4258
+ Purple100 = "rgba(237, 233, 254, 1)",
4259
+ Purple200 = "rgba(221, 214, 254, 1)",
4260
+ Purple300 = "rgba(196, 181, 253, 1)",
4261
+ Purple400 = "rgba(167, 139, 250, 1)",
4262
+ Purple500 = "rgba(139, 92, 246, 1)",
4263
+ Purple600 = "rgba(124, 58, 237, 1)",
4264
+ Purple700 = "rgba(109, 40, 217, 1)",
4265
+ Purple800 = "rgba(91, 33, 182, 1)",
4266
+ Purple900 = "rgba(76, 29, 149, 1)",
4267
+ Orange50 = "rgba(255, 247, 237, 1)",
4268
+ Orange100 = "rgba(255, 237, 213, 1)",
4269
+ Orange200 = "rgba(254, 215, 170, 1)",
4270
+ Orange300 = "rgba(253, 186, 116, 1)",
4271
+ Orange400 = "rgba(251, 146, 60, 1)",
4272
+ Orange500 = "rgba(249, 115, 22, 1)",
4273
+ Orange600 = "rgba(234, 88, 12, 1)",
4274
+ Orange700 = "rgba(194, 65, 12, 1)",
4275
+ Orange800 = "rgba(154, 52, 18, 1)",
4276
+ Orange900 = "rgba(124, 45, 18, 1)"
4107
4277
  }
4108
4278
  /** A shortcut for defining Xss types. */
4109
4279
  export type Xss<P extends keyof Properties> = Pick<Properties, P>;