@homebound/beam 2.305.0 → 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.
- package/dist/Css.d.ts +557 -387
- package/dist/Css.js +803 -633
- package/dist/components/Accordion.js +1 -1
- package/dist/components/Button.js +16 -16
- package/dist/components/Chip.js +4 -4
- package/dist/components/CssReset.js +2 -2
- package/dist/components/DnDGrid/DnDGridItemHandle.js +1 -1
- package/dist/components/Filters/Filters.js +1 -1
- package/dist/components/IconButton.js +1 -1
- package/dist/components/Loader.js +1 -1
- package/dist/components/NavLink.js +2 -2
- package/dist/components/Pagination.js +1 -1
- package/dist/components/Snackbar/SnackbarNotice.js +2 -2
- package/dist/components/Stepper.js +5 -6
- package/dist/components/Table/TableStyles.js +1 -1
- package/dist/components/Table/components/ExpandableHeader.js +1 -1
- package/dist/components/Table/components/Row.js +3 -3
- package/dist/components/Table/components/SortHeader.js +1 -1
- package/dist/components/Table/utils/utils.js +1 -1
- package/dist/components/Tabs.js +3 -3
- package/dist/components/Tag.js +3 -3
- package/dist/components/Toast/Toast.js +1 -1
- package/dist/components/internal/CompoundField.js +3 -3
- package/dist/components/internal/DatePicker/DatePicker.css +2 -2
- package/dist/components/internal/DatePicker/Day.js +4 -4
- package/dist/components/internal/MenuItem.js +3 -9
- package/dist/inputs/CheckboxBase.js +3 -3
- package/dist/inputs/RadioGroupField.js +2 -2
- package/dist/inputs/RichTextField.js +3 -3
- package/dist/inputs/Switch.js +3 -3
- package/dist/inputs/TextFieldBase.js +1 -1
- package/dist/inputs/ToggleButton.js +1 -1
- package/dist/inputs/ToggleChipGroup.js +2 -2
- package/dist/inputs/TreeSelectField/TreeOption.js +1 -1
- package/dist/inputs/internal/ComboBoxInput.js +1 -1
- package/dist/inputs/internal/Option.js +2 -2
- 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(
|
|
46
|
+
/** Sets `borderColor: "rgba(255,255,255,1)"`. */
|
|
47
47
|
get bWhite() {
|
|
48
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
95
|
-
get
|
|
96
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
99
|
-
get
|
|
100
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
103
|
-
get
|
|
104
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
107
|
-
get
|
|
108
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
111
|
-
get
|
|
112
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
115
|
-
get
|
|
116
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
119
|
-
get
|
|
120
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
123
|
-
get
|
|
124
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
127
|
-
get
|
|
128
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
131
|
-
get
|
|
132
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
134
|
+
/** Sets `borderColor: "rgba(254, 242, 242, 1)"`. */
|
|
135
135
|
get bRed50() {
|
|
136
|
-
return this.add("borderColor", "rgba(
|
|
136
|
+
return this.add("borderColor", "rgba(254, 242, 242, 1)");
|
|
137
137
|
}
|
|
138
|
-
/** Sets `borderColor: "rgba(
|
|
138
|
+
/** Sets `borderColor: "rgba(254, 226, 226, 1)"`. */
|
|
139
139
|
get bRed100() {
|
|
140
|
-
return this.add("borderColor", "rgba(
|
|
140
|
+
return this.add("borderColor", "rgba(254, 226, 226, 1)");
|
|
141
141
|
}
|
|
142
|
-
/** Sets `borderColor: "rgba(
|
|
142
|
+
/** Sets `borderColor: "rgba(254, 202, 202, 1)"`. */
|
|
143
143
|
get bRed200() {
|
|
144
|
-
return this.add("borderColor", "rgba(
|
|
144
|
+
return this.add("borderColor", "rgba(254, 202, 202, 1)");
|
|
145
145
|
}
|
|
146
|
-
/** Sets `borderColor: "rgba(
|
|
146
|
+
/** Sets `borderColor: "rgba(252, 165, 165, 1)"`. */
|
|
147
147
|
get bRed300() {
|
|
148
|
-
return this.add("borderColor", "rgba(
|
|
148
|
+
return this.add("borderColor", "rgba(252, 165, 165, 1)");
|
|
149
149
|
}
|
|
150
|
-
/** Sets `borderColor: "rgba(
|
|
150
|
+
/** Sets `borderColor: "rgba(248, 113, 113, 1)"`. */
|
|
151
151
|
get bRed400() {
|
|
152
|
-
return this.add("borderColor", "rgba(
|
|
152
|
+
return this.add("borderColor", "rgba(248, 113, 113, 1)");
|
|
153
153
|
}
|
|
154
|
-
/** Sets `borderColor: "rgba(
|
|
154
|
+
/** Sets `borderColor: "rgba(239, 68, 68, 1)"`. */
|
|
155
155
|
get bRed500() {
|
|
156
|
-
return this.add("borderColor", "rgba(
|
|
156
|
+
return this.add("borderColor", "rgba(239, 68, 68, 1)");
|
|
157
157
|
}
|
|
158
|
-
/** Sets `borderColor: "rgba(
|
|
158
|
+
/** Sets `borderColor: "rgba(220, 38, 38, 1)"`. */
|
|
159
159
|
get bRed600() {
|
|
160
|
-
return this.add("borderColor", "rgba(
|
|
160
|
+
return this.add("borderColor", "rgba(220, 38, 38, 1)");
|
|
161
161
|
}
|
|
162
|
-
/** Sets `borderColor: "rgba(
|
|
162
|
+
/** Sets `borderColor: "rgba(185, 28, 28, 1)"`. */
|
|
163
163
|
get bRed700() {
|
|
164
|
-
return this.add("borderColor", "rgba(
|
|
164
|
+
return this.add("borderColor", "rgba(185, 28, 28, 1)");
|
|
165
165
|
}
|
|
166
|
-
/** Sets `borderColor: "rgba(
|
|
166
|
+
/** Sets `borderColor: "rgba(153, 27, 27, 1)"`. */
|
|
167
167
|
get bRed800() {
|
|
168
|
-
return this.add("borderColor", "rgba(
|
|
168
|
+
return this.add("borderColor", "rgba(153, 27, 27, 1)");
|
|
169
169
|
}
|
|
170
|
-
/** Sets `borderColor: "rgba(
|
|
170
|
+
/** Sets `borderColor: "rgba(127, 29, 29, 1)"`. */
|
|
171
171
|
get bRed900() {
|
|
172
|
-
return this.add("borderColor", "rgba(
|
|
172
|
+
return this.add("borderColor", "rgba(127, 29, 29, 1)");
|
|
173
173
|
}
|
|
174
|
-
/** Sets `borderColor: "rgba(
|
|
174
|
+
/** Sets `borderColor: "rgba(254, 252, 232, 1)"`. */
|
|
175
175
|
get bYellow50() {
|
|
176
|
-
return this.add("borderColor", "rgba(
|
|
176
|
+
return this.add("borderColor", "rgba(254, 252, 232, 1)");
|
|
177
177
|
}
|
|
178
|
-
/** Sets `borderColor: "rgba(
|
|
178
|
+
/** Sets `borderColor: "rgba(254, 249, 195, 1)"`. */
|
|
179
179
|
get bYellow100() {
|
|
180
|
-
return this.add("borderColor", "rgba(
|
|
180
|
+
return this.add("borderColor", "rgba(254, 249, 195, 1)");
|
|
181
181
|
}
|
|
182
|
-
/** Sets `borderColor: "rgba(
|
|
182
|
+
/** Sets `borderColor: "rgba(254, 240, 138, 1)"`. */
|
|
183
183
|
get bYellow200() {
|
|
184
|
-
return this.add("borderColor", "rgba(
|
|
184
|
+
return this.add("borderColor", "rgba(254, 240, 138, 1)");
|
|
185
185
|
}
|
|
186
|
-
/** Sets `borderColor: "rgba(
|
|
186
|
+
/** Sets `borderColor: "rgba(253, 224, 71, 1)"`. */
|
|
187
187
|
get bYellow300() {
|
|
188
|
-
return this.add("borderColor", "rgba(
|
|
188
|
+
return this.add("borderColor", "rgba(253, 224, 71, 1)");
|
|
189
189
|
}
|
|
190
|
-
/** Sets `borderColor: "rgba(
|
|
190
|
+
/** Sets `borderColor: "rgba(250, 204, 21, 1)"`. */
|
|
191
191
|
get bYellow400() {
|
|
192
|
-
return this.add("borderColor", "rgba(
|
|
192
|
+
return this.add("borderColor", "rgba(250, 204, 21, 1)");
|
|
193
193
|
}
|
|
194
|
-
/** Sets `borderColor: "rgba(
|
|
194
|
+
/** Sets `borderColor: "rgba(234, 179, 8, 1)"`. */
|
|
195
195
|
get bYellow500() {
|
|
196
|
-
return this.add("borderColor", "rgba(
|
|
196
|
+
return this.add("borderColor", "rgba(234, 179, 8, 1)");
|
|
197
197
|
}
|
|
198
|
-
/** Sets `borderColor: "rgba(
|
|
198
|
+
/** Sets `borderColor: "rgba(202, 138, 4, 1)"`. */
|
|
199
199
|
get bYellow600() {
|
|
200
|
-
return this.add("borderColor", "rgba(
|
|
200
|
+
return this.add("borderColor", "rgba(202, 138, 4, 1)");
|
|
201
201
|
}
|
|
202
|
-
/** Sets `borderColor: "rgba(
|
|
202
|
+
/** Sets `borderColor: "rgba(161, 98, 7, 1)"`. */
|
|
203
203
|
get bYellow700() {
|
|
204
|
-
return this.add("borderColor", "rgba(
|
|
204
|
+
return this.add("borderColor", "rgba(161, 98, 7, 1)");
|
|
205
205
|
}
|
|
206
|
-
/** Sets `borderColor: "rgba(
|
|
206
|
+
/** Sets `borderColor: "rgba(133, 77, 14, 1)"`. */
|
|
207
207
|
get bYellow800() {
|
|
208
|
-
return this.add("borderColor", "rgba(
|
|
208
|
+
return this.add("borderColor", "rgba(133, 77, 14, 1)");
|
|
209
209
|
}
|
|
210
|
-
/** Sets `borderColor: "rgba(
|
|
210
|
+
/** Sets `borderColor: "rgba(113, 63, 18, 1)"`. */
|
|
211
211
|
get bYellow900() {
|
|
212
|
-
return this.add("borderColor", "rgba(
|
|
212
|
+
return this.add("borderColor", "rgba(113, 63, 18, 1)");
|
|
213
213
|
}
|
|
214
|
-
/** Sets `borderColor: "rgba(
|
|
214
|
+
/** Sets `borderColor: "rgba(236, 253, 245, 1)"`. */
|
|
215
215
|
get bGreen50() {
|
|
216
|
-
return this.add("borderColor", "rgba(
|
|
216
|
+
return this.add("borderColor", "rgba(236, 253, 245, 1)");
|
|
217
217
|
}
|
|
218
|
-
/** Sets `borderColor: "rgba(
|
|
218
|
+
/** Sets `borderColor: "rgba(209, 250, 229, 1)"`. */
|
|
219
219
|
get bGreen100() {
|
|
220
|
-
return this.add("borderColor", "rgba(
|
|
220
|
+
return this.add("borderColor", "rgba(209, 250, 229, 1)");
|
|
221
221
|
}
|
|
222
|
-
/** Sets `borderColor: "rgba(
|
|
222
|
+
/** Sets `borderColor: "rgba(167, 243, 208, 1)"`. */
|
|
223
223
|
get bGreen200() {
|
|
224
|
-
return this.add("borderColor", "rgba(
|
|
224
|
+
return this.add("borderColor", "rgba(167, 243, 208, 1)");
|
|
225
225
|
}
|
|
226
|
-
/** Sets `borderColor: "rgba(
|
|
226
|
+
/** Sets `borderColor: "rgba(110, 231, 183, 1)"`. */
|
|
227
227
|
get bGreen300() {
|
|
228
|
-
return this.add("borderColor", "rgba(
|
|
228
|
+
return this.add("borderColor", "rgba(110, 231, 183, 1)");
|
|
229
229
|
}
|
|
230
|
-
/** Sets `borderColor: "rgba(
|
|
230
|
+
/** Sets `borderColor: "rgba(52, 211, 153, 1)"`. */
|
|
231
231
|
get bGreen400() {
|
|
232
|
-
return this.add("borderColor", "rgba(
|
|
232
|
+
return this.add("borderColor", "rgba(52, 211, 153, 1)");
|
|
233
233
|
}
|
|
234
|
-
/** Sets `borderColor: "rgba(
|
|
234
|
+
/** Sets `borderColor: "rgba(16, 185, 129, 1)"`. */
|
|
235
235
|
get bGreen500() {
|
|
236
|
-
return this.add("borderColor", "rgba(
|
|
236
|
+
return this.add("borderColor", "rgba(16, 185, 129, 1)");
|
|
237
237
|
}
|
|
238
|
-
/** Sets `borderColor: "rgba(
|
|
238
|
+
/** Sets `borderColor: "rgba(5, 150, 105, 1)"`. */
|
|
239
239
|
get bGreen600() {
|
|
240
|
-
return this.add("borderColor", "rgba(
|
|
240
|
+
return this.add("borderColor", "rgba(5, 150, 105, 1)");
|
|
241
241
|
}
|
|
242
|
-
/** Sets `borderColor: "rgba(
|
|
242
|
+
/** Sets `borderColor: "rgba(4, 120, 87, 1)"`. */
|
|
243
243
|
get bGreen700() {
|
|
244
|
-
return this.add("borderColor", "rgba(
|
|
244
|
+
return this.add("borderColor", "rgba(4, 120, 87, 1)");
|
|
245
245
|
}
|
|
246
|
-
/** Sets `borderColor: "rgba(
|
|
246
|
+
/** Sets `borderColor: "rgba(6, 95, 70, 1)"`. */
|
|
247
247
|
get bGreen800() {
|
|
248
|
-
return this.add("borderColor", "rgba(
|
|
248
|
+
return this.add("borderColor", "rgba(6, 95, 70, 1)");
|
|
249
249
|
}
|
|
250
|
-
/** Sets `borderColor: "rgba(
|
|
250
|
+
/** Sets `borderColor: "rgba(6, 78, 59, 1)"`. */
|
|
251
251
|
get bGreen900() {
|
|
252
|
-
return this.add("borderColor", "rgba(
|
|
252
|
+
return this.add("borderColor", "rgba(6, 78, 59, 1)");
|
|
253
253
|
}
|
|
254
|
-
/** Sets `borderColor: "rgba(245,243,255,1)"`. */
|
|
255
|
-
get
|
|
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(
|
|
259
|
-
get
|
|
260
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
263
|
-
get
|
|
264
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
267
|
-
get
|
|
268
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
271
|
-
get
|
|
272
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
275
|
-
get
|
|
276
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
279
|
-
get
|
|
280
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
283
|
-
get
|
|
284
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
287
|
-
get
|
|
288
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
291
|
-
get
|
|
292
|
-
return this.add("borderColor", "rgba(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
1609
|
+
/** Sets `color: "rgba(255,255,255,1)"`. */
|
|
1570
1610
|
get white() {
|
|
1571
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1618
|
-
get
|
|
1619
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1622
|
-
get
|
|
1623
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1626
|
-
get
|
|
1627
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1630
|
-
get
|
|
1631
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1634
|
-
get
|
|
1635
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1638
|
-
get
|
|
1639
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1642
|
-
get
|
|
1643
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1646
|
-
get
|
|
1647
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1650
|
-
get
|
|
1651
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1654
|
-
get
|
|
1655
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1697
|
+
/** Sets `color: "rgba(254, 242, 242, 1)"`. */
|
|
1658
1698
|
get red50() {
|
|
1659
|
-
return this.add("color", "rgba(
|
|
1699
|
+
return this.add("color", "rgba(254, 242, 242, 1)");
|
|
1660
1700
|
}
|
|
1661
|
-
/** Sets `color: "rgba(
|
|
1701
|
+
/** Sets `color: "rgba(254, 226, 226, 1)"`. */
|
|
1662
1702
|
get red100() {
|
|
1663
|
-
return this.add("color", "rgba(
|
|
1703
|
+
return this.add("color", "rgba(254, 226, 226, 1)");
|
|
1664
1704
|
}
|
|
1665
|
-
/** Sets `color: "rgba(
|
|
1705
|
+
/** Sets `color: "rgba(254, 202, 202, 1)"`. */
|
|
1666
1706
|
get red200() {
|
|
1667
|
-
return this.add("color", "rgba(
|
|
1707
|
+
return this.add("color", "rgba(254, 202, 202, 1)");
|
|
1668
1708
|
}
|
|
1669
|
-
/** Sets `color: "rgba(
|
|
1709
|
+
/** Sets `color: "rgba(252, 165, 165, 1)"`. */
|
|
1670
1710
|
get red300() {
|
|
1671
|
-
return this.add("color", "rgba(
|
|
1711
|
+
return this.add("color", "rgba(252, 165, 165, 1)");
|
|
1672
1712
|
}
|
|
1673
|
-
/** Sets `color: "rgba(
|
|
1713
|
+
/** Sets `color: "rgba(248, 113, 113, 1)"`. */
|
|
1674
1714
|
get red400() {
|
|
1675
|
-
return this.add("color", "rgba(
|
|
1715
|
+
return this.add("color", "rgba(248, 113, 113, 1)");
|
|
1676
1716
|
}
|
|
1677
|
-
/** Sets `color: "rgba(
|
|
1717
|
+
/** Sets `color: "rgba(239, 68, 68, 1)"`. */
|
|
1678
1718
|
get red500() {
|
|
1679
|
-
return this.add("color", "rgba(
|
|
1719
|
+
return this.add("color", "rgba(239, 68, 68, 1)");
|
|
1680
1720
|
}
|
|
1681
|
-
/** Sets `color: "rgba(
|
|
1721
|
+
/** Sets `color: "rgba(220, 38, 38, 1)"`. */
|
|
1682
1722
|
get red600() {
|
|
1683
|
-
return this.add("color", "rgba(
|
|
1723
|
+
return this.add("color", "rgba(220, 38, 38, 1)");
|
|
1684
1724
|
}
|
|
1685
|
-
/** Sets `color: "rgba(
|
|
1725
|
+
/** Sets `color: "rgba(185, 28, 28, 1)"`. */
|
|
1686
1726
|
get red700() {
|
|
1687
|
-
return this.add("color", "rgba(
|
|
1727
|
+
return this.add("color", "rgba(185, 28, 28, 1)");
|
|
1688
1728
|
}
|
|
1689
|
-
/** Sets `color: "rgba(
|
|
1729
|
+
/** Sets `color: "rgba(153, 27, 27, 1)"`. */
|
|
1690
1730
|
get red800() {
|
|
1691
|
-
return this.add("color", "rgba(
|
|
1731
|
+
return this.add("color", "rgba(153, 27, 27, 1)");
|
|
1692
1732
|
}
|
|
1693
|
-
/** Sets `color: "rgba(
|
|
1733
|
+
/** Sets `color: "rgba(127, 29, 29, 1)"`. */
|
|
1694
1734
|
get red900() {
|
|
1695
|
-
return this.add("color", "rgba(
|
|
1735
|
+
return this.add("color", "rgba(127, 29, 29, 1)");
|
|
1696
1736
|
}
|
|
1697
|
-
/** Sets `color: "rgba(
|
|
1737
|
+
/** Sets `color: "rgba(254, 252, 232, 1)"`. */
|
|
1698
1738
|
get yellow50() {
|
|
1699
|
-
return this.add("color", "rgba(
|
|
1739
|
+
return this.add("color", "rgba(254, 252, 232, 1)");
|
|
1700
1740
|
}
|
|
1701
|
-
/** Sets `color: "rgba(
|
|
1741
|
+
/** Sets `color: "rgba(254, 249, 195, 1)"`. */
|
|
1702
1742
|
get yellow100() {
|
|
1703
|
-
return this.add("color", "rgba(
|
|
1743
|
+
return this.add("color", "rgba(254, 249, 195, 1)");
|
|
1704
1744
|
}
|
|
1705
|
-
/** Sets `color: "rgba(
|
|
1745
|
+
/** Sets `color: "rgba(254, 240, 138, 1)"`. */
|
|
1706
1746
|
get yellow200() {
|
|
1707
|
-
return this.add("color", "rgba(
|
|
1747
|
+
return this.add("color", "rgba(254, 240, 138, 1)");
|
|
1708
1748
|
}
|
|
1709
|
-
/** Sets `color: "rgba(
|
|
1749
|
+
/** Sets `color: "rgba(253, 224, 71, 1)"`. */
|
|
1710
1750
|
get yellow300() {
|
|
1711
|
-
return this.add("color", "rgba(
|
|
1751
|
+
return this.add("color", "rgba(253, 224, 71, 1)");
|
|
1712
1752
|
}
|
|
1713
|
-
/** Sets `color: "rgba(
|
|
1753
|
+
/** Sets `color: "rgba(250, 204, 21, 1)"`. */
|
|
1714
1754
|
get yellow400() {
|
|
1715
|
-
return this.add("color", "rgba(
|
|
1755
|
+
return this.add("color", "rgba(250, 204, 21, 1)");
|
|
1716
1756
|
}
|
|
1717
|
-
/** Sets `color: "rgba(
|
|
1757
|
+
/** Sets `color: "rgba(234, 179, 8, 1)"`. */
|
|
1718
1758
|
get yellow500() {
|
|
1719
|
-
return this.add("color", "rgba(
|
|
1759
|
+
return this.add("color", "rgba(234, 179, 8, 1)");
|
|
1720
1760
|
}
|
|
1721
|
-
/** Sets `color: "rgba(
|
|
1761
|
+
/** Sets `color: "rgba(202, 138, 4, 1)"`. */
|
|
1722
1762
|
get yellow600() {
|
|
1723
|
-
return this.add("color", "rgba(
|
|
1763
|
+
return this.add("color", "rgba(202, 138, 4, 1)");
|
|
1724
1764
|
}
|
|
1725
|
-
/** Sets `color: "rgba(
|
|
1765
|
+
/** Sets `color: "rgba(161, 98, 7, 1)"`. */
|
|
1726
1766
|
get yellow700() {
|
|
1727
|
-
return this.add("color", "rgba(
|
|
1767
|
+
return this.add("color", "rgba(161, 98, 7, 1)");
|
|
1728
1768
|
}
|
|
1729
|
-
/** Sets `color: "rgba(
|
|
1769
|
+
/** Sets `color: "rgba(133, 77, 14, 1)"`. */
|
|
1730
1770
|
get yellow800() {
|
|
1731
|
-
return this.add("color", "rgba(
|
|
1771
|
+
return this.add("color", "rgba(133, 77, 14, 1)");
|
|
1732
1772
|
}
|
|
1733
|
-
/** Sets `color: "rgba(
|
|
1773
|
+
/** Sets `color: "rgba(113, 63, 18, 1)"`. */
|
|
1734
1774
|
get yellow900() {
|
|
1735
|
-
return this.add("color", "rgba(
|
|
1775
|
+
return this.add("color", "rgba(113, 63, 18, 1)");
|
|
1736
1776
|
}
|
|
1737
|
-
/** Sets `color: "rgba(
|
|
1777
|
+
/** Sets `color: "rgba(236, 253, 245, 1)"`. */
|
|
1738
1778
|
get green50() {
|
|
1739
|
-
return this.add("color", "rgba(
|
|
1779
|
+
return this.add("color", "rgba(236, 253, 245, 1)");
|
|
1740
1780
|
}
|
|
1741
|
-
/** Sets `color: "rgba(
|
|
1781
|
+
/** Sets `color: "rgba(209, 250, 229, 1)"`. */
|
|
1742
1782
|
get green100() {
|
|
1743
|
-
return this.add("color", "rgba(
|
|
1783
|
+
return this.add("color", "rgba(209, 250, 229, 1)");
|
|
1744
1784
|
}
|
|
1745
|
-
/** Sets `color: "rgba(
|
|
1785
|
+
/** Sets `color: "rgba(167, 243, 208, 1)"`. */
|
|
1746
1786
|
get green200() {
|
|
1747
|
-
return this.add("color", "rgba(
|
|
1787
|
+
return this.add("color", "rgba(167, 243, 208, 1)");
|
|
1748
1788
|
}
|
|
1749
|
-
/** Sets `color: "rgba(
|
|
1789
|
+
/** Sets `color: "rgba(110, 231, 183, 1)"`. */
|
|
1750
1790
|
get green300() {
|
|
1751
|
-
return this.add("color", "rgba(
|
|
1791
|
+
return this.add("color", "rgba(110, 231, 183, 1)");
|
|
1752
1792
|
}
|
|
1753
|
-
/** Sets `color: "rgba(
|
|
1793
|
+
/** Sets `color: "rgba(52, 211, 153, 1)"`. */
|
|
1754
1794
|
get green400() {
|
|
1755
|
-
return this.add("color", "rgba(
|
|
1795
|
+
return this.add("color", "rgba(52, 211, 153, 1)");
|
|
1756
1796
|
}
|
|
1757
|
-
/** Sets `color: "rgba(
|
|
1797
|
+
/** Sets `color: "rgba(16, 185, 129, 1)"`. */
|
|
1758
1798
|
get green500() {
|
|
1759
|
-
return this.add("color", "rgba(
|
|
1799
|
+
return this.add("color", "rgba(16, 185, 129, 1)");
|
|
1760
1800
|
}
|
|
1761
|
-
/** Sets `color: "rgba(
|
|
1801
|
+
/** Sets `color: "rgba(5, 150, 105, 1)"`. */
|
|
1762
1802
|
get green600() {
|
|
1763
|
-
return this.add("color", "rgba(
|
|
1803
|
+
return this.add("color", "rgba(5, 150, 105, 1)");
|
|
1764
1804
|
}
|
|
1765
|
-
/** Sets `color: "rgba(
|
|
1805
|
+
/** Sets `color: "rgba(4, 120, 87, 1)"`. */
|
|
1766
1806
|
get green700() {
|
|
1767
|
-
return this.add("color", "rgba(
|
|
1807
|
+
return this.add("color", "rgba(4, 120, 87, 1)");
|
|
1768
1808
|
}
|
|
1769
|
-
/** Sets `color: "rgba(
|
|
1809
|
+
/** Sets `color: "rgba(6, 95, 70, 1)"`. */
|
|
1770
1810
|
get green800() {
|
|
1771
|
-
return this.add("color", "rgba(
|
|
1811
|
+
return this.add("color", "rgba(6, 95, 70, 1)");
|
|
1772
1812
|
}
|
|
1773
|
-
/** Sets `color: "rgba(
|
|
1813
|
+
/** Sets `color: "rgba(6, 78, 59, 1)"`. */
|
|
1774
1814
|
get green900() {
|
|
1775
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1778
|
-
get
|
|
1779
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1782
|
-
get
|
|
1783
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1786
|
-
get
|
|
1787
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1790
|
-
get
|
|
1791
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1794
|
-
get
|
|
1795
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1798
|
-
get
|
|
1799
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1802
|
-
get
|
|
1803
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1806
|
-
get
|
|
1807
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1810
|
-
get
|
|
1811
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1814
|
-
get
|
|
1815
|
-
return this.add("color", "rgba(
|
|
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(
|
|
1901
|
+
/** Sets `backgroundColor: "rgba(255,255,255,1)"`. */
|
|
1822
1902
|
get bgWhite() {
|
|
1823
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1870
|
-
get
|
|
1871
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1874
|
-
get
|
|
1875
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1878
|
-
get
|
|
1879
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1882
|
-
get
|
|
1883
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1886
|
-
get
|
|
1887
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1890
|
-
get
|
|
1891
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1894
|
-
get
|
|
1895
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1898
|
-
get
|
|
1899
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1902
|
-
get
|
|
1903
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1906
|
-
get
|
|
1907
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
1989
|
+
/** Sets `backgroundColor: "rgba(254, 242, 242, 1)"`. */
|
|
1910
1990
|
get bgRed50() {
|
|
1911
|
-
return this.add("backgroundColor", "rgba(
|
|
1991
|
+
return this.add("backgroundColor", "rgba(254, 242, 242, 1)");
|
|
1912
1992
|
}
|
|
1913
|
-
/** Sets `backgroundColor: "rgba(
|
|
1993
|
+
/** Sets `backgroundColor: "rgba(254, 226, 226, 1)"`. */
|
|
1914
1994
|
get bgRed100() {
|
|
1915
|
-
return this.add("backgroundColor", "rgba(
|
|
1995
|
+
return this.add("backgroundColor", "rgba(254, 226, 226, 1)");
|
|
1916
1996
|
}
|
|
1917
|
-
/** Sets `backgroundColor: "rgba(
|
|
1997
|
+
/** Sets `backgroundColor: "rgba(254, 202, 202, 1)"`. */
|
|
1918
1998
|
get bgRed200() {
|
|
1919
|
-
return this.add("backgroundColor", "rgba(
|
|
1999
|
+
return this.add("backgroundColor", "rgba(254, 202, 202, 1)");
|
|
1920
2000
|
}
|
|
1921
|
-
/** Sets `backgroundColor: "rgba(
|
|
2001
|
+
/** Sets `backgroundColor: "rgba(252, 165, 165, 1)"`. */
|
|
1922
2002
|
get bgRed300() {
|
|
1923
|
-
return this.add("backgroundColor", "rgba(
|
|
2003
|
+
return this.add("backgroundColor", "rgba(252, 165, 165, 1)");
|
|
1924
2004
|
}
|
|
1925
|
-
/** Sets `backgroundColor: "rgba(
|
|
2005
|
+
/** Sets `backgroundColor: "rgba(248, 113, 113, 1)"`. */
|
|
1926
2006
|
get bgRed400() {
|
|
1927
|
-
return this.add("backgroundColor", "rgba(
|
|
2007
|
+
return this.add("backgroundColor", "rgba(248, 113, 113, 1)");
|
|
1928
2008
|
}
|
|
1929
|
-
/** Sets `backgroundColor: "rgba(
|
|
2009
|
+
/** Sets `backgroundColor: "rgba(239, 68, 68, 1)"`. */
|
|
1930
2010
|
get bgRed500() {
|
|
1931
|
-
return this.add("backgroundColor", "rgba(
|
|
2011
|
+
return this.add("backgroundColor", "rgba(239, 68, 68, 1)");
|
|
1932
2012
|
}
|
|
1933
|
-
/** Sets `backgroundColor: "rgba(
|
|
2013
|
+
/** Sets `backgroundColor: "rgba(220, 38, 38, 1)"`. */
|
|
1934
2014
|
get bgRed600() {
|
|
1935
|
-
return this.add("backgroundColor", "rgba(
|
|
2015
|
+
return this.add("backgroundColor", "rgba(220, 38, 38, 1)");
|
|
1936
2016
|
}
|
|
1937
|
-
/** Sets `backgroundColor: "rgba(
|
|
2017
|
+
/** Sets `backgroundColor: "rgba(185, 28, 28, 1)"`. */
|
|
1938
2018
|
get bgRed700() {
|
|
1939
|
-
return this.add("backgroundColor", "rgba(
|
|
2019
|
+
return this.add("backgroundColor", "rgba(185, 28, 28, 1)");
|
|
1940
2020
|
}
|
|
1941
|
-
/** Sets `backgroundColor: "rgba(
|
|
2021
|
+
/** Sets `backgroundColor: "rgba(153, 27, 27, 1)"`. */
|
|
1942
2022
|
get bgRed800() {
|
|
1943
|
-
return this.add("backgroundColor", "rgba(
|
|
2023
|
+
return this.add("backgroundColor", "rgba(153, 27, 27, 1)");
|
|
1944
2024
|
}
|
|
1945
|
-
/** Sets `backgroundColor: "rgba(
|
|
2025
|
+
/** Sets `backgroundColor: "rgba(127, 29, 29, 1)"`. */
|
|
1946
2026
|
get bgRed900() {
|
|
1947
|
-
return this.add("backgroundColor", "rgba(
|
|
2027
|
+
return this.add("backgroundColor", "rgba(127, 29, 29, 1)");
|
|
1948
2028
|
}
|
|
1949
|
-
/** Sets `backgroundColor: "rgba(
|
|
2029
|
+
/** Sets `backgroundColor: "rgba(254, 252, 232, 1)"`. */
|
|
1950
2030
|
get bgYellow50() {
|
|
1951
|
-
return this.add("backgroundColor", "rgba(
|
|
2031
|
+
return this.add("backgroundColor", "rgba(254, 252, 232, 1)");
|
|
1952
2032
|
}
|
|
1953
|
-
/** Sets `backgroundColor: "rgba(
|
|
2033
|
+
/** Sets `backgroundColor: "rgba(254, 249, 195, 1)"`. */
|
|
1954
2034
|
get bgYellow100() {
|
|
1955
|
-
return this.add("backgroundColor", "rgba(
|
|
2035
|
+
return this.add("backgroundColor", "rgba(254, 249, 195, 1)");
|
|
1956
2036
|
}
|
|
1957
|
-
/** Sets `backgroundColor: "rgba(
|
|
2037
|
+
/** Sets `backgroundColor: "rgba(254, 240, 138, 1)"`. */
|
|
1958
2038
|
get bgYellow200() {
|
|
1959
|
-
return this.add("backgroundColor", "rgba(
|
|
2039
|
+
return this.add("backgroundColor", "rgba(254, 240, 138, 1)");
|
|
1960
2040
|
}
|
|
1961
|
-
/** Sets `backgroundColor: "rgba(
|
|
2041
|
+
/** Sets `backgroundColor: "rgba(253, 224, 71, 1)"`. */
|
|
1962
2042
|
get bgYellow300() {
|
|
1963
|
-
return this.add("backgroundColor", "rgba(
|
|
2043
|
+
return this.add("backgroundColor", "rgba(253, 224, 71, 1)");
|
|
1964
2044
|
}
|
|
1965
|
-
/** Sets `backgroundColor: "rgba(
|
|
2045
|
+
/** Sets `backgroundColor: "rgba(250, 204, 21, 1)"`. */
|
|
1966
2046
|
get bgYellow400() {
|
|
1967
|
-
return this.add("backgroundColor", "rgba(
|
|
2047
|
+
return this.add("backgroundColor", "rgba(250, 204, 21, 1)");
|
|
1968
2048
|
}
|
|
1969
|
-
/** Sets `backgroundColor: "rgba(
|
|
2049
|
+
/** Sets `backgroundColor: "rgba(234, 179, 8, 1)"`. */
|
|
1970
2050
|
get bgYellow500() {
|
|
1971
|
-
return this.add("backgroundColor", "rgba(
|
|
2051
|
+
return this.add("backgroundColor", "rgba(234, 179, 8, 1)");
|
|
1972
2052
|
}
|
|
1973
|
-
/** Sets `backgroundColor: "rgba(
|
|
2053
|
+
/** Sets `backgroundColor: "rgba(202, 138, 4, 1)"`. */
|
|
1974
2054
|
get bgYellow600() {
|
|
1975
|
-
return this.add("backgroundColor", "rgba(
|
|
2055
|
+
return this.add("backgroundColor", "rgba(202, 138, 4, 1)");
|
|
1976
2056
|
}
|
|
1977
|
-
/** Sets `backgroundColor: "rgba(
|
|
2057
|
+
/** Sets `backgroundColor: "rgba(161, 98, 7, 1)"`. */
|
|
1978
2058
|
get bgYellow700() {
|
|
1979
|
-
return this.add("backgroundColor", "rgba(
|
|
2059
|
+
return this.add("backgroundColor", "rgba(161, 98, 7, 1)");
|
|
1980
2060
|
}
|
|
1981
|
-
/** Sets `backgroundColor: "rgba(
|
|
2061
|
+
/** Sets `backgroundColor: "rgba(133, 77, 14, 1)"`. */
|
|
1982
2062
|
get bgYellow800() {
|
|
1983
|
-
return this.add("backgroundColor", "rgba(
|
|
2063
|
+
return this.add("backgroundColor", "rgba(133, 77, 14, 1)");
|
|
1984
2064
|
}
|
|
1985
|
-
/** Sets `backgroundColor: "rgba(
|
|
2065
|
+
/** Sets `backgroundColor: "rgba(113, 63, 18, 1)"`. */
|
|
1986
2066
|
get bgYellow900() {
|
|
1987
|
-
return this.add("backgroundColor", "rgba(
|
|
2067
|
+
return this.add("backgroundColor", "rgba(113, 63, 18, 1)");
|
|
1988
2068
|
}
|
|
1989
|
-
/** Sets `backgroundColor: "rgba(
|
|
2069
|
+
/** Sets `backgroundColor: "rgba(236, 253, 245, 1)"`. */
|
|
1990
2070
|
get bgGreen50() {
|
|
1991
|
-
return this.add("backgroundColor", "rgba(
|
|
2071
|
+
return this.add("backgroundColor", "rgba(236, 253, 245, 1)");
|
|
1992
2072
|
}
|
|
1993
|
-
/** Sets `backgroundColor: "rgba(
|
|
2073
|
+
/** Sets `backgroundColor: "rgba(209, 250, 229, 1)"`. */
|
|
1994
2074
|
get bgGreen100() {
|
|
1995
|
-
return this.add("backgroundColor", "rgba(
|
|
2075
|
+
return this.add("backgroundColor", "rgba(209, 250, 229, 1)");
|
|
1996
2076
|
}
|
|
1997
|
-
/** Sets `backgroundColor: "rgba(
|
|
2077
|
+
/** Sets `backgroundColor: "rgba(167, 243, 208, 1)"`. */
|
|
1998
2078
|
get bgGreen200() {
|
|
1999
|
-
return this.add("backgroundColor", "rgba(
|
|
2079
|
+
return this.add("backgroundColor", "rgba(167, 243, 208, 1)");
|
|
2000
2080
|
}
|
|
2001
|
-
/** Sets `backgroundColor: "rgba(
|
|
2081
|
+
/** Sets `backgroundColor: "rgba(110, 231, 183, 1)"`. */
|
|
2002
2082
|
get bgGreen300() {
|
|
2003
|
-
return this.add("backgroundColor", "rgba(
|
|
2083
|
+
return this.add("backgroundColor", "rgba(110, 231, 183, 1)");
|
|
2004
2084
|
}
|
|
2005
|
-
/** Sets `backgroundColor: "rgba(
|
|
2085
|
+
/** Sets `backgroundColor: "rgba(52, 211, 153, 1)"`. */
|
|
2006
2086
|
get bgGreen400() {
|
|
2007
|
-
return this.add("backgroundColor", "rgba(
|
|
2087
|
+
return this.add("backgroundColor", "rgba(52, 211, 153, 1)");
|
|
2008
2088
|
}
|
|
2009
|
-
/** Sets `backgroundColor: "rgba(
|
|
2089
|
+
/** Sets `backgroundColor: "rgba(16, 185, 129, 1)"`. */
|
|
2010
2090
|
get bgGreen500() {
|
|
2011
|
-
return this.add("backgroundColor", "rgba(
|
|
2091
|
+
return this.add("backgroundColor", "rgba(16, 185, 129, 1)");
|
|
2012
2092
|
}
|
|
2013
|
-
/** Sets `backgroundColor: "rgba(
|
|
2093
|
+
/** Sets `backgroundColor: "rgba(5, 150, 105, 1)"`. */
|
|
2014
2094
|
get bgGreen600() {
|
|
2015
|
-
return this.add("backgroundColor", "rgba(
|
|
2095
|
+
return this.add("backgroundColor", "rgba(5, 150, 105, 1)");
|
|
2016
2096
|
}
|
|
2017
|
-
/** Sets `backgroundColor: "rgba(
|
|
2097
|
+
/** Sets `backgroundColor: "rgba(4, 120, 87, 1)"`. */
|
|
2018
2098
|
get bgGreen700() {
|
|
2019
|
-
return this.add("backgroundColor", "rgba(
|
|
2099
|
+
return this.add("backgroundColor", "rgba(4, 120, 87, 1)");
|
|
2020
2100
|
}
|
|
2021
|
-
/** Sets `backgroundColor: "rgba(
|
|
2101
|
+
/** Sets `backgroundColor: "rgba(6, 95, 70, 1)"`. */
|
|
2022
2102
|
get bgGreen800() {
|
|
2023
|
-
return this.add("backgroundColor", "rgba(
|
|
2103
|
+
return this.add("backgroundColor", "rgba(6, 95, 70, 1)");
|
|
2024
2104
|
}
|
|
2025
|
-
/** Sets `backgroundColor: "rgba(
|
|
2105
|
+
/** Sets `backgroundColor: "rgba(6, 78, 59, 1)"`. */
|
|
2026
2106
|
get bgGreen900() {
|
|
2027
|
-
return this.add("backgroundColor", "rgba(
|
|
2107
|
+
return this.add("backgroundColor", "rgba(6, 78, 59, 1)");
|
|
2028
2108
|
}
|
|
2029
|
-
/** Sets `backgroundColor: "rgba(245,243,255,1)"`. */
|
|
2030
|
-
get
|
|
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(
|
|
2034
|
-
get
|
|
2035
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2038
|
-
get
|
|
2039
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2042
|
-
get
|
|
2043
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2046
|
-
get
|
|
2047
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2050
|
-
get
|
|
2051
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2054
|
-
get
|
|
2055
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2058
|
-
get
|
|
2059
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2062
|
-
get
|
|
2063
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2066
|
-
get
|
|
2067
|
-
return this.add("backgroundColor", "rgba(
|
|
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(
|
|
2193
|
+
/** Sets `fill: "rgba(255,255,255,1)"`. */
|
|
2074
2194
|
get fWhite() {
|
|
2075
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2122
|
-
get
|
|
2123
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2126
|
-
get
|
|
2127
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2130
|
-
get
|
|
2131
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2134
|
-
get
|
|
2135
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2138
|
-
get
|
|
2139
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2142
|
-
get
|
|
2143
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2146
|
-
get
|
|
2147
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2150
|
-
get
|
|
2151
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2154
|
-
get
|
|
2155
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2158
|
-
get
|
|
2159
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2281
|
+
/** Sets `fill: "rgba(254, 242, 242, 1)"`. */
|
|
2162
2282
|
get fRed50() {
|
|
2163
|
-
return this.add("fill", "rgba(
|
|
2283
|
+
return this.add("fill", "rgba(254, 242, 242, 1)");
|
|
2164
2284
|
}
|
|
2165
|
-
/** Sets `fill: "rgba(
|
|
2285
|
+
/** Sets `fill: "rgba(254, 226, 226, 1)"`. */
|
|
2166
2286
|
get fRed100() {
|
|
2167
|
-
return this.add("fill", "rgba(
|
|
2287
|
+
return this.add("fill", "rgba(254, 226, 226, 1)");
|
|
2168
2288
|
}
|
|
2169
|
-
/** Sets `fill: "rgba(
|
|
2289
|
+
/** Sets `fill: "rgba(254, 202, 202, 1)"`. */
|
|
2170
2290
|
get fRed200() {
|
|
2171
|
-
return this.add("fill", "rgba(
|
|
2291
|
+
return this.add("fill", "rgba(254, 202, 202, 1)");
|
|
2172
2292
|
}
|
|
2173
|
-
/** Sets `fill: "rgba(
|
|
2293
|
+
/** Sets `fill: "rgba(252, 165, 165, 1)"`. */
|
|
2174
2294
|
get fRed300() {
|
|
2175
|
-
return this.add("fill", "rgba(
|
|
2295
|
+
return this.add("fill", "rgba(252, 165, 165, 1)");
|
|
2176
2296
|
}
|
|
2177
|
-
/** Sets `fill: "rgba(
|
|
2297
|
+
/** Sets `fill: "rgba(248, 113, 113, 1)"`. */
|
|
2178
2298
|
get fRed400() {
|
|
2179
|
-
return this.add("fill", "rgba(
|
|
2299
|
+
return this.add("fill", "rgba(248, 113, 113, 1)");
|
|
2180
2300
|
}
|
|
2181
|
-
/** Sets `fill: "rgba(
|
|
2301
|
+
/** Sets `fill: "rgba(239, 68, 68, 1)"`. */
|
|
2182
2302
|
get fRed500() {
|
|
2183
|
-
return this.add("fill", "rgba(
|
|
2303
|
+
return this.add("fill", "rgba(239, 68, 68, 1)");
|
|
2184
2304
|
}
|
|
2185
|
-
/** Sets `fill: "rgba(
|
|
2305
|
+
/** Sets `fill: "rgba(220, 38, 38, 1)"`. */
|
|
2186
2306
|
get fRed600() {
|
|
2187
|
-
return this.add("fill", "rgba(
|
|
2307
|
+
return this.add("fill", "rgba(220, 38, 38, 1)");
|
|
2188
2308
|
}
|
|
2189
|
-
/** Sets `fill: "rgba(
|
|
2309
|
+
/** Sets `fill: "rgba(185, 28, 28, 1)"`. */
|
|
2190
2310
|
get fRed700() {
|
|
2191
|
-
return this.add("fill", "rgba(
|
|
2311
|
+
return this.add("fill", "rgba(185, 28, 28, 1)");
|
|
2192
2312
|
}
|
|
2193
|
-
/** Sets `fill: "rgba(
|
|
2313
|
+
/** Sets `fill: "rgba(153, 27, 27, 1)"`. */
|
|
2194
2314
|
get fRed800() {
|
|
2195
|
-
return this.add("fill", "rgba(
|
|
2315
|
+
return this.add("fill", "rgba(153, 27, 27, 1)");
|
|
2196
2316
|
}
|
|
2197
|
-
/** Sets `fill: "rgba(
|
|
2317
|
+
/** Sets `fill: "rgba(127, 29, 29, 1)"`. */
|
|
2198
2318
|
get fRed900() {
|
|
2199
|
-
return this.add("fill", "rgba(
|
|
2319
|
+
return this.add("fill", "rgba(127, 29, 29, 1)");
|
|
2200
2320
|
}
|
|
2201
|
-
/** Sets `fill: "rgba(
|
|
2321
|
+
/** Sets `fill: "rgba(254, 252, 232, 1)"`. */
|
|
2202
2322
|
get fYellow50() {
|
|
2203
|
-
return this.add("fill", "rgba(
|
|
2323
|
+
return this.add("fill", "rgba(254, 252, 232, 1)");
|
|
2204
2324
|
}
|
|
2205
|
-
/** Sets `fill: "rgba(
|
|
2325
|
+
/** Sets `fill: "rgba(254, 249, 195, 1)"`. */
|
|
2206
2326
|
get fYellow100() {
|
|
2207
|
-
return this.add("fill", "rgba(
|
|
2327
|
+
return this.add("fill", "rgba(254, 249, 195, 1)");
|
|
2208
2328
|
}
|
|
2209
|
-
/** Sets `fill: "rgba(
|
|
2329
|
+
/** Sets `fill: "rgba(254, 240, 138, 1)"`. */
|
|
2210
2330
|
get fYellow200() {
|
|
2211
|
-
return this.add("fill", "rgba(
|
|
2331
|
+
return this.add("fill", "rgba(254, 240, 138, 1)");
|
|
2212
2332
|
}
|
|
2213
|
-
/** Sets `fill: "rgba(
|
|
2333
|
+
/** Sets `fill: "rgba(253, 224, 71, 1)"`. */
|
|
2214
2334
|
get fYellow300() {
|
|
2215
|
-
return this.add("fill", "rgba(
|
|
2335
|
+
return this.add("fill", "rgba(253, 224, 71, 1)");
|
|
2216
2336
|
}
|
|
2217
|
-
/** Sets `fill: "rgba(
|
|
2337
|
+
/** Sets `fill: "rgba(250, 204, 21, 1)"`. */
|
|
2218
2338
|
get fYellow400() {
|
|
2219
|
-
return this.add("fill", "rgba(
|
|
2339
|
+
return this.add("fill", "rgba(250, 204, 21, 1)");
|
|
2220
2340
|
}
|
|
2221
|
-
/** Sets `fill: "rgba(
|
|
2341
|
+
/** Sets `fill: "rgba(234, 179, 8, 1)"`. */
|
|
2222
2342
|
get fYellow500() {
|
|
2223
|
-
return this.add("fill", "rgba(
|
|
2343
|
+
return this.add("fill", "rgba(234, 179, 8, 1)");
|
|
2224
2344
|
}
|
|
2225
|
-
/** Sets `fill: "rgba(
|
|
2345
|
+
/** Sets `fill: "rgba(202, 138, 4, 1)"`. */
|
|
2226
2346
|
get fYellow600() {
|
|
2227
|
-
return this.add("fill", "rgba(
|
|
2347
|
+
return this.add("fill", "rgba(202, 138, 4, 1)");
|
|
2228
2348
|
}
|
|
2229
|
-
/** Sets `fill: "rgba(
|
|
2349
|
+
/** Sets `fill: "rgba(161, 98, 7, 1)"`. */
|
|
2230
2350
|
get fYellow700() {
|
|
2231
|
-
return this.add("fill", "rgba(
|
|
2351
|
+
return this.add("fill", "rgba(161, 98, 7, 1)");
|
|
2232
2352
|
}
|
|
2233
|
-
/** Sets `fill: "rgba(
|
|
2353
|
+
/** Sets `fill: "rgba(133, 77, 14, 1)"`. */
|
|
2234
2354
|
get fYellow800() {
|
|
2235
|
-
return this.add("fill", "rgba(
|
|
2355
|
+
return this.add("fill", "rgba(133, 77, 14, 1)");
|
|
2236
2356
|
}
|
|
2237
|
-
/** Sets `fill: "rgba(
|
|
2357
|
+
/** Sets `fill: "rgba(113, 63, 18, 1)"`. */
|
|
2238
2358
|
get fYellow900() {
|
|
2239
|
-
return this.add("fill", "rgba(
|
|
2359
|
+
return this.add("fill", "rgba(113, 63, 18, 1)");
|
|
2240
2360
|
}
|
|
2241
|
-
/** Sets `fill: "rgba(
|
|
2361
|
+
/** Sets `fill: "rgba(236, 253, 245, 1)"`. */
|
|
2242
2362
|
get fGreen50() {
|
|
2243
|
-
return this.add("fill", "rgba(
|
|
2363
|
+
return this.add("fill", "rgba(236, 253, 245, 1)");
|
|
2244
2364
|
}
|
|
2245
|
-
/** Sets `fill: "rgba(
|
|
2365
|
+
/** Sets `fill: "rgba(209, 250, 229, 1)"`. */
|
|
2246
2366
|
get fGreen100() {
|
|
2247
|
-
return this.add("fill", "rgba(
|
|
2367
|
+
return this.add("fill", "rgba(209, 250, 229, 1)");
|
|
2248
2368
|
}
|
|
2249
|
-
/** Sets `fill: "rgba(
|
|
2369
|
+
/** Sets `fill: "rgba(167, 243, 208, 1)"`. */
|
|
2250
2370
|
get fGreen200() {
|
|
2251
|
-
return this.add("fill", "rgba(
|
|
2371
|
+
return this.add("fill", "rgba(167, 243, 208, 1)");
|
|
2252
2372
|
}
|
|
2253
|
-
/** Sets `fill: "rgba(
|
|
2373
|
+
/** Sets `fill: "rgba(110, 231, 183, 1)"`. */
|
|
2254
2374
|
get fGreen300() {
|
|
2255
|
-
return this.add("fill", "rgba(
|
|
2375
|
+
return this.add("fill", "rgba(110, 231, 183, 1)");
|
|
2256
2376
|
}
|
|
2257
|
-
/** Sets `fill: "rgba(
|
|
2377
|
+
/** Sets `fill: "rgba(52, 211, 153, 1)"`. */
|
|
2258
2378
|
get fGreen400() {
|
|
2259
|
-
return this.add("fill", "rgba(
|
|
2379
|
+
return this.add("fill", "rgba(52, 211, 153, 1)");
|
|
2260
2380
|
}
|
|
2261
|
-
/** Sets `fill: "rgba(
|
|
2381
|
+
/** Sets `fill: "rgba(16, 185, 129, 1)"`. */
|
|
2262
2382
|
get fGreen500() {
|
|
2263
|
-
return this.add("fill", "rgba(
|
|
2383
|
+
return this.add("fill", "rgba(16, 185, 129, 1)");
|
|
2264
2384
|
}
|
|
2265
|
-
/** Sets `fill: "rgba(
|
|
2385
|
+
/** Sets `fill: "rgba(5, 150, 105, 1)"`. */
|
|
2266
2386
|
get fGreen600() {
|
|
2267
|
-
return this.add("fill", "rgba(
|
|
2387
|
+
return this.add("fill", "rgba(5, 150, 105, 1)");
|
|
2268
2388
|
}
|
|
2269
|
-
/** Sets `fill: "rgba(
|
|
2389
|
+
/** Sets `fill: "rgba(4, 120, 87, 1)"`. */
|
|
2270
2390
|
get fGreen700() {
|
|
2271
|
-
return this.add("fill", "rgba(
|
|
2391
|
+
return this.add("fill", "rgba(4, 120, 87, 1)");
|
|
2272
2392
|
}
|
|
2273
|
-
/** Sets `fill: "rgba(
|
|
2393
|
+
/** Sets `fill: "rgba(6, 95, 70, 1)"`. */
|
|
2274
2394
|
get fGreen800() {
|
|
2275
|
-
return this.add("fill", "rgba(
|
|
2395
|
+
return this.add("fill", "rgba(6, 95, 70, 1)");
|
|
2276
2396
|
}
|
|
2277
|
-
/** Sets `fill: "rgba(
|
|
2397
|
+
/** Sets `fill: "rgba(6, 78, 59, 1)"`. */
|
|
2278
2398
|
get fGreen900() {
|
|
2279
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2282
|
-
get
|
|
2283
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2286
|
-
get
|
|
2287
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2290
|
-
get
|
|
2291
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2294
|
-
get
|
|
2295
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2298
|
-
get
|
|
2299
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2302
|
-
get
|
|
2303
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2306
|
-
get
|
|
2307
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2310
|
-
get
|
|
2311
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2314
|
-
get
|
|
2315
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
2318
|
-
get
|
|
2319
|
-
return this.add("fill", "rgba(
|
|
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(
|
|
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["
|
|
3679
|
-
Palette["
|
|
3680
|
-
Palette["
|
|
3681
|
-
Palette["
|
|
3682
|
-
Palette["
|
|
3683
|
-
Palette["
|
|
3684
|
-
Palette["
|
|
3685
|
-
Palette["
|
|
3686
|
-
Palette["
|
|
3687
|
-
Palette["
|
|
3688
|
-
Palette["Red50"] = "rgba(
|
|
3689
|
-
Palette["Red100"] = "rgba(
|
|
3690
|
-
Palette["Red200"] = "rgba(
|
|
3691
|
-
Palette["Red300"] = "rgba(
|
|
3692
|
-
Palette["Red400"] = "rgba(
|
|
3693
|
-
Palette["Red500"] = "rgba(
|
|
3694
|
-
Palette["Red600"] = "rgba(
|
|
3695
|
-
Palette["Red700"] = "rgba(
|
|
3696
|
-
Palette["Red800"] = "rgba(
|
|
3697
|
-
Palette["Red900"] = "rgba(
|
|
3698
|
-
Palette["Yellow50"] = "rgba(
|
|
3699
|
-
Palette["Yellow100"] = "rgba(
|
|
3700
|
-
Palette["Yellow200"] = "rgba(
|
|
3701
|
-
Palette["Yellow300"] = "rgba(
|
|
3702
|
-
Palette["Yellow400"] = "rgba(
|
|
3703
|
-
Palette["Yellow500"] = "rgba(
|
|
3704
|
-
Palette["Yellow600"] = "rgba(
|
|
3705
|
-
Palette["Yellow700"] = "rgba(
|
|
3706
|
-
Palette["Yellow800"] = "rgba(
|
|
3707
|
-
Palette["Yellow900"] = "rgba(
|
|
3708
|
-
Palette["Green50"] = "rgba(
|
|
3709
|
-
Palette["Green100"] = "rgba(
|
|
3710
|
-
Palette["Green200"] = "rgba(
|
|
3711
|
-
Palette["Green300"] = "rgba(
|
|
3712
|
-
Palette["Green400"] = "rgba(
|
|
3713
|
-
Palette["Green500"] = "rgba(
|
|
3714
|
-
Palette["Green600"] = "rgba(
|
|
3715
|
-
Palette["Green700"] = "rgba(
|
|
3716
|
-
Palette["Green800"] = "rgba(
|
|
3717
|
-
Palette["Green900"] = "rgba(
|
|
3718
|
-
Palette["
|
|
3719
|
-
Palette["
|
|
3720
|
-
Palette["
|
|
3721
|
-
Palette["
|
|
3722
|
-
Palette["
|
|
3723
|
-
Palette["
|
|
3724
|
-
Palette["
|
|
3725
|
-
Palette["
|
|
3726
|
-
Palette["
|
|
3727
|
-
Palette["
|
|
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 });
|