@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.js CHANGED
@@ -43,253 +43,293 @@ class CssBuilder {
43
43
  return this.add("borderStyle", "none").add("borderWidth", "0");
44
44
  }
45
45
  // borderColor
46
- /** Sets `borderColor: "rgba(254,254,254,1)"`. */
46
+ /** Sets `borderColor: "rgba(255,255,255,1)"`. */
47
47
  get bWhite() {
48
- return this.add("borderColor", "rgba(254,254,254,1)");
48
+ return this.add("borderColor", "rgba(255,255,255,1)");
49
49
  }
50
50
  /** Sets `borderColor: "rgba(0,0,0,0)"`. */
51
51
  get bTransparent() {
52
52
  return this.add("borderColor", "rgba(0,0,0,0)");
53
53
  }
54
- /** Sets `borderColor: "rgba(255,253,253,1)"`. */
54
+ /** Sets `borderColor: "rgba(255, 253, 253, 1)"`. */
55
55
  get bGray50() {
56
- return this.add("borderColor", "rgba(255,253,253,1)");
56
+ return this.add("borderColor", "rgba(255, 253, 253, 1)");
57
57
  }
58
- /** Sets `borderColor: "rgba(247,245,245,1)"`. */
58
+ /** Sets `borderColor: "rgba(247, 245, 245, 1)"`. */
59
59
  get bGray100() {
60
- return this.add("borderColor", "rgba(247,245,245,1)");
60
+ return this.add("borderColor", "rgba(247, 245, 245, 1)");
61
61
  }
62
- /** Sets `borderColor: "rgba(236,235,235,1)"`. */
62
+ /** Sets `borderColor: "rgba(236, 235, 235, 1)"`. */
63
63
  get bGray200() {
64
- return this.add("borderColor", "rgba(236,235,235,1)");
64
+ return this.add("borderColor", "rgba(236, 235, 235, 1)");
65
65
  }
66
- /** Sets `borderColor: "rgba(221,220,220,1)"`. */
66
+ /** Sets `borderColor: "rgba(221, 220, 220, 1)"`. */
67
67
  get bGray300() {
68
- return this.add("borderColor", "rgba(221,220,220,1)");
68
+ return this.add("borderColor", "rgba(221, 220, 220, 1)");
69
69
  }
70
- /** Sets `borderColor: "rgba(201,201,201,1)"`. */
70
+ /** Sets `borderColor: "rgba(201, 201, 201, 1)"`. */
71
71
  get bGray400() {
72
- return this.add("borderColor", "rgba(201,201,201,1)");
72
+ return this.add("borderColor", "rgba(201, 201, 201, 1)");
73
73
  }
74
- /** Sets `borderColor: "rgba(175,175,175,1)"`. */
74
+ /** Sets `borderColor: "rgba(175, 175, 175, 1)"`. */
75
75
  get bGray500() {
76
- return this.add("borderColor", "rgba(175,175,175,1)");
76
+ return this.add("borderColor", "rgba(175, 175, 175, 1)");
77
77
  }
78
- /** Sets `borderColor: "rgba(141,141,141,1)"`. */
78
+ /** Sets `borderColor: "rgba(141, 141, 141, 1)"`. */
79
79
  get bGray600() {
80
- return this.add("borderColor", "rgba(141,141,141,1)");
80
+ return this.add("borderColor", "rgba(141, 141, 141, 1)");
81
81
  }
82
- /** Sets `borderColor: "rgba(100,100,100,1)"`. */
82
+ /** Sets `borderColor: "rgba(100, 100, 100, 1)"`. */
83
83
  get bGray700() {
84
- return this.add("borderColor", "rgba(100,100,100,1)");
84
+ return this.add("borderColor", "rgba(100, 100, 100, 1)");
85
85
  }
86
- /** Sets `borderColor: "rgba(53,53,53,1)"`. */
86
+ /** Sets `borderColor: "rgba(53, 53, 53, 1)"`. */
87
87
  get bGray800() {
88
- return this.add("borderColor", "rgba(53,53,53,1)");
88
+ return this.add("borderColor", "rgba(53, 53, 53, 1)");
89
89
  }
90
- /** Sets `borderColor: "rgba(36,36,36,1)"`. */
90
+ /** Sets `borderColor: "rgba(36, 36, 36, 1)"`. */
91
91
  get bGray900() {
92
- return this.add("borderColor", "rgba(36,36,36,1)");
92
+ return this.add("borderColor", "rgba(36, 36, 36, 1)");
93
93
  }
94
- /** Sets `borderColor: "rgba(240,249,255,1)"`. */
95
- get bLightBlue50() {
96
- return this.add("borderColor", "rgba(240,249,255,1)");
94
+ /** Sets `borderColor: "rgba(239, 246, 255, 1)"`. */
95
+ get bBlue50() {
96
+ return this.add("borderColor", "rgba(239, 246, 255, 1)");
97
97
  }
98
- /** Sets `borderColor: "rgba(224,242,254,1)"`. */
99
- get bLightBlue100() {
100
- return this.add("borderColor", "rgba(224,242,254,1)");
98
+ /** Sets `borderColor: "rgba(219, 234, 254, 1)"`. */
99
+ get bBlue100() {
100
+ return this.add("borderColor", "rgba(219, 234, 254, 1)");
101
101
  }
102
- /** Sets `borderColor: "rgba(186,230,253,1)"`. */
103
- get bLightBlue200() {
104
- return this.add("borderColor", "rgba(186,230,253,1)");
102
+ /** Sets `borderColor: "rgba(191, 219, 254, 1)"`. */
103
+ get bBlue200() {
104
+ return this.add("borderColor", "rgba(191, 219, 254, 1)");
105
105
  }
106
- /** Sets `borderColor: "rgba(125,211,252,1)"`. */
107
- get bLightBlue300() {
108
- return this.add("borderColor", "rgba(125,211,252,1)");
106
+ /** Sets `borderColor: "rgba(147, 197, 253, 1)"`. */
107
+ get bBlue300() {
108
+ return this.add("borderColor", "rgba(147, 197, 253, 1)");
109
109
  }
110
- /** Sets `borderColor: "rgba(56,189,248,1)"`. */
111
- get bLightBlue400() {
112
- return this.add("borderColor", "rgba(56,189,248,1)");
110
+ /** Sets `borderColor: "rgba(96, 165, 250, 1)"`. */
111
+ get bBlue400() {
112
+ return this.add("borderColor", "rgba(96, 165, 250, 1)");
113
113
  }
114
- /** Sets `borderColor: "rgba(14,165,233,1)"`. */
115
- get bLightBlue500() {
116
- return this.add("borderColor", "rgba(14,165,233,1)");
114
+ /** Sets `borderColor: "rgba(59, 130, 246, 1)"`. */
115
+ get bBlue500() {
116
+ return this.add("borderColor", "rgba(59, 130, 246, 1)");
117
117
  }
118
- /** Sets `borderColor: "rgba(2,143,199,1)"`. */
119
- get bLightBlue600() {
120
- return this.add("borderColor", "rgba(2,143,199,1)");
118
+ /** Sets `borderColor: "rgba(37, 99, 235, 1)"`. */
119
+ get bBlue600() {
120
+ return this.add("borderColor", "rgba(37, 99, 235, 1)");
121
121
  }
122
- /** Sets `borderColor: "rgba(3,105,161,1)"`. */
123
- get bLightBlue700() {
124
- return this.add("borderColor", "rgba(3,105,161,1)");
122
+ /** Sets `borderColor: "rgba(29, 78, 216, 1)"`. */
123
+ get bBlue700() {
124
+ return this.add("borderColor", "rgba(29, 78, 216, 1)");
125
125
  }
126
- /** Sets `borderColor: "rgba(7,89,133,1)"`. */
127
- get bLightBlue800() {
128
- return this.add("borderColor", "rgba(7,89,133,1)");
126
+ /** Sets `borderColor: "rgba(30, 64, 175, 1)"`. */
127
+ get bBlue800() {
128
+ return this.add("borderColor", "rgba(30, 64, 175, 1)");
129
129
  }
130
- /** Sets `borderColor: "rgba(12,74,110,1)"`. */
131
- get bLightBlue900() {
132
- return this.add("borderColor", "rgba(12,74,110,1)");
130
+ /** Sets `borderColor: "rgba(30, 58, 138, 1)"`. */
131
+ get bBlue900() {
132
+ return this.add("borderColor", "rgba(30, 58, 138, 1)");
133
133
  }
134
- /** Sets `borderColor: "rgba(255,242,242,1)"`. */
134
+ /** Sets `borderColor: "rgba(254, 242, 242, 1)"`. */
135
135
  get bRed50() {
136
- return this.add("borderColor", "rgba(255,242,242,1)");
136
+ return this.add("borderColor", "rgba(254, 242, 242, 1)");
137
137
  }
138
- /** Sets `borderColor: "rgba(253,210,209,1)"`. */
138
+ /** Sets `borderColor: "rgba(254, 226, 226, 1)"`. */
139
139
  get bRed100() {
140
- return this.add("borderColor", "rgba(253,210,209,1)");
140
+ return this.add("borderColor", "rgba(254, 226, 226, 1)");
141
141
  }
142
- /** Sets `borderColor: "rgba(249,181,177,1)"`. */
142
+ /** Sets `borderColor: "rgba(254, 202, 202, 1)"`. */
143
143
  get bRed200() {
144
- return this.add("borderColor", "rgba(249,181,177,1)");
144
+ return this.add("borderColor", "rgba(254, 202, 202, 1)");
145
145
  }
146
- /** Sets `borderColor: "rgba(242,155,148,1)"`. */
146
+ /** Sets `borderColor: "rgba(252, 165, 165, 1)"`. */
147
147
  get bRed300() {
148
- return this.add("borderColor", "rgba(242,155,148,1)");
148
+ return this.add("borderColor", "rgba(252, 165, 165, 1)");
149
149
  }
150
- /** Sets `borderColor: "rgba(232,133,122,1)"`. */
150
+ /** Sets `borderColor: "rgba(248, 113, 113, 1)"`. */
151
151
  get bRed400() {
152
- return this.add("borderColor", "rgba(232,133,122,1)");
152
+ return this.add("borderColor", "rgba(248, 113, 113, 1)");
153
153
  }
154
- /** Sets `borderColor: "rgba(218,114,100,1)"`. */
154
+ /** Sets `borderColor: "rgba(239, 68, 68, 1)"`. */
155
155
  get bRed500() {
156
- return this.add("borderColor", "rgba(218,114,100,1)");
156
+ return this.add("borderColor", "rgba(239, 68, 68, 1)");
157
157
  }
158
- /** Sets `borderColor: "rgba(200,98,81,1)"`. */
158
+ /** Sets `borderColor: "rgba(220, 38, 38, 1)"`. */
159
159
  get bRed600() {
160
- return this.add("borderColor", "rgba(200,98,81,1)");
160
+ return this.add("borderColor", "rgba(220, 38, 38, 1)");
161
161
  }
162
- /** Sets `borderColor: "rgba(176,83,73,1)"`. */
162
+ /** Sets `borderColor: "rgba(185, 28, 28, 1)"`. */
163
163
  get bRed700() {
164
- return this.add("borderColor", "rgba(176,83,73,1)");
164
+ return this.add("borderColor", "rgba(185, 28, 28, 1)");
165
165
  }
166
- /** Sets `borderColor: "rgba(149,68,64,1)"`. */
166
+ /** Sets `borderColor: "rgba(153, 27, 27, 1)"`. */
167
167
  get bRed800() {
168
- return this.add("borderColor", "rgba(149,68,64,1)");
168
+ return this.add("borderColor", "rgba(153, 27, 27, 1)");
169
169
  }
170
- /** Sets `borderColor: "rgba(120,54,54,1)"`. */
170
+ /** Sets `borderColor: "rgba(127, 29, 29, 1)"`. */
171
171
  get bRed900() {
172
- return this.add("borderColor", "rgba(120,54,54,1)");
172
+ return this.add("borderColor", "rgba(127, 29, 29, 1)");
173
173
  }
174
- /** Sets `borderColor: "rgba(255,254,242,1)"`. */
174
+ /** Sets `borderColor: "rgba(254, 252, 232, 1)"`. */
175
175
  get bYellow50() {
176
- return this.add("borderColor", "rgba(255,254,242,1)");
176
+ return this.add("borderColor", "rgba(254, 252, 232, 1)");
177
177
  }
178
- /** Sets `borderColor: "rgba(255,254,212,1)"`. */
178
+ /** Sets `borderColor: "rgba(254, 249, 195, 1)"`. */
179
179
  get bYellow100() {
180
- return this.add("borderColor", "rgba(255,254,212,1)");
180
+ return this.add("borderColor", "rgba(254, 249, 195, 1)");
181
181
  }
182
- /** Sets `borderColor: "rgba(255,250,180,1)"`. */
182
+ /** Sets `borderColor: "rgba(254, 240, 138, 1)"`. */
183
183
  get bYellow200() {
184
- return this.add("borderColor", "rgba(255,250,180,1)");
184
+ return this.add("borderColor", "rgba(254, 240, 138, 1)");
185
185
  }
186
- /** Sets `borderColor: "rgba(255,240,150,1)"`. */
186
+ /** Sets `borderColor: "rgba(253, 224, 71, 1)"`. */
187
187
  get bYellow300() {
188
- return this.add("borderColor", "rgba(255,240,150,1)");
188
+ return this.add("borderColor", "rgba(253, 224, 71, 1)");
189
189
  }
190
- /** Sets `borderColor: "rgba(255,225,123,1)"`. */
190
+ /** Sets `borderColor: "rgba(250, 204, 21, 1)"`. */
191
191
  get bYellow400() {
192
- return this.add("borderColor", "rgba(255,225,123,1)");
192
+ return this.add("borderColor", "rgba(250, 204, 21, 1)");
193
193
  }
194
- /** Sets `borderColor: "rgba(255,204,99,1)"`. */
194
+ /** Sets `borderColor: "rgba(234, 179, 8, 1)"`. */
195
195
  get bYellow500() {
196
- return this.add("borderColor", "rgba(255,204,99,1)");
196
+ return this.add("borderColor", "rgba(234, 179, 8, 1)");
197
197
  }
198
- /** Sets `borderColor: "rgba(246,177,78,1)"`. */
198
+ /** Sets `borderColor: "rgba(202, 138, 4, 1)"`. */
199
199
  get bYellow600() {
200
- return this.add("borderColor", "rgba(246,177,78,1)");
200
+ return this.add("borderColor", "rgba(202, 138, 4, 1)");
201
201
  }
202
- /** Sets `borderColor: "rgba(207,150,73,1)"`. */
202
+ /** Sets `borderColor: "rgba(161, 98, 7, 1)"`. */
203
203
  get bYellow700() {
204
- return this.add("borderColor", "rgba(207,150,73,1)");
204
+ return this.add("borderColor", "rgba(161, 98, 7, 1)");
205
205
  }
206
- /** Sets `borderColor: "rgba(164,120,66,1)"`. */
206
+ /** Sets `borderColor: "rgba(133, 77, 14, 1)"`. */
207
207
  get bYellow800() {
208
- return this.add("borderColor", "rgba(164,120,66,1)");
208
+ return this.add("borderColor", "rgba(133, 77, 14, 1)");
209
209
  }
210
- /** Sets `borderColor: "rgba(120,89,54,1)"`. */
210
+ /** Sets `borderColor: "rgba(113, 63, 18, 1)"`. */
211
211
  get bYellow900() {
212
- return this.add("borderColor", "rgba(120,89,54,1)");
212
+ return this.add("borderColor", "rgba(113, 63, 18, 1)");
213
213
  }
214
- /** Sets `borderColor: "rgba(250,255,250,1)"`. */
214
+ /** Sets `borderColor: "rgba(236, 253, 245, 1)"`. */
215
215
  get bGreen50() {
216
- return this.add("borderColor", "rgba(250,255,250,1)");
216
+ return this.add("borderColor", "rgba(236, 253, 245, 1)");
217
217
  }
218
- /** Sets `borderColor: "rgba(223,248,216,1)"`. */
218
+ /** Sets `borderColor: "rgba(209, 250, 229, 1)"`. */
219
219
  get bGreen100() {
220
- return this.add("borderColor", "rgba(223,248,216,1)");
220
+ return this.add("borderColor", "rgba(209, 250, 229, 1)");
221
221
  }
222
- /** Sets `borderColor: "rgba(199,239,183,1)"`. */
222
+ /** Sets `borderColor: "rgba(167, 243, 208, 1)"`. */
223
223
  get bGreen200() {
224
- return this.add("borderColor", "rgba(199,239,183,1)");
224
+ return this.add("borderColor", "rgba(167, 243, 208, 1)");
225
225
  }
226
- /** Sets `borderColor: "rgba(179,226,153,1)"`. */
226
+ /** Sets `borderColor: "rgba(110, 231, 183, 1)"`. */
227
227
  get bGreen300() {
228
- return this.add("borderColor", "rgba(179,226,153,1)");
228
+ return this.add("borderColor", "rgba(110, 231, 183, 1)");
229
229
  }
230
- /** Sets `borderColor: "rgba(163,208,126,1)"`. */
230
+ /** Sets `borderColor: "rgba(52, 211, 153, 1)"`. */
231
231
  get bGreen400() {
232
- return this.add("borderColor", "rgba(163,208,126,1)");
232
+ return this.add("borderColor", "rgba(52, 211, 153, 1)");
233
233
  }
234
- /** Sets `borderColor: "rgba(146,185,101,1)"`. */
234
+ /** Sets `borderColor: "rgba(16, 185, 129, 1)"`. */
235
235
  get bGreen500() {
236
- return this.add("borderColor", "rgba(146,185,101,1)");
236
+ return this.add("borderColor", "rgba(16, 185, 129, 1)");
237
237
  }
238
- /** Sets `borderColor: "rgba(126,156,79,1)"`. */
238
+ /** Sets `borderColor: "rgba(5, 150, 105, 1)"`. */
239
239
  get bGreen600() {
240
- return this.add("borderColor", "rgba(126,156,79,1)");
240
+ return this.add("borderColor", "rgba(5, 150, 105, 1)");
241
241
  }
242
- /** Sets `borderColor: "rgba(101,120,57,1)"`. */
242
+ /** Sets `borderColor: "rgba(4, 120, 87, 1)"`. */
243
243
  get bGreen700() {
244
- return this.add("borderColor", "rgba(101,120,57,1)");
244
+ return this.add("borderColor", "rgba(4, 120, 87, 1)");
245
245
  }
246
- /** Sets `borderColor: "rgba(64,93,44,1)"`. */
246
+ /** Sets `borderColor: "rgba(6, 95, 70, 1)"`. */
247
247
  get bGreen800() {
248
- return this.add("borderColor", "rgba(64,93,44,1)");
248
+ return this.add("borderColor", "rgba(6, 95, 70, 1)");
249
249
  }
250
- /** Sets `borderColor: "rgba(34,64,31,1)"`. */
250
+ /** Sets `borderColor: "rgba(6, 78, 59, 1)"`. */
251
251
  get bGreen900() {
252
- return this.add("borderColor", "rgba(34,64,31,1)");
252
+ return this.add("borderColor", "rgba(6, 78, 59, 1)");
253
253
  }
254
- /** Sets `borderColor: "rgba(245,243,255,1)"`. */
255
- get bViolet50() {
256
- return this.add("borderColor", "rgba(245,243,255,1)");
254
+ /** Sets `borderColor: "rgba(245, 243, 255, 1)"`. */
255
+ get bPurple50() {
256
+ return this.add("borderColor", "rgba(245, 243, 255, 1)");
257
257
  }
258
- /** Sets `borderColor: "rgba(238,234,253,1)"`. */
259
- get bViolet100() {
260
- return this.add("borderColor", "rgba(238,234,253,1)");
258
+ /** Sets `borderColor: "rgba(237, 233, 254, 1)"`. */
259
+ get bPurple100() {
260
+ return this.add("borderColor", "rgba(237, 233, 254, 1)");
261
261
  }
262
- /** Sets `borderColor: "rgba(232,225,252,1)"`. */
263
- get bViolet200() {
264
- return this.add("borderColor", "rgba(232,225,252,1)");
262
+ /** Sets `borderColor: "rgba(221, 214, 254, 1)"`. */
263
+ get bPurple200() {
264
+ return this.add("borderColor", "rgba(221, 214, 254, 1)");
265
265
  }
266
- /** Sets `borderColor: "rgba(218,205,246,1)"`. */
267
- get bViolet300() {
268
- return this.add("borderColor", "rgba(218,205,246,1)");
266
+ /** Sets `borderColor: "rgba(196, 181, 253, 1)"`. */
267
+ get bPurple300() {
268
+ return this.add("borderColor", "rgba(196, 181, 253, 1)");
269
269
  }
270
- /** Sets `borderColor: "rgba(204,186,236,1)"`. */
271
- get bViolet400() {
272
- return this.add("borderColor", "rgba(204,186,236,1)");
270
+ /** Sets `borderColor: "rgba(167, 139, 250, 1)"`. */
271
+ get bPurple400() {
272
+ return this.add("borderColor", "rgba(167, 139, 250, 1)");
273
273
  }
274
- /** Sets `borderColor: "rgba(190,167,223,1)"`. */
275
- get bViolet500() {
276
- return this.add("borderColor", "rgba(190,167,223,1)");
274
+ /** Sets `borderColor: "rgba(139, 92, 246, 1)"`. */
275
+ get bPurple500() {
276
+ return this.add("borderColor", "rgba(139, 92, 246, 1)");
277
277
  }
278
- /** Sets `borderColor: "rgba(173,147,205,1)"`. */
279
- get bViolet600() {
280
- return this.add("borderColor", "rgba(173,147,205,1)");
278
+ /** Sets `borderColor: "rgba(124, 58, 237, 1)"`. */
279
+ get bPurple600() {
280
+ return this.add("borderColor", "rgba(124, 58, 237, 1)");
281
281
  }
282
- /** Sets `borderColor: "rgba(153,126,181,1)"`. */
283
- get bViolet700() {
284
- return this.add("borderColor", "rgba(153,126,181,1)");
282
+ /** Sets `borderColor: "rgba(109, 40, 217, 1)"`. */
283
+ get bPurple700() {
284
+ return this.add("borderColor", "rgba(109, 40, 217, 1)");
285
285
  }
286
- /** Sets `borderColor: "rgba(128,103,151,1)"`. */
287
- get bViolet800() {
288
- return this.add("borderColor", "rgba(128,103,151,1)");
286
+ /** Sets `borderColor: "rgba(91, 33, 182, 1)"`. */
287
+ get bPurple800() {
288
+ return this.add("borderColor", "rgba(91, 33, 182, 1)");
289
289
  }
290
- /** Sets `borderColor: "rgba(100,78,116,1)"`. */
291
- get bViolet900() {
292
- return this.add("borderColor", "rgba(100,78,116,1)");
290
+ /** Sets `borderColor: "rgba(76, 29, 149, 1)"`. */
291
+ get bPurple900() {
292
+ return this.add("borderColor", "rgba(76, 29, 149, 1)");
293
+ }
294
+ /** Sets `borderColor: "rgba(255, 247, 237, 1)"`. */
295
+ get bOrange50() {
296
+ return this.add("borderColor", "rgba(255, 247, 237, 1)");
297
+ }
298
+ /** Sets `borderColor: "rgba(255, 237, 213, 1)"`. */
299
+ get bOrange100() {
300
+ return this.add("borderColor", "rgba(255, 237, 213, 1)");
301
+ }
302
+ /** Sets `borderColor: "rgba(254, 215, 170, 1)"`. */
303
+ get bOrange200() {
304
+ return this.add("borderColor", "rgba(254, 215, 170, 1)");
305
+ }
306
+ /** Sets `borderColor: "rgba(253, 186, 116, 1)"`. */
307
+ get bOrange300() {
308
+ return this.add("borderColor", "rgba(253, 186, 116, 1)");
309
+ }
310
+ /** Sets `borderColor: "rgba(251, 146, 60, 1)"`. */
311
+ get bOrange400() {
312
+ return this.add("borderColor", "rgba(251, 146, 60, 1)");
313
+ }
314
+ /** Sets `borderColor: "rgba(249, 115, 22, 1)"`. */
315
+ get bOrange500() {
316
+ return this.add("borderColor", "rgba(249, 115, 22, 1)");
317
+ }
318
+ /** Sets `borderColor: "rgba(234, 88, 12, 1)"`. */
319
+ get bOrange600() {
320
+ return this.add("borderColor", "rgba(234, 88, 12, 1)");
321
+ }
322
+ /** Sets `borderColor: "rgba(194, 65, 12, 1)"`. */
323
+ get bOrange700() {
324
+ return this.add("borderColor", "rgba(194, 65, 12, 1)");
325
+ }
326
+ /** Sets `borderColor: "rgba(154, 52, 18, 1)"`. */
327
+ get bOrange800() {
328
+ return this.add("borderColor", "rgba(154, 52, 18, 1)");
329
+ }
330
+ /** Sets `borderColor: "rgba(124, 45, 18, 1)"`. */
331
+ get bOrange900() {
332
+ return this.add("borderColor", "rgba(124, 45, 18, 1)");
293
333
  }
294
334
  /** Sets `borderColor: value`. */
295
335
  bc(value) {
@@ -383,13 +423,13 @@ class CssBuilder {
383
423
  get bshHover() {
384
424
  return this.add("boxShadow", "0px 4px 8px rgba(53, 53, 53, 0.1), 0px 2px 24px rgba(53, 53, 53, 0.08);");
385
425
  }
386
- /** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(3,105,161,1)"`. */
426
+ /** Sets `boxShadow: "0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 0px 4px rgba(29, 78, 216, 1)"`. */
387
427
  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)");
428
+ return this.add("boxShadow", "0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 0px 4px rgba(29, 78, 216, 1)");
389
429
  }
390
- /** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(149,68,64,1)"`. */
430
+ /** Sets `boxShadow: "0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 0px 4px rgba(153, 27, 27, 1)"`. */
391
431
  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)");
432
+ return this.add("boxShadow", "0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 0px 4px rgba(153, 27, 27, 1)");
393
433
  }
394
434
  /** Sets `boxShadow: "0px 20px 25px -5px rgba(0,0,0,0.1), 0px 10px 10px -5px rgba(0,0,0,0.04)"`. */
395
435
  get bshModal() {
@@ -1566,757 +1606,877 @@ class CssBuilder {
1566
1606
  return this.add("position", value);
1567
1607
  }
1568
1608
  // skins
1569
- /** Sets `color: "rgba(254,254,254,1)"`. */
1609
+ /** Sets `color: "rgba(255,255,255,1)"`. */
1570
1610
  get white() {
1571
- return this.add("color", "rgba(254,254,254,1)");
1611
+ return this.add("color", "rgba(255,255,255,1)");
1572
1612
  }
1573
1613
  /** Sets `color: "rgba(0,0,0,0)"`. */
1574
1614
  get transparent() {
1575
1615
  return this.add("color", "rgba(0,0,0,0)");
1576
1616
  }
1577
- /** Sets `color: "rgba(255,253,253,1)"`. */
1617
+ /** Sets `color: "rgba(255, 253, 253, 1)"`. */
1578
1618
  get gray50() {
1579
- return this.add("color", "rgba(255,253,253,1)");
1619
+ return this.add("color", "rgba(255, 253, 253, 1)");
1580
1620
  }
1581
- /** Sets `color: "rgba(247,245,245,1)"`. */
1621
+ /** Sets `color: "rgba(247, 245, 245, 1)"`. */
1582
1622
  get gray100() {
1583
- return this.add("color", "rgba(247,245,245,1)");
1623
+ return this.add("color", "rgba(247, 245, 245, 1)");
1584
1624
  }
1585
- /** Sets `color: "rgba(236,235,235,1)"`. */
1625
+ /** Sets `color: "rgba(236, 235, 235, 1)"`. */
1586
1626
  get gray200() {
1587
- return this.add("color", "rgba(236,235,235,1)");
1627
+ return this.add("color", "rgba(236, 235, 235, 1)");
1588
1628
  }
1589
- /** Sets `color: "rgba(221,220,220,1)"`. */
1629
+ /** Sets `color: "rgba(221, 220, 220, 1)"`. */
1590
1630
  get gray300() {
1591
- return this.add("color", "rgba(221,220,220,1)");
1631
+ return this.add("color", "rgba(221, 220, 220, 1)");
1592
1632
  }
1593
- /** Sets `color: "rgba(201,201,201,1)"`. */
1633
+ /** Sets `color: "rgba(201, 201, 201, 1)"`. */
1594
1634
  get gray400() {
1595
- return this.add("color", "rgba(201,201,201,1)");
1635
+ return this.add("color", "rgba(201, 201, 201, 1)");
1596
1636
  }
1597
- /** Sets `color: "rgba(175,175,175,1)"`. */
1637
+ /** Sets `color: "rgba(175, 175, 175, 1)"`. */
1598
1638
  get gray500() {
1599
- return this.add("color", "rgba(175,175,175,1)");
1639
+ return this.add("color", "rgba(175, 175, 175, 1)");
1600
1640
  }
1601
- /** Sets `color: "rgba(141,141,141,1)"`. */
1641
+ /** Sets `color: "rgba(141, 141, 141, 1)"`. */
1602
1642
  get gray600() {
1603
- return this.add("color", "rgba(141,141,141,1)");
1643
+ return this.add("color", "rgba(141, 141, 141, 1)");
1604
1644
  }
1605
- /** Sets `color: "rgba(100,100,100,1)"`. */
1645
+ /** Sets `color: "rgba(100, 100, 100, 1)"`. */
1606
1646
  get gray700() {
1607
- return this.add("color", "rgba(100,100,100,1)");
1647
+ return this.add("color", "rgba(100, 100, 100, 1)");
1608
1648
  }
1609
- /** Sets `color: "rgba(53,53,53,1)"`. */
1649
+ /** Sets `color: "rgba(53, 53, 53, 1)"`. */
1610
1650
  get gray800() {
1611
- return this.add("color", "rgba(53,53,53,1)");
1651
+ return this.add("color", "rgba(53, 53, 53, 1)");
1612
1652
  }
1613
- /** Sets `color: "rgba(36,36,36,1)"`. */
1653
+ /** Sets `color: "rgba(36, 36, 36, 1)"`. */
1614
1654
  get gray900() {
1615
- return this.add("color", "rgba(36,36,36,1)");
1655
+ return this.add("color", "rgba(36, 36, 36, 1)");
1616
1656
  }
1617
- /** Sets `color: "rgba(240,249,255,1)"`. */
1618
- get lightBlue50() {
1619
- return this.add("color", "rgba(240,249,255,1)");
1657
+ /** Sets `color: "rgba(239, 246, 255, 1)"`. */
1658
+ get blue50() {
1659
+ return this.add("color", "rgba(239, 246, 255, 1)");
1620
1660
  }
1621
- /** Sets `color: "rgba(224,242,254,1)"`. */
1622
- get lightBlue100() {
1623
- return this.add("color", "rgba(224,242,254,1)");
1661
+ /** Sets `color: "rgba(219, 234, 254, 1)"`. */
1662
+ get blue100() {
1663
+ return this.add("color", "rgba(219, 234, 254, 1)");
1624
1664
  }
1625
- /** Sets `color: "rgba(186,230,253,1)"`. */
1626
- get lightBlue200() {
1627
- return this.add("color", "rgba(186,230,253,1)");
1665
+ /** Sets `color: "rgba(191, 219, 254, 1)"`. */
1666
+ get blue200() {
1667
+ return this.add("color", "rgba(191, 219, 254, 1)");
1628
1668
  }
1629
- /** Sets `color: "rgba(125,211,252,1)"`. */
1630
- get lightBlue300() {
1631
- return this.add("color", "rgba(125,211,252,1)");
1669
+ /** Sets `color: "rgba(147, 197, 253, 1)"`. */
1670
+ get blue300() {
1671
+ return this.add("color", "rgba(147, 197, 253, 1)");
1632
1672
  }
1633
- /** Sets `color: "rgba(56,189,248,1)"`. */
1634
- get lightBlue400() {
1635
- return this.add("color", "rgba(56,189,248,1)");
1673
+ /** Sets `color: "rgba(96, 165, 250, 1)"`. */
1674
+ get blue400() {
1675
+ return this.add("color", "rgba(96, 165, 250, 1)");
1636
1676
  }
1637
- /** Sets `color: "rgba(14,165,233,1)"`. */
1638
- get lightBlue500() {
1639
- return this.add("color", "rgba(14,165,233,1)");
1677
+ /** Sets `color: "rgba(59, 130, 246, 1)"`. */
1678
+ get blue500() {
1679
+ return this.add("color", "rgba(59, 130, 246, 1)");
1640
1680
  }
1641
- /** Sets `color: "rgba(2,143,199,1)"`. */
1642
- get lightBlue600() {
1643
- return this.add("color", "rgba(2,143,199,1)");
1681
+ /** Sets `color: "rgba(37, 99, 235, 1)"`. */
1682
+ get blue600() {
1683
+ return this.add("color", "rgba(37, 99, 235, 1)");
1644
1684
  }
1645
- /** Sets `color: "rgba(3,105,161,1)"`. */
1646
- get lightBlue700() {
1647
- return this.add("color", "rgba(3,105,161,1)");
1685
+ /** Sets `color: "rgba(29, 78, 216, 1)"`. */
1686
+ get blue700() {
1687
+ return this.add("color", "rgba(29, 78, 216, 1)");
1648
1688
  }
1649
- /** Sets `color: "rgba(7,89,133,1)"`. */
1650
- get lightBlue800() {
1651
- return this.add("color", "rgba(7,89,133,1)");
1689
+ /** Sets `color: "rgba(30, 64, 175, 1)"`. */
1690
+ get blue800() {
1691
+ return this.add("color", "rgba(30, 64, 175, 1)");
1652
1692
  }
1653
- /** Sets `color: "rgba(12,74,110,1)"`. */
1654
- get lightBlue900() {
1655
- return this.add("color", "rgba(12,74,110,1)");
1693
+ /** Sets `color: "rgba(30, 58, 138, 1)"`. */
1694
+ get blue900() {
1695
+ return this.add("color", "rgba(30, 58, 138, 1)");
1656
1696
  }
1657
- /** Sets `color: "rgba(255,242,242,1)"`. */
1697
+ /** Sets `color: "rgba(254, 242, 242, 1)"`. */
1658
1698
  get red50() {
1659
- return this.add("color", "rgba(255,242,242,1)");
1699
+ return this.add("color", "rgba(254, 242, 242, 1)");
1660
1700
  }
1661
- /** Sets `color: "rgba(253,210,209,1)"`. */
1701
+ /** Sets `color: "rgba(254, 226, 226, 1)"`. */
1662
1702
  get red100() {
1663
- return this.add("color", "rgba(253,210,209,1)");
1703
+ return this.add("color", "rgba(254, 226, 226, 1)");
1664
1704
  }
1665
- /** Sets `color: "rgba(249,181,177,1)"`. */
1705
+ /** Sets `color: "rgba(254, 202, 202, 1)"`. */
1666
1706
  get red200() {
1667
- return this.add("color", "rgba(249,181,177,1)");
1707
+ return this.add("color", "rgba(254, 202, 202, 1)");
1668
1708
  }
1669
- /** Sets `color: "rgba(242,155,148,1)"`. */
1709
+ /** Sets `color: "rgba(252, 165, 165, 1)"`. */
1670
1710
  get red300() {
1671
- return this.add("color", "rgba(242,155,148,1)");
1711
+ return this.add("color", "rgba(252, 165, 165, 1)");
1672
1712
  }
1673
- /** Sets `color: "rgba(232,133,122,1)"`. */
1713
+ /** Sets `color: "rgba(248, 113, 113, 1)"`. */
1674
1714
  get red400() {
1675
- return this.add("color", "rgba(232,133,122,1)");
1715
+ return this.add("color", "rgba(248, 113, 113, 1)");
1676
1716
  }
1677
- /** Sets `color: "rgba(218,114,100,1)"`. */
1717
+ /** Sets `color: "rgba(239, 68, 68, 1)"`. */
1678
1718
  get red500() {
1679
- return this.add("color", "rgba(218,114,100,1)");
1719
+ return this.add("color", "rgba(239, 68, 68, 1)");
1680
1720
  }
1681
- /** Sets `color: "rgba(200,98,81,1)"`. */
1721
+ /** Sets `color: "rgba(220, 38, 38, 1)"`. */
1682
1722
  get red600() {
1683
- return this.add("color", "rgba(200,98,81,1)");
1723
+ return this.add("color", "rgba(220, 38, 38, 1)");
1684
1724
  }
1685
- /** Sets `color: "rgba(176,83,73,1)"`. */
1725
+ /** Sets `color: "rgba(185, 28, 28, 1)"`. */
1686
1726
  get red700() {
1687
- return this.add("color", "rgba(176,83,73,1)");
1727
+ return this.add("color", "rgba(185, 28, 28, 1)");
1688
1728
  }
1689
- /** Sets `color: "rgba(149,68,64,1)"`. */
1729
+ /** Sets `color: "rgba(153, 27, 27, 1)"`. */
1690
1730
  get red800() {
1691
- return this.add("color", "rgba(149,68,64,1)");
1731
+ return this.add("color", "rgba(153, 27, 27, 1)");
1692
1732
  }
1693
- /** Sets `color: "rgba(120,54,54,1)"`. */
1733
+ /** Sets `color: "rgba(127, 29, 29, 1)"`. */
1694
1734
  get red900() {
1695
- return this.add("color", "rgba(120,54,54,1)");
1735
+ return this.add("color", "rgba(127, 29, 29, 1)");
1696
1736
  }
1697
- /** Sets `color: "rgba(255,254,242,1)"`. */
1737
+ /** Sets `color: "rgba(254, 252, 232, 1)"`. */
1698
1738
  get yellow50() {
1699
- return this.add("color", "rgba(255,254,242,1)");
1739
+ return this.add("color", "rgba(254, 252, 232, 1)");
1700
1740
  }
1701
- /** Sets `color: "rgba(255,254,212,1)"`. */
1741
+ /** Sets `color: "rgba(254, 249, 195, 1)"`. */
1702
1742
  get yellow100() {
1703
- return this.add("color", "rgba(255,254,212,1)");
1743
+ return this.add("color", "rgba(254, 249, 195, 1)");
1704
1744
  }
1705
- /** Sets `color: "rgba(255,250,180,1)"`. */
1745
+ /** Sets `color: "rgba(254, 240, 138, 1)"`. */
1706
1746
  get yellow200() {
1707
- return this.add("color", "rgba(255,250,180,1)");
1747
+ return this.add("color", "rgba(254, 240, 138, 1)");
1708
1748
  }
1709
- /** Sets `color: "rgba(255,240,150,1)"`. */
1749
+ /** Sets `color: "rgba(253, 224, 71, 1)"`. */
1710
1750
  get yellow300() {
1711
- return this.add("color", "rgba(255,240,150,1)");
1751
+ return this.add("color", "rgba(253, 224, 71, 1)");
1712
1752
  }
1713
- /** Sets `color: "rgba(255,225,123,1)"`. */
1753
+ /** Sets `color: "rgba(250, 204, 21, 1)"`. */
1714
1754
  get yellow400() {
1715
- return this.add("color", "rgba(255,225,123,1)");
1755
+ return this.add("color", "rgba(250, 204, 21, 1)");
1716
1756
  }
1717
- /** Sets `color: "rgba(255,204,99,1)"`. */
1757
+ /** Sets `color: "rgba(234, 179, 8, 1)"`. */
1718
1758
  get yellow500() {
1719
- return this.add("color", "rgba(255,204,99,1)");
1759
+ return this.add("color", "rgba(234, 179, 8, 1)");
1720
1760
  }
1721
- /** Sets `color: "rgba(246,177,78,1)"`. */
1761
+ /** Sets `color: "rgba(202, 138, 4, 1)"`. */
1722
1762
  get yellow600() {
1723
- return this.add("color", "rgba(246,177,78,1)");
1763
+ return this.add("color", "rgba(202, 138, 4, 1)");
1724
1764
  }
1725
- /** Sets `color: "rgba(207,150,73,1)"`. */
1765
+ /** Sets `color: "rgba(161, 98, 7, 1)"`. */
1726
1766
  get yellow700() {
1727
- return this.add("color", "rgba(207,150,73,1)");
1767
+ return this.add("color", "rgba(161, 98, 7, 1)");
1728
1768
  }
1729
- /** Sets `color: "rgba(164,120,66,1)"`. */
1769
+ /** Sets `color: "rgba(133, 77, 14, 1)"`. */
1730
1770
  get yellow800() {
1731
- return this.add("color", "rgba(164,120,66,1)");
1771
+ return this.add("color", "rgba(133, 77, 14, 1)");
1732
1772
  }
1733
- /** Sets `color: "rgba(120,89,54,1)"`. */
1773
+ /** Sets `color: "rgba(113, 63, 18, 1)"`. */
1734
1774
  get yellow900() {
1735
- return this.add("color", "rgba(120,89,54,1)");
1775
+ return this.add("color", "rgba(113, 63, 18, 1)");
1736
1776
  }
1737
- /** Sets `color: "rgba(250,255,250,1)"`. */
1777
+ /** Sets `color: "rgba(236, 253, 245, 1)"`. */
1738
1778
  get green50() {
1739
- return this.add("color", "rgba(250,255,250,1)");
1779
+ return this.add("color", "rgba(236, 253, 245, 1)");
1740
1780
  }
1741
- /** Sets `color: "rgba(223,248,216,1)"`. */
1781
+ /** Sets `color: "rgba(209, 250, 229, 1)"`. */
1742
1782
  get green100() {
1743
- return this.add("color", "rgba(223,248,216,1)");
1783
+ return this.add("color", "rgba(209, 250, 229, 1)");
1744
1784
  }
1745
- /** Sets `color: "rgba(199,239,183,1)"`. */
1785
+ /** Sets `color: "rgba(167, 243, 208, 1)"`. */
1746
1786
  get green200() {
1747
- return this.add("color", "rgba(199,239,183,1)");
1787
+ return this.add("color", "rgba(167, 243, 208, 1)");
1748
1788
  }
1749
- /** Sets `color: "rgba(179,226,153,1)"`. */
1789
+ /** Sets `color: "rgba(110, 231, 183, 1)"`. */
1750
1790
  get green300() {
1751
- return this.add("color", "rgba(179,226,153,1)");
1791
+ return this.add("color", "rgba(110, 231, 183, 1)");
1752
1792
  }
1753
- /** Sets `color: "rgba(163,208,126,1)"`. */
1793
+ /** Sets `color: "rgba(52, 211, 153, 1)"`. */
1754
1794
  get green400() {
1755
- return this.add("color", "rgba(163,208,126,1)");
1795
+ return this.add("color", "rgba(52, 211, 153, 1)");
1756
1796
  }
1757
- /** Sets `color: "rgba(146,185,101,1)"`. */
1797
+ /** Sets `color: "rgba(16, 185, 129, 1)"`. */
1758
1798
  get green500() {
1759
- return this.add("color", "rgba(146,185,101,1)");
1799
+ return this.add("color", "rgba(16, 185, 129, 1)");
1760
1800
  }
1761
- /** Sets `color: "rgba(126,156,79,1)"`. */
1801
+ /** Sets `color: "rgba(5, 150, 105, 1)"`. */
1762
1802
  get green600() {
1763
- return this.add("color", "rgba(126,156,79,1)");
1803
+ return this.add("color", "rgba(5, 150, 105, 1)");
1764
1804
  }
1765
- /** Sets `color: "rgba(101,120,57,1)"`. */
1805
+ /** Sets `color: "rgba(4, 120, 87, 1)"`. */
1766
1806
  get green700() {
1767
- return this.add("color", "rgba(101,120,57,1)");
1807
+ return this.add("color", "rgba(4, 120, 87, 1)");
1768
1808
  }
1769
- /** Sets `color: "rgba(64,93,44,1)"`. */
1809
+ /** Sets `color: "rgba(6, 95, 70, 1)"`. */
1770
1810
  get green800() {
1771
- return this.add("color", "rgba(64,93,44,1)");
1811
+ return this.add("color", "rgba(6, 95, 70, 1)");
1772
1812
  }
1773
- /** Sets `color: "rgba(34,64,31,1)"`. */
1813
+ /** Sets `color: "rgba(6, 78, 59, 1)"`. */
1774
1814
  get green900() {
1775
- return this.add("color", "rgba(34,64,31,1)");
1815
+ return this.add("color", "rgba(6, 78, 59, 1)");
1816
+ }
1817
+ /** Sets `color: "rgba(245, 243, 255, 1)"`. */
1818
+ get purple50() {
1819
+ return this.add("color", "rgba(245, 243, 255, 1)");
1820
+ }
1821
+ /** Sets `color: "rgba(237, 233, 254, 1)"`. */
1822
+ get purple100() {
1823
+ return this.add("color", "rgba(237, 233, 254, 1)");
1824
+ }
1825
+ /** Sets `color: "rgba(221, 214, 254, 1)"`. */
1826
+ get purple200() {
1827
+ return this.add("color", "rgba(221, 214, 254, 1)");
1828
+ }
1829
+ /** Sets `color: "rgba(196, 181, 253, 1)"`. */
1830
+ get purple300() {
1831
+ return this.add("color", "rgba(196, 181, 253, 1)");
1832
+ }
1833
+ /** Sets `color: "rgba(167, 139, 250, 1)"`. */
1834
+ get purple400() {
1835
+ return this.add("color", "rgba(167, 139, 250, 1)");
1836
+ }
1837
+ /** Sets `color: "rgba(139, 92, 246, 1)"`. */
1838
+ get purple500() {
1839
+ return this.add("color", "rgba(139, 92, 246, 1)");
1840
+ }
1841
+ /** Sets `color: "rgba(124, 58, 237, 1)"`. */
1842
+ get purple600() {
1843
+ return this.add("color", "rgba(124, 58, 237, 1)");
1844
+ }
1845
+ /** Sets `color: "rgba(109, 40, 217, 1)"`. */
1846
+ get purple700() {
1847
+ return this.add("color", "rgba(109, 40, 217, 1)");
1848
+ }
1849
+ /** Sets `color: "rgba(91, 33, 182, 1)"`. */
1850
+ get purple800() {
1851
+ return this.add("color", "rgba(91, 33, 182, 1)");
1852
+ }
1853
+ /** Sets `color: "rgba(76, 29, 149, 1)"`. */
1854
+ get purple900() {
1855
+ return this.add("color", "rgba(76, 29, 149, 1)");
1776
1856
  }
1777
- /** Sets `color: "rgba(245,243,255,1)"`. */
1778
- get violet50() {
1779
- return this.add("color", "rgba(245,243,255,1)");
1857
+ /** Sets `color: "rgba(255, 247, 237, 1)"`. */
1858
+ get orange50() {
1859
+ return this.add("color", "rgba(255, 247, 237, 1)");
1780
1860
  }
1781
- /** Sets `color: "rgba(238,234,253,1)"`. */
1782
- get violet100() {
1783
- return this.add("color", "rgba(238,234,253,1)");
1861
+ /** Sets `color: "rgba(255, 237, 213, 1)"`. */
1862
+ get orange100() {
1863
+ return this.add("color", "rgba(255, 237, 213, 1)");
1784
1864
  }
1785
- /** Sets `color: "rgba(232,225,252,1)"`. */
1786
- get violet200() {
1787
- return this.add("color", "rgba(232,225,252,1)");
1865
+ /** Sets `color: "rgba(254, 215, 170, 1)"`. */
1866
+ get orange200() {
1867
+ return this.add("color", "rgba(254, 215, 170, 1)");
1788
1868
  }
1789
- /** Sets `color: "rgba(218,205,246,1)"`. */
1790
- get violet300() {
1791
- return this.add("color", "rgba(218,205,246,1)");
1869
+ /** Sets `color: "rgba(253, 186, 116, 1)"`. */
1870
+ get orange300() {
1871
+ return this.add("color", "rgba(253, 186, 116, 1)");
1792
1872
  }
1793
- /** Sets `color: "rgba(204,186,236,1)"`. */
1794
- get violet400() {
1795
- return this.add("color", "rgba(204,186,236,1)");
1873
+ /** Sets `color: "rgba(251, 146, 60, 1)"`. */
1874
+ get orange400() {
1875
+ return this.add("color", "rgba(251, 146, 60, 1)");
1796
1876
  }
1797
- /** Sets `color: "rgba(190,167,223,1)"`. */
1798
- get violet500() {
1799
- return this.add("color", "rgba(190,167,223,1)");
1877
+ /** Sets `color: "rgba(249, 115, 22, 1)"`. */
1878
+ get orange500() {
1879
+ return this.add("color", "rgba(249, 115, 22, 1)");
1800
1880
  }
1801
- /** Sets `color: "rgba(173,147,205,1)"`. */
1802
- get violet600() {
1803
- return this.add("color", "rgba(173,147,205,1)");
1881
+ /** Sets `color: "rgba(234, 88, 12, 1)"`. */
1882
+ get orange600() {
1883
+ return this.add("color", "rgba(234, 88, 12, 1)");
1804
1884
  }
1805
- /** Sets `color: "rgba(153,126,181,1)"`. */
1806
- get violet700() {
1807
- return this.add("color", "rgba(153,126,181,1)");
1885
+ /** Sets `color: "rgba(194, 65, 12, 1)"`. */
1886
+ get orange700() {
1887
+ return this.add("color", "rgba(194, 65, 12, 1)");
1808
1888
  }
1809
- /** Sets `color: "rgba(128,103,151,1)"`. */
1810
- get violet800() {
1811
- return this.add("color", "rgba(128,103,151,1)");
1889
+ /** Sets `color: "rgba(154, 52, 18, 1)"`. */
1890
+ get orange800() {
1891
+ return this.add("color", "rgba(154, 52, 18, 1)");
1812
1892
  }
1813
- /** Sets `color: "rgba(100,78,116,1)"`. */
1814
- get violet900() {
1815
- return this.add("color", "rgba(100,78,116,1)");
1893
+ /** Sets `color: "rgba(124, 45, 18, 1)"`. */
1894
+ get orange900() {
1895
+ return this.add("color", "rgba(124, 45, 18, 1)");
1816
1896
  }
1817
1897
  /** Sets `color: value`. */
1818
1898
  color(value) {
1819
1899
  return this.add("color", value);
1820
1900
  }
1821
- /** Sets `backgroundColor: "rgba(254,254,254,1)"`. */
1901
+ /** Sets `backgroundColor: "rgba(255,255,255,1)"`. */
1822
1902
  get bgWhite() {
1823
- return this.add("backgroundColor", "rgba(254,254,254,1)");
1903
+ return this.add("backgroundColor", "rgba(255,255,255,1)");
1824
1904
  }
1825
1905
  /** Sets `backgroundColor: "rgba(0,0,0,0)"`. */
1826
1906
  get bgTransparent() {
1827
1907
  return this.add("backgroundColor", "rgba(0,0,0,0)");
1828
1908
  }
1829
- /** Sets `backgroundColor: "rgba(255,253,253,1)"`. */
1909
+ /** Sets `backgroundColor: "rgba(255, 253, 253, 1)"`. */
1830
1910
  get bgGray50() {
1831
- return this.add("backgroundColor", "rgba(255,253,253,1)");
1911
+ return this.add("backgroundColor", "rgba(255, 253, 253, 1)");
1832
1912
  }
1833
- /** Sets `backgroundColor: "rgba(247,245,245,1)"`. */
1913
+ /** Sets `backgroundColor: "rgba(247, 245, 245, 1)"`. */
1834
1914
  get bgGray100() {
1835
- return this.add("backgroundColor", "rgba(247,245,245,1)");
1915
+ return this.add("backgroundColor", "rgba(247, 245, 245, 1)");
1836
1916
  }
1837
- /** Sets `backgroundColor: "rgba(236,235,235,1)"`. */
1917
+ /** Sets `backgroundColor: "rgba(236, 235, 235, 1)"`. */
1838
1918
  get bgGray200() {
1839
- return this.add("backgroundColor", "rgba(236,235,235,1)");
1919
+ return this.add("backgroundColor", "rgba(236, 235, 235, 1)");
1840
1920
  }
1841
- /** Sets `backgroundColor: "rgba(221,220,220,1)"`. */
1921
+ /** Sets `backgroundColor: "rgba(221, 220, 220, 1)"`. */
1842
1922
  get bgGray300() {
1843
- return this.add("backgroundColor", "rgba(221,220,220,1)");
1923
+ return this.add("backgroundColor", "rgba(221, 220, 220, 1)");
1844
1924
  }
1845
- /** Sets `backgroundColor: "rgba(201,201,201,1)"`. */
1925
+ /** Sets `backgroundColor: "rgba(201, 201, 201, 1)"`. */
1846
1926
  get bgGray400() {
1847
- return this.add("backgroundColor", "rgba(201,201,201,1)");
1927
+ return this.add("backgroundColor", "rgba(201, 201, 201, 1)");
1848
1928
  }
1849
- /** Sets `backgroundColor: "rgba(175,175,175,1)"`. */
1929
+ /** Sets `backgroundColor: "rgba(175, 175, 175, 1)"`. */
1850
1930
  get bgGray500() {
1851
- return this.add("backgroundColor", "rgba(175,175,175,1)");
1931
+ return this.add("backgroundColor", "rgba(175, 175, 175, 1)");
1852
1932
  }
1853
- /** Sets `backgroundColor: "rgba(141,141,141,1)"`. */
1933
+ /** Sets `backgroundColor: "rgba(141, 141, 141, 1)"`. */
1854
1934
  get bgGray600() {
1855
- return this.add("backgroundColor", "rgba(141,141,141,1)");
1935
+ return this.add("backgroundColor", "rgba(141, 141, 141, 1)");
1856
1936
  }
1857
- /** Sets `backgroundColor: "rgba(100,100,100,1)"`. */
1937
+ /** Sets `backgroundColor: "rgba(100, 100, 100, 1)"`. */
1858
1938
  get bgGray700() {
1859
- return this.add("backgroundColor", "rgba(100,100,100,1)");
1939
+ return this.add("backgroundColor", "rgba(100, 100, 100, 1)");
1860
1940
  }
1861
- /** Sets `backgroundColor: "rgba(53,53,53,1)"`. */
1941
+ /** Sets `backgroundColor: "rgba(53, 53, 53, 1)"`. */
1862
1942
  get bgGray800() {
1863
- return this.add("backgroundColor", "rgba(53,53,53,1)");
1943
+ return this.add("backgroundColor", "rgba(53, 53, 53, 1)");
1864
1944
  }
1865
- /** Sets `backgroundColor: "rgba(36,36,36,1)"`. */
1945
+ /** Sets `backgroundColor: "rgba(36, 36, 36, 1)"`. */
1866
1946
  get bgGray900() {
1867
- return this.add("backgroundColor", "rgba(36,36,36,1)");
1947
+ return this.add("backgroundColor", "rgba(36, 36, 36, 1)");
1868
1948
  }
1869
- /** Sets `backgroundColor: "rgba(240,249,255,1)"`. */
1870
- get bgLightBlue50() {
1871
- return this.add("backgroundColor", "rgba(240,249,255,1)");
1949
+ /** Sets `backgroundColor: "rgba(239, 246, 255, 1)"`. */
1950
+ get bgBlue50() {
1951
+ return this.add("backgroundColor", "rgba(239, 246, 255, 1)");
1872
1952
  }
1873
- /** Sets `backgroundColor: "rgba(224,242,254,1)"`. */
1874
- get bgLightBlue100() {
1875
- return this.add("backgroundColor", "rgba(224,242,254,1)");
1953
+ /** Sets `backgroundColor: "rgba(219, 234, 254, 1)"`. */
1954
+ get bgBlue100() {
1955
+ return this.add("backgroundColor", "rgba(219, 234, 254, 1)");
1876
1956
  }
1877
- /** Sets `backgroundColor: "rgba(186,230,253,1)"`. */
1878
- get bgLightBlue200() {
1879
- return this.add("backgroundColor", "rgba(186,230,253,1)");
1957
+ /** Sets `backgroundColor: "rgba(191, 219, 254, 1)"`. */
1958
+ get bgBlue200() {
1959
+ return this.add("backgroundColor", "rgba(191, 219, 254, 1)");
1880
1960
  }
1881
- /** Sets `backgroundColor: "rgba(125,211,252,1)"`. */
1882
- get bgLightBlue300() {
1883
- return this.add("backgroundColor", "rgba(125,211,252,1)");
1961
+ /** Sets `backgroundColor: "rgba(147, 197, 253, 1)"`. */
1962
+ get bgBlue300() {
1963
+ return this.add("backgroundColor", "rgba(147, 197, 253, 1)");
1884
1964
  }
1885
- /** Sets `backgroundColor: "rgba(56,189,248,1)"`. */
1886
- get bgLightBlue400() {
1887
- return this.add("backgroundColor", "rgba(56,189,248,1)");
1965
+ /** Sets `backgroundColor: "rgba(96, 165, 250, 1)"`. */
1966
+ get bgBlue400() {
1967
+ return this.add("backgroundColor", "rgba(96, 165, 250, 1)");
1888
1968
  }
1889
- /** Sets `backgroundColor: "rgba(14,165,233,1)"`. */
1890
- get bgLightBlue500() {
1891
- return this.add("backgroundColor", "rgba(14,165,233,1)");
1969
+ /** Sets `backgroundColor: "rgba(59, 130, 246, 1)"`. */
1970
+ get bgBlue500() {
1971
+ return this.add("backgroundColor", "rgba(59, 130, 246, 1)");
1892
1972
  }
1893
- /** Sets `backgroundColor: "rgba(2,143,199,1)"`. */
1894
- get bgLightBlue600() {
1895
- return this.add("backgroundColor", "rgba(2,143,199,1)");
1973
+ /** Sets `backgroundColor: "rgba(37, 99, 235, 1)"`. */
1974
+ get bgBlue600() {
1975
+ return this.add("backgroundColor", "rgba(37, 99, 235, 1)");
1896
1976
  }
1897
- /** Sets `backgroundColor: "rgba(3,105,161,1)"`. */
1898
- get bgLightBlue700() {
1899
- return this.add("backgroundColor", "rgba(3,105,161,1)");
1977
+ /** Sets `backgroundColor: "rgba(29, 78, 216, 1)"`. */
1978
+ get bgBlue700() {
1979
+ return this.add("backgroundColor", "rgba(29, 78, 216, 1)");
1900
1980
  }
1901
- /** Sets `backgroundColor: "rgba(7,89,133,1)"`. */
1902
- get bgLightBlue800() {
1903
- return this.add("backgroundColor", "rgba(7,89,133,1)");
1981
+ /** Sets `backgroundColor: "rgba(30, 64, 175, 1)"`. */
1982
+ get bgBlue800() {
1983
+ return this.add("backgroundColor", "rgba(30, 64, 175, 1)");
1904
1984
  }
1905
- /** Sets `backgroundColor: "rgba(12,74,110,1)"`. */
1906
- get bgLightBlue900() {
1907
- return this.add("backgroundColor", "rgba(12,74,110,1)");
1985
+ /** Sets `backgroundColor: "rgba(30, 58, 138, 1)"`. */
1986
+ get bgBlue900() {
1987
+ return this.add("backgroundColor", "rgba(30, 58, 138, 1)");
1908
1988
  }
1909
- /** Sets `backgroundColor: "rgba(255,242,242,1)"`. */
1989
+ /** Sets `backgroundColor: "rgba(254, 242, 242, 1)"`. */
1910
1990
  get bgRed50() {
1911
- return this.add("backgroundColor", "rgba(255,242,242,1)");
1991
+ return this.add("backgroundColor", "rgba(254, 242, 242, 1)");
1912
1992
  }
1913
- /** Sets `backgroundColor: "rgba(253,210,209,1)"`. */
1993
+ /** Sets `backgroundColor: "rgba(254, 226, 226, 1)"`. */
1914
1994
  get bgRed100() {
1915
- return this.add("backgroundColor", "rgba(253,210,209,1)");
1995
+ return this.add("backgroundColor", "rgba(254, 226, 226, 1)");
1916
1996
  }
1917
- /** Sets `backgroundColor: "rgba(249,181,177,1)"`. */
1997
+ /** Sets `backgroundColor: "rgba(254, 202, 202, 1)"`. */
1918
1998
  get bgRed200() {
1919
- return this.add("backgroundColor", "rgba(249,181,177,1)");
1999
+ return this.add("backgroundColor", "rgba(254, 202, 202, 1)");
1920
2000
  }
1921
- /** Sets `backgroundColor: "rgba(242,155,148,1)"`. */
2001
+ /** Sets `backgroundColor: "rgba(252, 165, 165, 1)"`. */
1922
2002
  get bgRed300() {
1923
- return this.add("backgroundColor", "rgba(242,155,148,1)");
2003
+ return this.add("backgroundColor", "rgba(252, 165, 165, 1)");
1924
2004
  }
1925
- /** Sets `backgroundColor: "rgba(232,133,122,1)"`. */
2005
+ /** Sets `backgroundColor: "rgba(248, 113, 113, 1)"`. */
1926
2006
  get bgRed400() {
1927
- return this.add("backgroundColor", "rgba(232,133,122,1)");
2007
+ return this.add("backgroundColor", "rgba(248, 113, 113, 1)");
1928
2008
  }
1929
- /** Sets `backgroundColor: "rgba(218,114,100,1)"`. */
2009
+ /** Sets `backgroundColor: "rgba(239, 68, 68, 1)"`. */
1930
2010
  get bgRed500() {
1931
- return this.add("backgroundColor", "rgba(218,114,100,1)");
2011
+ return this.add("backgroundColor", "rgba(239, 68, 68, 1)");
1932
2012
  }
1933
- /** Sets `backgroundColor: "rgba(200,98,81,1)"`. */
2013
+ /** Sets `backgroundColor: "rgba(220, 38, 38, 1)"`. */
1934
2014
  get bgRed600() {
1935
- return this.add("backgroundColor", "rgba(200,98,81,1)");
2015
+ return this.add("backgroundColor", "rgba(220, 38, 38, 1)");
1936
2016
  }
1937
- /** Sets `backgroundColor: "rgba(176,83,73,1)"`. */
2017
+ /** Sets `backgroundColor: "rgba(185, 28, 28, 1)"`. */
1938
2018
  get bgRed700() {
1939
- return this.add("backgroundColor", "rgba(176,83,73,1)");
2019
+ return this.add("backgroundColor", "rgba(185, 28, 28, 1)");
1940
2020
  }
1941
- /** Sets `backgroundColor: "rgba(149,68,64,1)"`. */
2021
+ /** Sets `backgroundColor: "rgba(153, 27, 27, 1)"`. */
1942
2022
  get bgRed800() {
1943
- return this.add("backgroundColor", "rgba(149,68,64,1)");
2023
+ return this.add("backgroundColor", "rgba(153, 27, 27, 1)");
1944
2024
  }
1945
- /** Sets `backgroundColor: "rgba(120,54,54,1)"`. */
2025
+ /** Sets `backgroundColor: "rgba(127, 29, 29, 1)"`. */
1946
2026
  get bgRed900() {
1947
- return this.add("backgroundColor", "rgba(120,54,54,1)");
2027
+ return this.add("backgroundColor", "rgba(127, 29, 29, 1)");
1948
2028
  }
1949
- /** Sets `backgroundColor: "rgba(255,254,242,1)"`. */
2029
+ /** Sets `backgroundColor: "rgba(254, 252, 232, 1)"`. */
1950
2030
  get bgYellow50() {
1951
- return this.add("backgroundColor", "rgba(255,254,242,1)");
2031
+ return this.add("backgroundColor", "rgba(254, 252, 232, 1)");
1952
2032
  }
1953
- /** Sets `backgroundColor: "rgba(255,254,212,1)"`. */
2033
+ /** Sets `backgroundColor: "rgba(254, 249, 195, 1)"`. */
1954
2034
  get bgYellow100() {
1955
- return this.add("backgroundColor", "rgba(255,254,212,1)");
2035
+ return this.add("backgroundColor", "rgba(254, 249, 195, 1)");
1956
2036
  }
1957
- /** Sets `backgroundColor: "rgba(255,250,180,1)"`. */
2037
+ /** Sets `backgroundColor: "rgba(254, 240, 138, 1)"`. */
1958
2038
  get bgYellow200() {
1959
- return this.add("backgroundColor", "rgba(255,250,180,1)");
2039
+ return this.add("backgroundColor", "rgba(254, 240, 138, 1)");
1960
2040
  }
1961
- /** Sets `backgroundColor: "rgba(255,240,150,1)"`. */
2041
+ /** Sets `backgroundColor: "rgba(253, 224, 71, 1)"`. */
1962
2042
  get bgYellow300() {
1963
- return this.add("backgroundColor", "rgba(255,240,150,1)");
2043
+ return this.add("backgroundColor", "rgba(253, 224, 71, 1)");
1964
2044
  }
1965
- /** Sets `backgroundColor: "rgba(255,225,123,1)"`. */
2045
+ /** Sets `backgroundColor: "rgba(250, 204, 21, 1)"`. */
1966
2046
  get bgYellow400() {
1967
- return this.add("backgroundColor", "rgba(255,225,123,1)");
2047
+ return this.add("backgroundColor", "rgba(250, 204, 21, 1)");
1968
2048
  }
1969
- /** Sets `backgroundColor: "rgba(255,204,99,1)"`. */
2049
+ /** Sets `backgroundColor: "rgba(234, 179, 8, 1)"`. */
1970
2050
  get bgYellow500() {
1971
- return this.add("backgroundColor", "rgba(255,204,99,1)");
2051
+ return this.add("backgroundColor", "rgba(234, 179, 8, 1)");
1972
2052
  }
1973
- /** Sets `backgroundColor: "rgba(246,177,78,1)"`. */
2053
+ /** Sets `backgroundColor: "rgba(202, 138, 4, 1)"`. */
1974
2054
  get bgYellow600() {
1975
- return this.add("backgroundColor", "rgba(246,177,78,1)");
2055
+ return this.add("backgroundColor", "rgba(202, 138, 4, 1)");
1976
2056
  }
1977
- /** Sets `backgroundColor: "rgba(207,150,73,1)"`. */
2057
+ /** Sets `backgroundColor: "rgba(161, 98, 7, 1)"`. */
1978
2058
  get bgYellow700() {
1979
- return this.add("backgroundColor", "rgba(207,150,73,1)");
2059
+ return this.add("backgroundColor", "rgba(161, 98, 7, 1)");
1980
2060
  }
1981
- /** Sets `backgroundColor: "rgba(164,120,66,1)"`. */
2061
+ /** Sets `backgroundColor: "rgba(133, 77, 14, 1)"`. */
1982
2062
  get bgYellow800() {
1983
- return this.add("backgroundColor", "rgba(164,120,66,1)");
2063
+ return this.add("backgroundColor", "rgba(133, 77, 14, 1)");
1984
2064
  }
1985
- /** Sets `backgroundColor: "rgba(120,89,54,1)"`. */
2065
+ /** Sets `backgroundColor: "rgba(113, 63, 18, 1)"`. */
1986
2066
  get bgYellow900() {
1987
- return this.add("backgroundColor", "rgba(120,89,54,1)");
2067
+ return this.add("backgroundColor", "rgba(113, 63, 18, 1)");
1988
2068
  }
1989
- /** Sets `backgroundColor: "rgba(250,255,250,1)"`. */
2069
+ /** Sets `backgroundColor: "rgba(236, 253, 245, 1)"`. */
1990
2070
  get bgGreen50() {
1991
- return this.add("backgroundColor", "rgba(250,255,250,1)");
2071
+ return this.add("backgroundColor", "rgba(236, 253, 245, 1)");
1992
2072
  }
1993
- /** Sets `backgroundColor: "rgba(223,248,216,1)"`. */
2073
+ /** Sets `backgroundColor: "rgba(209, 250, 229, 1)"`. */
1994
2074
  get bgGreen100() {
1995
- return this.add("backgroundColor", "rgba(223,248,216,1)");
2075
+ return this.add("backgroundColor", "rgba(209, 250, 229, 1)");
1996
2076
  }
1997
- /** Sets `backgroundColor: "rgba(199,239,183,1)"`. */
2077
+ /** Sets `backgroundColor: "rgba(167, 243, 208, 1)"`. */
1998
2078
  get bgGreen200() {
1999
- return this.add("backgroundColor", "rgba(199,239,183,1)");
2079
+ return this.add("backgroundColor", "rgba(167, 243, 208, 1)");
2000
2080
  }
2001
- /** Sets `backgroundColor: "rgba(179,226,153,1)"`. */
2081
+ /** Sets `backgroundColor: "rgba(110, 231, 183, 1)"`. */
2002
2082
  get bgGreen300() {
2003
- return this.add("backgroundColor", "rgba(179,226,153,1)");
2083
+ return this.add("backgroundColor", "rgba(110, 231, 183, 1)");
2004
2084
  }
2005
- /** Sets `backgroundColor: "rgba(163,208,126,1)"`. */
2085
+ /** Sets `backgroundColor: "rgba(52, 211, 153, 1)"`. */
2006
2086
  get bgGreen400() {
2007
- return this.add("backgroundColor", "rgba(163,208,126,1)");
2087
+ return this.add("backgroundColor", "rgba(52, 211, 153, 1)");
2008
2088
  }
2009
- /** Sets `backgroundColor: "rgba(146,185,101,1)"`. */
2089
+ /** Sets `backgroundColor: "rgba(16, 185, 129, 1)"`. */
2010
2090
  get bgGreen500() {
2011
- return this.add("backgroundColor", "rgba(146,185,101,1)");
2091
+ return this.add("backgroundColor", "rgba(16, 185, 129, 1)");
2012
2092
  }
2013
- /** Sets `backgroundColor: "rgba(126,156,79,1)"`. */
2093
+ /** Sets `backgroundColor: "rgba(5, 150, 105, 1)"`. */
2014
2094
  get bgGreen600() {
2015
- return this.add("backgroundColor", "rgba(126,156,79,1)");
2095
+ return this.add("backgroundColor", "rgba(5, 150, 105, 1)");
2016
2096
  }
2017
- /** Sets `backgroundColor: "rgba(101,120,57,1)"`. */
2097
+ /** Sets `backgroundColor: "rgba(4, 120, 87, 1)"`. */
2018
2098
  get bgGreen700() {
2019
- return this.add("backgroundColor", "rgba(101,120,57,1)");
2099
+ return this.add("backgroundColor", "rgba(4, 120, 87, 1)");
2020
2100
  }
2021
- /** Sets `backgroundColor: "rgba(64,93,44,1)"`. */
2101
+ /** Sets `backgroundColor: "rgba(6, 95, 70, 1)"`. */
2022
2102
  get bgGreen800() {
2023
- return this.add("backgroundColor", "rgba(64,93,44,1)");
2103
+ return this.add("backgroundColor", "rgba(6, 95, 70, 1)");
2024
2104
  }
2025
- /** Sets `backgroundColor: "rgba(34,64,31,1)"`. */
2105
+ /** Sets `backgroundColor: "rgba(6, 78, 59, 1)"`. */
2026
2106
  get bgGreen900() {
2027
- return this.add("backgroundColor", "rgba(34,64,31,1)");
2107
+ return this.add("backgroundColor", "rgba(6, 78, 59, 1)");
2028
2108
  }
2029
- /** Sets `backgroundColor: "rgba(245,243,255,1)"`. */
2030
- get bgViolet50() {
2031
- return this.add("backgroundColor", "rgba(245,243,255,1)");
2109
+ /** Sets `backgroundColor: "rgba(245, 243, 255, 1)"`. */
2110
+ get bgPurple50() {
2111
+ return this.add("backgroundColor", "rgba(245, 243, 255, 1)");
2032
2112
  }
2033
- /** Sets `backgroundColor: "rgba(238,234,253,1)"`. */
2034
- get bgViolet100() {
2035
- return this.add("backgroundColor", "rgba(238,234,253,1)");
2113
+ /** Sets `backgroundColor: "rgba(237, 233, 254, 1)"`. */
2114
+ get bgPurple100() {
2115
+ return this.add("backgroundColor", "rgba(237, 233, 254, 1)");
2036
2116
  }
2037
- /** Sets `backgroundColor: "rgba(232,225,252,1)"`. */
2038
- get bgViolet200() {
2039
- return this.add("backgroundColor", "rgba(232,225,252,1)");
2117
+ /** Sets `backgroundColor: "rgba(221, 214, 254, 1)"`. */
2118
+ get bgPurple200() {
2119
+ return this.add("backgroundColor", "rgba(221, 214, 254, 1)");
2040
2120
  }
2041
- /** Sets `backgroundColor: "rgba(218,205,246,1)"`. */
2042
- get bgViolet300() {
2043
- return this.add("backgroundColor", "rgba(218,205,246,1)");
2121
+ /** Sets `backgroundColor: "rgba(196, 181, 253, 1)"`. */
2122
+ get bgPurple300() {
2123
+ return this.add("backgroundColor", "rgba(196, 181, 253, 1)");
2044
2124
  }
2045
- /** Sets `backgroundColor: "rgba(204,186,236,1)"`. */
2046
- get bgViolet400() {
2047
- return this.add("backgroundColor", "rgba(204,186,236,1)");
2125
+ /** Sets `backgroundColor: "rgba(167, 139, 250, 1)"`. */
2126
+ get bgPurple400() {
2127
+ return this.add("backgroundColor", "rgba(167, 139, 250, 1)");
2048
2128
  }
2049
- /** Sets `backgroundColor: "rgba(190,167,223,1)"`. */
2050
- get bgViolet500() {
2051
- return this.add("backgroundColor", "rgba(190,167,223,1)");
2129
+ /** Sets `backgroundColor: "rgba(139, 92, 246, 1)"`. */
2130
+ get bgPurple500() {
2131
+ return this.add("backgroundColor", "rgba(139, 92, 246, 1)");
2052
2132
  }
2053
- /** Sets `backgroundColor: "rgba(173,147,205,1)"`. */
2054
- get bgViolet600() {
2055
- return this.add("backgroundColor", "rgba(173,147,205,1)");
2133
+ /** Sets `backgroundColor: "rgba(124, 58, 237, 1)"`. */
2134
+ get bgPurple600() {
2135
+ return this.add("backgroundColor", "rgba(124, 58, 237, 1)");
2056
2136
  }
2057
- /** Sets `backgroundColor: "rgba(153,126,181,1)"`. */
2058
- get bgViolet700() {
2059
- return this.add("backgroundColor", "rgba(153,126,181,1)");
2137
+ /** Sets `backgroundColor: "rgba(109, 40, 217, 1)"`. */
2138
+ get bgPurple700() {
2139
+ return this.add("backgroundColor", "rgba(109, 40, 217, 1)");
2060
2140
  }
2061
- /** Sets `backgroundColor: "rgba(128,103,151,1)"`. */
2062
- get bgViolet800() {
2063
- return this.add("backgroundColor", "rgba(128,103,151,1)");
2141
+ /** Sets `backgroundColor: "rgba(91, 33, 182, 1)"`. */
2142
+ get bgPurple800() {
2143
+ return this.add("backgroundColor", "rgba(91, 33, 182, 1)");
2064
2144
  }
2065
- /** Sets `backgroundColor: "rgba(100,78,116,1)"`. */
2066
- get bgViolet900() {
2067
- return this.add("backgroundColor", "rgba(100,78,116,1)");
2145
+ /** Sets `backgroundColor: "rgba(76, 29, 149, 1)"`. */
2146
+ get bgPurple900() {
2147
+ return this.add("backgroundColor", "rgba(76, 29, 149, 1)");
2148
+ }
2149
+ /** Sets `backgroundColor: "rgba(255, 247, 237, 1)"`. */
2150
+ get bgOrange50() {
2151
+ return this.add("backgroundColor", "rgba(255, 247, 237, 1)");
2152
+ }
2153
+ /** Sets `backgroundColor: "rgba(255, 237, 213, 1)"`. */
2154
+ get bgOrange100() {
2155
+ return this.add("backgroundColor", "rgba(255, 237, 213, 1)");
2156
+ }
2157
+ /** Sets `backgroundColor: "rgba(254, 215, 170, 1)"`. */
2158
+ get bgOrange200() {
2159
+ return this.add("backgroundColor", "rgba(254, 215, 170, 1)");
2160
+ }
2161
+ /** Sets `backgroundColor: "rgba(253, 186, 116, 1)"`. */
2162
+ get bgOrange300() {
2163
+ return this.add("backgroundColor", "rgba(253, 186, 116, 1)");
2164
+ }
2165
+ /** Sets `backgroundColor: "rgba(251, 146, 60, 1)"`. */
2166
+ get bgOrange400() {
2167
+ return this.add("backgroundColor", "rgba(251, 146, 60, 1)");
2168
+ }
2169
+ /** Sets `backgroundColor: "rgba(249, 115, 22, 1)"`. */
2170
+ get bgOrange500() {
2171
+ return this.add("backgroundColor", "rgba(249, 115, 22, 1)");
2172
+ }
2173
+ /** Sets `backgroundColor: "rgba(234, 88, 12, 1)"`. */
2174
+ get bgOrange600() {
2175
+ return this.add("backgroundColor", "rgba(234, 88, 12, 1)");
2176
+ }
2177
+ /** Sets `backgroundColor: "rgba(194, 65, 12, 1)"`. */
2178
+ get bgOrange700() {
2179
+ return this.add("backgroundColor", "rgba(194, 65, 12, 1)");
2180
+ }
2181
+ /** Sets `backgroundColor: "rgba(154, 52, 18, 1)"`. */
2182
+ get bgOrange800() {
2183
+ return this.add("backgroundColor", "rgba(154, 52, 18, 1)");
2184
+ }
2185
+ /** Sets `backgroundColor: "rgba(124, 45, 18, 1)"`. */
2186
+ get bgOrange900() {
2187
+ return this.add("backgroundColor", "rgba(124, 45, 18, 1)");
2068
2188
  }
2069
2189
  /** Sets `backgroundColor: value`. */
2070
2190
  bgColor(value) {
2071
2191
  return this.add("backgroundColor", value);
2072
2192
  }
2073
- /** Sets `fill: "rgba(254,254,254,1)"`. */
2193
+ /** Sets `fill: "rgba(255,255,255,1)"`. */
2074
2194
  get fWhite() {
2075
- return this.add("fill", "rgba(254,254,254,1)");
2195
+ return this.add("fill", "rgba(255,255,255,1)");
2076
2196
  }
2077
2197
  /** Sets `fill: "rgba(0,0,0,0)"`. */
2078
2198
  get fTransparent() {
2079
2199
  return this.add("fill", "rgba(0,0,0,0)");
2080
2200
  }
2081
- /** Sets `fill: "rgba(255,253,253,1)"`. */
2201
+ /** Sets `fill: "rgba(255, 253, 253, 1)"`. */
2082
2202
  get fGray50() {
2083
- return this.add("fill", "rgba(255,253,253,1)");
2203
+ return this.add("fill", "rgba(255, 253, 253, 1)");
2084
2204
  }
2085
- /** Sets `fill: "rgba(247,245,245,1)"`. */
2205
+ /** Sets `fill: "rgba(247, 245, 245, 1)"`. */
2086
2206
  get fGray100() {
2087
- return this.add("fill", "rgba(247,245,245,1)");
2207
+ return this.add("fill", "rgba(247, 245, 245, 1)");
2088
2208
  }
2089
- /** Sets `fill: "rgba(236,235,235,1)"`. */
2209
+ /** Sets `fill: "rgba(236, 235, 235, 1)"`. */
2090
2210
  get fGray200() {
2091
- return this.add("fill", "rgba(236,235,235,1)");
2211
+ return this.add("fill", "rgba(236, 235, 235, 1)");
2092
2212
  }
2093
- /** Sets `fill: "rgba(221,220,220,1)"`. */
2213
+ /** Sets `fill: "rgba(221, 220, 220, 1)"`. */
2094
2214
  get fGray300() {
2095
- return this.add("fill", "rgba(221,220,220,1)");
2215
+ return this.add("fill", "rgba(221, 220, 220, 1)");
2096
2216
  }
2097
- /** Sets `fill: "rgba(201,201,201,1)"`. */
2217
+ /** Sets `fill: "rgba(201, 201, 201, 1)"`. */
2098
2218
  get fGray400() {
2099
- return this.add("fill", "rgba(201,201,201,1)");
2219
+ return this.add("fill", "rgba(201, 201, 201, 1)");
2100
2220
  }
2101
- /** Sets `fill: "rgba(175,175,175,1)"`. */
2221
+ /** Sets `fill: "rgba(175, 175, 175, 1)"`. */
2102
2222
  get fGray500() {
2103
- return this.add("fill", "rgba(175,175,175,1)");
2223
+ return this.add("fill", "rgba(175, 175, 175, 1)");
2104
2224
  }
2105
- /** Sets `fill: "rgba(141,141,141,1)"`. */
2225
+ /** Sets `fill: "rgba(141, 141, 141, 1)"`. */
2106
2226
  get fGray600() {
2107
- return this.add("fill", "rgba(141,141,141,1)");
2227
+ return this.add("fill", "rgba(141, 141, 141, 1)");
2108
2228
  }
2109
- /** Sets `fill: "rgba(100,100,100,1)"`. */
2229
+ /** Sets `fill: "rgba(100, 100, 100, 1)"`. */
2110
2230
  get fGray700() {
2111
- return this.add("fill", "rgba(100,100,100,1)");
2231
+ return this.add("fill", "rgba(100, 100, 100, 1)");
2112
2232
  }
2113
- /** Sets `fill: "rgba(53,53,53,1)"`. */
2233
+ /** Sets `fill: "rgba(53, 53, 53, 1)"`. */
2114
2234
  get fGray800() {
2115
- return this.add("fill", "rgba(53,53,53,1)");
2235
+ return this.add("fill", "rgba(53, 53, 53, 1)");
2116
2236
  }
2117
- /** Sets `fill: "rgba(36,36,36,1)"`. */
2237
+ /** Sets `fill: "rgba(36, 36, 36, 1)"`. */
2118
2238
  get fGray900() {
2119
- return this.add("fill", "rgba(36,36,36,1)");
2239
+ return this.add("fill", "rgba(36, 36, 36, 1)");
2120
2240
  }
2121
- /** Sets `fill: "rgba(240,249,255,1)"`. */
2122
- get fLightBlue50() {
2123
- return this.add("fill", "rgba(240,249,255,1)");
2241
+ /** Sets `fill: "rgba(239, 246, 255, 1)"`. */
2242
+ get fBlue50() {
2243
+ return this.add("fill", "rgba(239, 246, 255, 1)");
2124
2244
  }
2125
- /** Sets `fill: "rgba(224,242,254,1)"`. */
2126
- get fLightBlue100() {
2127
- return this.add("fill", "rgba(224,242,254,1)");
2245
+ /** Sets `fill: "rgba(219, 234, 254, 1)"`. */
2246
+ get fBlue100() {
2247
+ return this.add("fill", "rgba(219, 234, 254, 1)");
2128
2248
  }
2129
- /** Sets `fill: "rgba(186,230,253,1)"`. */
2130
- get fLightBlue200() {
2131
- return this.add("fill", "rgba(186,230,253,1)");
2249
+ /** Sets `fill: "rgba(191, 219, 254, 1)"`. */
2250
+ get fBlue200() {
2251
+ return this.add("fill", "rgba(191, 219, 254, 1)");
2132
2252
  }
2133
- /** Sets `fill: "rgba(125,211,252,1)"`. */
2134
- get fLightBlue300() {
2135
- return this.add("fill", "rgba(125,211,252,1)");
2253
+ /** Sets `fill: "rgba(147, 197, 253, 1)"`. */
2254
+ get fBlue300() {
2255
+ return this.add("fill", "rgba(147, 197, 253, 1)");
2136
2256
  }
2137
- /** Sets `fill: "rgba(56,189,248,1)"`. */
2138
- get fLightBlue400() {
2139
- return this.add("fill", "rgba(56,189,248,1)");
2257
+ /** Sets `fill: "rgba(96, 165, 250, 1)"`. */
2258
+ get fBlue400() {
2259
+ return this.add("fill", "rgba(96, 165, 250, 1)");
2140
2260
  }
2141
- /** Sets `fill: "rgba(14,165,233,1)"`. */
2142
- get fLightBlue500() {
2143
- return this.add("fill", "rgba(14,165,233,1)");
2261
+ /** Sets `fill: "rgba(59, 130, 246, 1)"`. */
2262
+ get fBlue500() {
2263
+ return this.add("fill", "rgba(59, 130, 246, 1)");
2144
2264
  }
2145
- /** Sets `fill: "rgba(2,143,199,1)"`. */
2146
- get fLightBlue600() {
2147
- return this.add("fill", "rgba(2,143,199,1)");
2265
+ /** Sets `fill: "rgba(37, 99, 235, 1)"`. */
2266
+ get fBlue600() {
2267
+ return this.add("fill", "rgba(37, 99, 235, 1)");
2148
2268
  }
2149
- /** Sets `fill: "rgba(3,105,161,1)"`. */
2150
- get fLightBlue700() {
2151
- return this.add("fill", "rgba(3,105,161,1)");
2269
+ /** Sets `fill: "rgba(29, 78, 216, 1)"`. */
2270
+ get fBlue700() {
2271
+ return this.add("fill", "rgba(29, 78, 216, 1)");
2152
2272
  }
2153
- /** Sets `fill: "rgba(7,89,133,1)"`. */
2154
- get fLightBlue800() {
2155
- return this.add("fill", "rgba(7,89,133,1)");
2273
+ /** Sets `fill: "rgba(30, 64, 175, 1)"`. */
2274
+ get fBlue800() {
2275
+ return this.add("fill", "rgba(30, 64, 175, 1)");
2156
2276
  }
2157
- /** Sets `fill: "rgba(12,74,110,1)"`. */
2158
- get fLightBlue900() {
2159
- return this.add("fill", "rgba(12,74,110,1)");
2277
+ /** Sets `fill: "rgba(30, 58, 138, 1)"`. */
2278
+ get fBlue900() {
2279
+ return this.add("fill", "rgba(30, 58, 138, 1)");
2160
2280
  }
2161
- /** Sets `fill: "rgba(255,242,242,1)"`. */
2281
+ /** Sets `fill: "rgba(254, 242, 242, 1)"`. */
2162
2282
  get fRed50() {
2163
- return this.add("fill", "rgba(255,242,242,1)");
2283
+ return this.add("fill", "rgba(254, 242, 242, 1)");
2164
2284
  }
2165
- /** Sets `fill: "rgba(253,210,209,1)"`. */
2285
+ /** Sets `fill: "rgba(254, 226, 226, 1)"`. */
2166
2286
  get fRed100() {
2167
- return this.add("fill", "rgba(253,210,209,1)");
2287
+ return this.add("fill", "rgba(254, 226, 226, 1)");
2168
2288
  }
2169
- /** Sets `fill: "rgba(249,181,177,1)"`. */
2289
+ /** Sets `fill: "rgba(254, 202, 202, 1)"`. */
2170
2290
  get fRed200() {
2171
- return this.add("fill", "rgba(249,181,177,1)");
2291
+ return this.add("fill", "rgba(254, 202, 202, 1)");
2172
2292
  }
2173
- /** Sets `fill: "rgba(242,155,148,1)"`. */
2293
+ /** Sets `fill: "rgba(252, 165, 165, 1)"`. */
2174
2294
  get fRed300() {
2175
- return this.add("fill", "rgba(242,155,148,1)");
2295
+ return this.add("fill", "rgba(252, 165, 165, 1)");
2176
2296
  }
2177
- /** Sets `fill: "rgba(232,133,122,1)"`. */
2297
+ /** Sets `fill: "rgba(248, 113, 113, 1)"`. */
2178
2298
  get fRed400() {
2179
- return this.add("fill", "rgba(232,133,122,1)");
2299
+ return this.add("fill", "rgba(248, 113, 113, 1)");
2180
2300
  }
2181
- /** Sets `fill: "rgba(218,114,100,1)"`. */
2301
+ /** Sets `fill: "rgba(239, 68, 68, 1)"`. */
2182
2302
  get fRed500() {
2183
- return this.add("fill", "rgba(218,114,100,1)");
2303
+ return this.add("fill", "rgba(239, 68, 68, 1)");
2184
2304
  }
2185
- /** Sets `fill: "rgba(200,98,81,1)"`. */
2305
+ /** Sets `fill: "rgba(220, 38, 38, 1)"`. */
2186
2306
  get fRed600() {
2187
- return this.add("fill", "rgba(200,98,81,1)");
2307
+ return this.add("fill", "rgba(220, 38, 38, 1)");
2188
2308
  }
2189
- /** Sets `fill: "rgba(176,83,73,1)"`. */
2309
+ /** Sets `fill: "rgba(185, 28, 28, 1)"`. */
2190
2310
  get fRed700() {
2191
- return this.add("fill", "rgba(176,83,73,1)");
2311
+ return this.add("fill", "rgba(185, 28, 28, 1)");
2192
2312
  }
2193
- /** Sets `fill: "rgba(149,68,64,1)"`. */
2313
+ /** Sets `fill: "rgba(153, 27, 27, 1)"`. */
2194
2314
  get fRed800() {
2195
- return this.add("fill", "rgba(149,68,64,1)");
2315
+ return this.add("fill", "rgba(153, 27, 27, 1)");
2196
2316
  }
2197
- /** Sets `fill: "rgba(120,54,54,1)"`. */
2317
+ /** Sets `fill: "rgba(127, 29, 29, 1)"`. */
2198
2318
  get fRed900() {
2199
- return this.add("fill", "rgba(120,54,54,1)");
2319
+ return this.add("fill", "rgba(127, 29, 29, 1)");
2200
2320
  }
2201
- /** Sets `fill: "rgba(255,254,242,1)"`. */
2321
+ /** Sets `fill: "rgba(254, 252, 232, 1)"`. */
2202
2322
  get fYellow50() {
2203
- return this.add("fill", "rgba(255,254,242,1)");
2323
+ return this.add("fill", "rgba(254, 252, 232, 1)");
2204
2324
  }
2205
- /** Sets `fill: "rgba(255,254,212,1)"`. */
2325
+ /** Sets `fill: "rgba(254, 249, 195, 1)"`. */
2206
2326
  get fYellow100() {
2207
- return this.add("fill", "rgba(255,254,212,1)");
2327
+ return this.add("fill", "rgba(254, 249, 195, 1)");
2208
2328
  }
2209
- /** Sets `fill: "rgba(255,250,180,1)"`. */
2329
+ /** Sets `fill: "rgba(254, 240, 138, 1)"`. */
2210
2330
  get fYellow200() {
2211
- return this.add("fill", "rgba(255,250,180,1)");
2331
+ return this.add("fill", "rgba(254, 240, 138, 1)");
2212
2332
  }
2213
- /** Sets `fill: "rgba(255,240,150,1)"`. */
2333
+ /** Sets `fill: "rgba(253, 224, 71, 1)"`. */
2214
2334
  get fYellow300() {
2215
- return this.add("fill", "rgba(255,240,150,1)");
2335
+ return this.add("fill", "rgba(253, 224, 71, 1)");
2216
2336
  }
2217
- /** Sets `fill: "rgba(255,225,123,1)"`. */
2337
+ /** Sets `fill: "rgba(250, 204, 21, 1)"`. */
2218
2338
  get fYellow400() {
2219
- return this.add("fill", "rgba(255,225,123,1)");
2339
+ return this.add("fill", "rgba(250, 204, 21, 1)");
2220
2340
  }
2221
- /** Sets `fill: "rgba(255,204,99,1)"`. */
2341
+ /** Sets `fill: "rgba(234, 179, 8, 1)"`. */
2222
2342
  get fYellow500() {
2223
- return this.add("fill", "rgba(255,204,99,1)");
2343
+ return this.add("fill", "rgba(234, 179, 8, 1)");
2224
2344
  }
2225
- /** Sets `fill: "rgba(246,177,78,1)"`. */
2345
+ /** Sets `fill: "rgba(202, 138, 4, 1)"`. */
2226
2346
  get fYellow600() {
2227
- return this.add("fill", "rgba(246,177,78,1)");
2347
+ return this.add("fill", "rgba(202, 138, 4, 1)");
2228
2348
  }
2229
- /** Sets `fill: "rgba(207,150,73,1)"`. */
2349
+ /** Sets `fill: "rgba(161, 98, 7, 1)"`. */
2230
2350
  get fYellow700() {
2231
- return this.add("fill", "rgba(207,150,73,1)");
2351
+ return this.add("fill", "rgba(161, 98, 7, 1)");
2232
2352
  }
2233
- /** Sets `fill: "rgba(164,120,66,1)"`. */
2353
+ /** Sets `fill: "rgba(133, 77, 14, 1)"`. */
2234
2354
  get fYellow800() {
2235
- return this.add("fill", "rgba(164,120,66,1)");
2355
+ return this.add("fill", "rgba(133, 77, 14, 1)");
2236
2356
  }
2237
- /** Sets `fill: "rgba(120,89,54,1)"`. */
2357
+ /** Sets `fill: "rgba(113, 63, 18, 1)"`. */
2238
2358
  get fYellow900() {
2239
- return this.add("fill", "rgba(120,89,54,1)");
2359
+ return this.add("fill", "rgba(113, 63, 18, 1)");
2240
2360
  }
2241
- /** Sets `fill: "rgba(250,255,250,1)"`. */
2361
+ /** Sets `fill: "rgba(236, 253, 245, 1)"`. */
2242
2362
  get fGreen50() {
2243
- return this.add("fill", "rgba(250,255,250,1)");
2363
+ return this.add("fill", "rgba(236, 253, 245, 1)");
2244
2364
  }
2245
- /** Sets `fill: "rgba(223,248,216,1)"`. */
2365
+ /** Sets `fill: "rgba(209, 250, 229, 1)"`. */
2246
2366
  get fGreen100() {
2247
- return this.add("fill", "rgba(223,248,216,1)");
2367
+ return this.add("fill", "rgba(209, 250, 229, 1)");
2248
2368
  }
2249
- /** Sets `fill: "rgba(199,239,183,1)"`. */
2369
+ /** Sets `fill: "rgba(167, 243, 208, 1)"`. */
2250
2370
  get fGreen200() {
2251
- return this.add("fill", "rgba(199,239,183,1)");
2371
+ return this.add("fill", "rgba(167, 243, 208, 1)");
2252
2372
  }
2253
- /** Sets `fill: "rgba(179,226,153,1)"`. */
2373
+ /** Sets `fill: "rgba(110, 231, 183, 1)"`. */
2254
2374
  get fGreen300() {
2255
- return this.add("fill", "rgba(179,226,153,1)");
2375
+ return this.add("fill", "rgba(110, 231, 183, 1)");
2256
2376
  }
2257
- /** Sets `fill: "rgba(163,208,126,1)"`. */
2377
+ /** Sets `fill: "rgba(52, 211, 153, 1)"`. */
2258
2378
  get fGreen400() {
2259
- return this.add("fill", "rgba(163,208,126,1)");
2379
+ return this.add("fill", "rgba(52, 211, 153, 1)");
2260
2380
  }
2261
- /** Sets `fill: "rgba(146,185,101,1)"`. */
2381
+ /** Sets `fill: "rgba(16, 185, 129, 1)"`. */
2262
2382
  get fGreen500() {
2263
- return this.add("fill", "rgba(146,185,101,1)");
2383
+ return this.add("fill", "rgba(16, 185, 129, 1)");
2264
2384
  }
2265
- /** Sets `fill: "rgba(126,156,79,1)"`. */
2385
+ /** Sets `fill: "rgba(5, 150, 105, 1)"`. */
2266
2386
  get fGreen600() {
2267
- return this.add("fill", "rgba(126,156,79,1)");
2387
+ return this.add("fill", "rgba(5, 150, 105, 1)");
2268
2388
  }
2269
- /** Sets `fill: "rgba(101,120,57,1)"`. */
2389
+ /** Sets `fill: "rgba(4, 120, 87, 1)"`. */
2270
2390
  get fGreen700() {
2271
- return this.add("fill", "rgba(101,120,57,1)");
2391
+ return this.add("fill", "rgba(4, 120, 87, 1)");
2272
2392
  }
2273
- /** Sets `fill: "rgba(64,93,44,1)"`. */
2393
+ /** Sets `fill: "rgba(6, 95, 70, 1)"`. */
2274
2394
  get fGreen800() {
2275
- return this.add("fill", "rgba(64,93,44,1)");
2395
+ return this.add("fill", "rgba(6, 95, 70, 1)");
2276
2396
  }
2277
- /** Sets `fill: "rgba(34,64,31,1)"`. */
2397
+ /** Sets `fill: "rgba(6, 78, 59, 1)"`. */
2278
2398
  get fGreen900() {
2279
- return this.add("fill", "rgba(34,64,31,1)");
2399
+ return this.add("fill", "rgba(6, 78, 59, 1)");
2400
+ }
2401
+ /** Sets `fill: "rgba(245, 243, 255, 1)"`. */
2402
+ get fPurple50() {
2403
+ return this.add("fill", "rgba(245, 243, 255, 1)");
2404
+ }
2405
+ /** Sets `fill: "rgba(237, 233, 254, 1)"`. */
2406
+ get fPurple100() {
2407
+ return this.add("fill", "rgba(237, 233, 254, 1)");
2408
+ }
2409
+ /** Sets `fill: "rgba(221, 214, 254, 1)"`. */
2410
+ get fPurple200() {
2411
+ return this.add("fill", "rgba(221, 214, 254, 1)");
2412
+ }
2413
+ /** Sets `fill: "rgba(196, 181, 253, 1)"`. */
2414
+ get fPurple300() {
2415
+ return this.add("fill", "rgba(196, 181, 253, 1)");
2416
+ }
2417
+ /** Sets `fill: "rgba(167, 139, 250, 1)"`. */
2418
+ get fPurple400() {
2419
+ return this.add("fill", "rgba(167, 139, 250, 1)");
2420
+ }
2421
+ /** Sets `fill: "rgba(139, 92, 246, 1)"`. */
2422
+ get fPurple500() {
2423
+ return this.add("fill", "rgba(139, 92, 246, 1)");
2424
+ }
2425
+ /** Sets `fill: "rgba(124, 58, 237, 1)"`. */
2426
+ get fPurple600() {
2427
+ return this.add("fill", "rgba(124, 58, 237, 1)");
2428
+ }
2429
+ /** Sets `fill: "rgba(109, 40, 217, 1)"`. */
2430
+ get fPurple700() {
2431
+ return this.add("fill", "rgba(109, 40, 217, 1)");
2432
+ }
2433
+ /** Sets `fill: "rgba(91, 33, 182, 1)"`. */
2434
+ get fPurple800() {
2435
+ return this.add("fill", "rgba(91, 33, 182, 1)");
2436
+ }
2437
+ /** Sets `fill: "rgba(76, 29, 149, 1)"`. */
2438
+ get fPurple900() {
2439
+ return this.add("fill", "rgba(76, 29, 149, 1)");
2280
2440
  }
2281
- /** Sets `fill: "rgba(245,243,255,1)"`. */
2282
- get fViolet50() {
2283
- return this.add("fill", "rgba(245,243,255,1)");
2441
+ /** Sets `fill: "rgba(255, 247, 237, 1)"`. */
2442
+ get fOrange50() {
2443
+ return this.add("fill", "rgba(255, 247, 237, 1)");
2284
2444
  }
2285
- /** Sets `fill: "rgba(238,234,253,1)"`. */
2286
- get fViolet100() {
2287
- return this.add("fill", "rgba(238,234,253,1)");
2445
+ /** Sets `fill: "rgba(255, 237, 213, 1)"`. */
2446
+ get fOrange100() {
2447
+ return this.add("fill", "rgba(255, 237, 213, 1)");
2288
2448
  }
2289
- /** Sets `fill: "rgba(232,225,252,1)"`. */
2290
- get fViolet200() {
2291
- return this.add("fill", "rgba(232,225,252,1)");
2449
+ /** Sets `fill: "rgba(254, 215, 170, 1)"`. */
2450
+ get fOrange200() {
2451
+ return this.add("fill", "rgba(254, 215, 170, 1)");
2292
2452
  }
2293
- /** Sets `fill: "rgba(218,205,246,1)"`. */
2294
- get fViolet300() {
2295
- return this.add("fill", "rgba(218,205,246,1)");
2453
+ /** Sets `fill: "rgba(253, 186, 116, 1)"`. */
2454
+ get fOrange300() {
2455
+ return this.add("fill", "rgba(253, 186, 116, 1)");
2296
2456
  }
2297
- /** Sets `fill: "rgba(204,186,236,1)"`. */
2298
- get fViolet400() {
2299
- return this.add("fill", "rgba(204,186,236,1)");
2457
+ /** Sets `fill: "rgba(251, 146, 60, 1)"`. */
2458
+ get fOrange400() {
2459
+ return this.add("fill", "rgba(251, 146, 60, 1)");
2300
2460
  }
2301
- /** Sets `fill: "rgba(190,167,223,1)"`. */
2302
- get fViolet500() {
2303
- return this.add("fill", "rgba(190,167,223,1)");
2461
+ /** Sets `fill: "rgba(249, 115, 22, 1)"`. */
2462
+ get fOrange500() {
2463
+ return this.add("fill", "rgba(249, 115, 22, 1)");
2304
2464
  }
2305
- /** Sets `fill: "rgba(173,147,205,1)"`. */
2306
- get fViolet600() {
2307
- return this.add("fill", "rgba(173,147,205,1)");
2465
+ /** Sets `fill: "rgba(234, 88, 12, 1)"`. */
2466
+ get fOrange600() {
2467
+ return this.add("fill", "rgba(234, 88, 12, 1)");
2308
2468
  }
2309
- /** Sets `fill: "rgba(153,126,181,1)"`. */
2310
- get fViolet700() {
2311
- return this.add("fill", "rgba(153,126,181,1)");
2469
+ /** Sets `fill: "rgba(194, 65, 12, 1)"`. */
2470
+ get fOrange700() {
2471
+ return this.add("fill", "rgba(194, 65, 12, 1)");
2312
2472
  }
2313
- /** Sets `fill: "rgba(128,103,151,1)"`. */
2314
- get fViolet800() {
2315
- return this.add("fill", "rgba(128,103,151,1)");
2473
+ /** Sets `fill: "rgba(154, 52, 18, 1)"`. */
2474
+ get fOrange800() {
2475
+ return this.add("fill", "rgba(154, 52, 18, 1)");
2316
2476
  }
2317
- /** Sets `fill: "rgba(100,78,116,1)"`. */
2318
- get fViolet900() {
2319
- return this.add("fill", "rgba(100,78,116,1)");
2477
+ /** Sets `fill: "rgba(124, 45, 18, 1)"`. */
2478
+ get fOrange900() {
2479
+ return this.add("fill", "rgba(124, 45, 18, 1)");
2320
2480
  }
2321
2481
  /** Sets `fill: value`. */
2322
2482
  fill(value) {
@@ -3663,68 +3823,78 @@ function px(pixels) {
3663
3823
  exports.px = px;
3664
3824
  var Palette;
3665
3825
  (function (Palette) {
3666
- Palette["White"] = "rgba(254,254,254,1)";
3826
+ Palette["White"] = "rgba(255,255,255,1)";
3667
3827
  Palette["Transparent"] = "rgba(0,0,0,0)";
3668
- Palette["Gray50"] = "rgba(255,253,253,1)";
3669
- Palette["Gray100"] = "rgba(247,245,245,1)";
3670
- Palette["Gray200"] = "rgba(236,235,235,1)";
3671
- Palette["Gray300"] = "rgba(221,220,220,1)";
3672
- Palette["Gray400"] = "rgba(201,201,201,1)";
3673
- Palette["Gray500"] = "rgba(175,175,175,1)";
3674
- Palette["Gray600"] = "rgba(141,141,141,1)";
3675
- Palette["Gray700"] = "rgba(100,100,100,1)";
3676
- Palette["Gray800"] = "rgba(53,53,53,1)";
3677
- Palette["Gray900"] = "rgba(36,36,36,1)";
3678
- Palette["LightBlue50"] = "rgba(240,249,255,1)";
3679
- Palette["LightBlue100"] = "rgba(224,242,254,1)";
3680
- Palette["LightBlue200"] = "rgba(186,230,253,1)";
3681
- Palette["LightBlue300"] = "rgba(125,211,252,1)";
3682
- Palette["LightBlue400"] = "rgba(56,189,248,1)";
3683
- Palette["LightBlue500"] = "rgba(14,165,233,1)";
3684
- Palette["LightBlue600"] = "rgba(2,143,199,1)";
3685
- Palette["LightBlue700"] = "rgba(3,105,161,1)";
3686
- Palette["LightBlue800"] = "rgba(7,89,133,1)";
3687
- Palette["LightBlue900"] = "rgba(12,74,110,1)";
3688
- Palette["Red50"] = "rgba(255,242,242,1)";
3689
- Palette["Red100"] = "rgba(253,210,209,1)";
3690
- Palette["Red200"] = "rgba(249,181,177,1)";
3691
- Palette["Red300"] = "rgba(242,155,148,1)";
3692
- Palette["Red400"] = "rgba(232,133,122,1)";
3693
- Palette["Red500"] = "rgba(218,114,100,1)";
3694
- Palette["Red600"] = "rgba(200,98,81,1)";
3695
- Palette["Red700"] = "rgba(176,83,73,1)";
3696
- Palette["Red800"] = "rgba(149,68,64,1)";
3697
- Palette["Red900"] = "rgba(120,54,54,1)";
3698
- Palette["Yellow50"] = "rgba(255,254,242,1)";
3699
- Palette["Yellow100"] = "rgba(255,254,212,1)";
3700
- Palette["Yellow200"] = "rgba(255,250,180,1)";
3701
- Palette["Yellow300"] = "rgba(255,240,150,1)";
3702
- Palette["Yellow400"] = "rgba(255,225,123,1)";
3703
- Palette["Yellow500"] = "rgba(255,204,99,1)";
3704
- Palette["Yellow600"] = "rgba(246,177,78,1)";
3705
- Palette["Yellow700"] = "rgba(207,150,73,1)";
3706
- Palette["Yellow800"] = "rgba(164,120,66,1)";
3707
- Palette["Yellow900"] = "rgba(120,89,54,1)";
3708
- Palette["Green50"] = "rgba(250,255,250,1)";
3709
- Palette["Green100"] = "rgba(223,248,216,1)";
3710
- Palette["Green200"] = "rgba(199,239,183,1)";
3711
- Palette["Green300"] = "rgba(179,226,153,1)";
3712
- Palette["Green400"] = "rgba(163,208,126,1)";
3713
- Palette["Green500"] = "rgba(146,185,101,1)";
3714
- Palette["Green600"] = "rgba(126,156,79,1)";
3715
- Palette["Green700"] = "rgba(101,120,57,1)";
3716
- Palette["Green800"] = "rgba(64,93,44,1)";
3717
- Palette["Green900"] = "rgba(34,64,31,1)";
3718
- Palette["Violet50"] = "rgba(245,243,255,1)";
3719
- Palette["Violet100"] = "rgba(238,234,253,1)";
3720
- Palette["Violet200"] = "rgba(232,225,252,1)";
3721
- Palette["Violet300"] = "rgba(218,205,246,1)";
3722
- Palette["Violet400"] = "rgba(204,186,236,1)";
3723
- Palette["Violet500"] = "rgba(190,167,223,1)";
3724
- Palette["Violet600"] = "rgba(173,147,205,1)";
3725
- Palette["Violet700"] = "rgba(153,126,181,1)";
3726
- Palette["Violet800"] = "rgba(128,103,151,1)";
3727
- Palette["Violet900"] = "rgba(100,78,116,1)";
3828
+ Palette["Gray50"] = "rgba(255, 253, 253, 1)";
3829
+ Palette["Gray100"] = "rgba(247, 245, 245, 1)";
3830
+ Palette["Gray200"] = "rgba(236, 235, 235, 1)";
3831
+ Palette["Gray300"] = "rgba(221, 220, 220, 1)";
3832
+ Palette["Gray400"] = "rgba(201, 201, 201, 1)";
3833
+ Palette["Gray500"] = "rgba(175, 175, 175, 1)";
3834
+ Palette["Gray600"] = "rgba(141, 141, 141, 1)";
3835
+ Palette["Gray700"] = "rgba(100, 100, 100, 1)";
3836
+ Palette["Gray800"] = "rgba(53, 53, 53, 1)";
3837
+ Palette["Gray900"] = "rgba(36, 36, 36, 1)";
3838
+ Palette["Blue50"] = "rgba(239, 246, 255, 1)";
3839
+ Palette["Blue100"] = "rgba(219, 234, 254, 1)";
3840
+ Palette["Blue200"] = "rgba(191, 219, 254, 1)";
3841
+ Palette["Blue300"] = "rgba(147, 197, 253, 1)";
3842
+ Palette["Blue400"] = "rgba(96, 165, 250, 1)";
3843
+ Palette["Blue500"] = "rgba(59, 130, 246, 1)";
3844
+ Palette["Blue600"] = "rgba(37, 99, 235, 1)";
3845
+ Palette["Blue700"] = "rgba(29, 78, 216, 1)";
3846
+ Palette["Blue800"] = "rgba(30, 64, 175, 1)";
3847
+ Palette["Blue900"] = "rgba(30, 58, 138, 1)";
3848
+ Palette["Red50"] = "rgba(254, 242, 242, 1)";
3849
+ Palette["Red100"] = "rgba(254, 226, 226, 1)";
3850
+ Palette["Red200"] = "rgba(254, 202, 202, 1)";
3851
+ Palette["Red300"] = "rgba(252, 165, 165, 1)";
3852
+ Palette["Red400"] = "rgba(248, 113, 113, 1)";
3853
+ Palette["Red500"] = "rgba(239, 68, 68, 1)";
3854
+ Palette["Red600"] = "rgba(220, 38, 38, 1)";
3855
+ Palette["Red700"] = "rgba(185, 28, 28, 1)";
3856
+ Palette["Red800"] = "rgba(153, 27, 27, 1)";
3857
+ Palette["Red900"] = "rgba(127, 29, 29, 1)";
3858
+ Palette["Yellow50"] = "rgba(254, 252, 232, 1)";
3859
+ Palette["Yellow100"] = "rgba(254, 249, 195, 1)";
3860
+ Palette["Yellow200"] = "rgba(254, 240, 138, 1)";
3861
+ Palette["Yellow300"] = "rgba(253, 224, 71, 1)";
3862
+ Palette["Yellow400"] = "rgba(250, 204, 21, 1)";
3863
+ Palette["Yellow500"] = "rgba(234, 179, 8, 1)";
3864
+ Palette["Yellow600"] = "rgba(202, 138, 4, 1)";
3865
+ Palette["Yellow700"] = "rgba(161, 98, 7, 1)";
3866
+ Palette["Yellow800"] = "rgba(133, 77, 14, 1)";
3867
+ Palette["Yellow900"] = "rgba(113, 63, 18, 1)";
3868
+ Palette["Green50"] = "rgba(236, 253, 245, 1)";
3869
+ Palette["Green100"] = "rgba(209, 250, 229, 1)";
3870
+ Palette["Green200"] = "rgba(167, 243, 208, 1)";
3871
+ Palette["Green300"] = "rgba(110, 231, 183, 1)";
3872
+ Palette["Green400"] = "rgba(52, 211, 153, 1)";
3873
+ Palette["Green500"] = "rgba(16, 185, 129, 1)";
3874
+ Palette["Green600"] = "rgba(5, 150, 105, 1)";
3875
+ Palette["Green700"] = "rgba(4, 120, 87, 1)";
3876
+ Palette["Green800"] = "rgba(6, 95, 70, 1)";
3877
+ Palette["Green900"] = "rgba(6, 78, 59, 1)";
3878
+ Palette["Purple50"] = "rgba(245, 243, 255, 1)";
3879
+ Palette["Purple100"] = "rgba(237, 233, 254, 1)";
3880
+ Palette["Purple200"] = "rgba(221, 214, 254, 1)";
3881
+ Palette["Purple300"] = "rgba(196, 181, 253, 1)";
3882
+ Palette["Purple400"] = "rgba(167, 139, 250, 1)";
3883
+ Palette["Purple500"] = "rgba(139, 92, 246, 1)";
3884
+ Palette["Purple600"] = "rgba(124, 58, 237, 1)";
3885
+ Palette["Purple700"] = "rgba(109, 40, 217, 1)";
3886
+ Palette["Purple800"] = "rgba(91, 33, 182, 1)";
3887
+ Palette["Purple900"] = "rgba(76, 29, 149, 1)";
3888
+ Palette["Orange50"] = "rgba(255, 247, 237, 1)";
3889
+ Palette["Orange100"] = "rgba(255, 237, 213, 1)";
3890
+ Palette["Orange200"] = "rgba(254, 215, 170, 1)";
3891
+ Palette["Orange300"] = "rgba(253, 186, 116, 1)";
3892
+ Palette["Orange400"] = "rgba(251, 146, 60, 1)";
3893
+ Palette["Orange500"] = "rgba(249, 115, 22, 1)";
3894
+ Palette["Orange600"] = "rgba(234, 88, 12, 1)";
3895
+ Palette["Orange700"] = "rgba(194, 65, 12, 1)";
3896
+ Palette["Orange800"] = "rgba(154, 52, 18, 1)";
3897
+ Palette["Orange900"] = "rgba(124, 45, 18, 1)";
3728
3898
  })(Palette = exports.Palette || (exports.Palette = {}));
3729
3899
  /** An entry point for Css expressions. CssBuilder is immutable so this is safe to share. */
3730
3900
  exports.Css = new CssBuilder({ rules: {}, enabled: true, important: false, selector: undefined });