beercss 2.3.0 → 3.0.1

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 (67) hide show
  1. package/README.md +45 -35
  2. package/dist/cdn/beer.min.css +1 -1
  3. package/dist/cdn/beer.min.js +1 -1
  4. package/dist/cdn/material-symbols-outlined.woff2 +0 -0
  5. package/dist/cdn/roboto-flex-cyrillic-ext.woff2 +0 -0
  6. package/dist/cdn/roboto-flex-cyrillic.woff2 +0 -0
  7. package/dist/cdn/roboto-flex-greek.woff2 +0 -0
  8. package/dist/cdn/roboto-flex-latin-ext.woff2 +0 -0
  9. package/dist/cdn/roboto-flex-latin.woff2 +0 -0
  10. package/dist/cdn/roboto-flex-vietnamese.woff2 +0 -0
  11. package/index.js +10 -2
  12. package/package.json +17 -2
  13. package/src/cdn/beer.css +2 -2
  14. package/src/cdn/beer.ts +164 -166
  15. package/src/cdn/elements/badges.css +7 -7
  16. package/src/cdn/elements/buttons.css +24 -24
  17. package/src/cdn/elements/cards.css +7 -7
  18. package/src/cdn/elements/chips.css +14 -14
  19. package/src/cdn/elements/containers.css +30 -21
  20. package/src/cdn/elements/dropdowns.css +5 -5
  21. package/src/cdn/elements/expansions.css +9 -5
  22. package/src/cdn/elements/fields.css +70 -70
  23. package/src/cdn/elements/grids.css +31 -30
  24. package/src/cdn/elements/icons.css +18 -18
  25. package/src/cdn/elements/layouts.css +17 -17
  26. package/src/cdn/elements/loaders.css +45 -35
  27. package/src/cdn/elements/media.css +37 -37
  28. package/src/cdn/elements/modals.css +17 -17
  29. package/src/cdn/elements/navigations.css +31 -31
  30. package/src/cdn/elements/overlays.css +1 -1
  31. package/src/cdn/elements/pages.css +10 -6
  32. package/src/cdn/elements/progress.css +2 -2
  33. package/src/cdn/elements/selections.css +31 -30
  34. package/src/cdn/elements/tables.css +14 -14
  35. package/src/cdn/elements/tabs.css +22 -12
  36. package/src/cdn/elements/toasts.css +12 -10
  37. package/src/cdn/elements/tooltips.css +10 -10
  38. package/src/cdn/helpers/alignments.css +1 -1
  39. package/src/cdn/helpers/colors.css +215 -215
  40. package/src/cdn/helpers/directions.css +4 -6
  41. package/src/cdn/helpers/dividers.css +5 -5
  42. package/src/cdn/helpers/elevates.css +1 -1
  43. package/src/cdn/helpers/forms.css +21 -21
  44. package/src/cdn/helpers/margins.css +5 -5
  45. package/src/cdn/helpers/opacities.css +1 -1
  46. package/src/cdn/helpers/paddings.css +5 -5
  47. package/src/cdn/helpers/positions.css +1 -1
  48. package/src/cdn/helpers/reset.css +2 -2
  49. package/src/cdn/helpers/responsive.css +2 -1
  50. package/src/cdn/helpers/scrolls.css +1 -2
  51. package/src/cdn/helpers/shadows.css +1 -1
  52. package/src/cdn/helpers/sizes.css +7 -7
  53. package/src/cdn/helpers/spaces.css +5 -5
  54. package/src/cdn/helpers/theme.css +38 -38
  55. package/src/cdn/helpers/typography.css +63 -14
  56. package/src/cdn/helpers/waves.css +10 -10
  57. package/src/cdn/material-symbols-outlined.woff2 +0 -0
  58. package/src/cdn/roboto-flex-cyrillic-ext.woff2 +0 -0
  59. package/src/cdn/roboto-flex-cyrillic.woff2 +0 -0
  60. package/src/cdn/roboto-flex-greek.woff2 +0 -0
  61. package/src/cdn/roboto-flex-latin-ext.woff2 +0 -0
  62. package/src/cdn/roboto-flex-latin.woff2 +0 -0
  63. package/src/cdn/roboto-flex-vietnamese.woff2 +0 -0
  64. package/src/cdn/settings/dark.css +13 -14
  65. package/src/cdn/settings/fonts.css +206 -0
  66. package/src/cdn/settings/light.css +17 -18
  67. package/src/cdn/settings/urls.css +0 -1
@@ -1,238 +1,238 @@
1
1
  .red,
2
2
  .red6 {
3
- background-color: #f44336 !important;
3
+ background-color: #F44336 !important;
4
4
  }
5
5
 
6
6
  .red-border {
7
- border-color: #f44336 !important;
7
+ border-color: #F44336 !important;
8
8
  }
9
9
 
10
10
  .red-text {
11
- color: #f44336 !important;
11
+ color: #F44336 !important;
12
12
  }
13
13
 
14
14
  .red1 {
15
- background-color: #ffebee !important;
15
+ background-color: #FFEBEE !important;
16
16
  }
17
17
 
18
18
  .red2 {
19
- background-color: #ffcdd2 !important;
19
+ background-color: #FFCDD2 !important;
20
20
  }
21
21
 
22
22
  .red3 {
23
- background-color: #ef9a9a !important;
23
+ background-color: #EF9A9A !important;
24
24
  }
25
25
 
26
26
  .red4 {
27
- background-color: #e57373 !important;
27
+ background-color: #E57373 !important;
28
28
  }
29
29
 
30
30
  .red5 {
31
- background-color: #ef5350 !important;
31
+ background-color: #EF5350 !important;
32
32
  }
33
33
 
34
34
  .red7 {
35
- background-color: #e53935 !important;
35
+ background-color: #E53935 !important;
36
36
  }
37
37
 
38
38
  .red8 {
39
- background-color: #d32f2f !important;
39
+ background-color: #D32F2F !important;
40
40
  }
41
41
 
42
42
  .red9 {
43
- background-color: #c62828 !important;
43
+ background-color: #C62828 !important;
44
44
  }
45
45
 
46
46
  .red10 {
47
- background-color: #b71c1c !important;
47
+ background-color: #B71C1C !important;
48
48
  }
49
49
 
50
50
  .pink,
51
51
  .pink6 {
52
- background-color: #e91e63 !important;
52
+ background-color: #E91E63 !important;
53
53
  }
54
54
 
55
55
  .pink-border {
56
- border-color: #e91e63 !important;
56
+ border-color: #E91E63 !important;
57
57
  }
58
58
 
59
59
  .pink-text {
60
- color: #e91e63 !important;
60
+ color: #E91E63 !important;
61
61
  }
62
62
 
63
63
  .pink1 {
64
- background-color: #fce4ec !important;
64
+ background-color: #FCE4EC !important;
65
65
  }
66
66
 
67
67
  .pink2 {
68
- background-color: #f8bbd0 !important;
68
+ background-color: #F8BBD0 !important;
69
69
  }
70
70
 
71
71
  .pink3 {
72
- background-color: #f48fb1 !important;
72
+ background-color: #F48FB1 !important;
73
73
  }
74
74
 
75
75
  .pink4 {
76
- background-color: #f06292 !important;
76
+ background-color: #F06292 !important;
77
77
  }
78
78
 
79
79
  .pink5 {
80
- background-color: #ec407a !important;
80
+ background-color: #EC407A !important;
81
81
  }
82
82
 
83
83
  .pink7 {
84
- background-color: #d81b60 !important;
84
+ background-color: #D81B60 !important;
85
85
  }
86
86
 
87
87
  .pink8 {
88
- background-color: #c2185b !important;
88
+ background-color: #C2185B !important;
89
89
  }
90
90
 
91
91
  .pink9 {
92
- background-color: #ad1457 !important;
92
+ background-color: #AD1457 !important;
93
93
  }
94
94
 
95
95
  .pink10 {
96
- background-color: #880e4f !important;
96
+ background-color: #880E4F !important;
97
97
  }
98
98
 
99
99
  .purple,
100
100
  .purple6 {
101
- background-color: #9c27b0 !important;
101
+ background-color: #9C27B0 !important;
102
102
  }
103
103
 
104
104
  .purple-border {
105
- border-color: #9c27b0 !important;
105
+ border-color: #9C27B0 !important;
106
106
  }
107
107
 
108
108
  .purple-text {
109
- color: #9c27b0 !important;
109
+ color: #9C27B0 !important;
110
110
  }
111
111
 
112
112
  .purple1 {
113
- background-color: #f3e5f5 !important;
113
+ background-color: #F3E5F5 !important;
114
114
  }
115
115
 
116
116
  .purple2 {
117
- background-color: #e1bee7 !important;
117
+ background-color: #E1BEE7 !important;
118
118
  }
119
119
 
120
120
  .purple3 {
121
- background-color: #ce93d8 !important;
121
+ background-color: #CE93D8 !important;
122
122
  }
123
123
 
124
124
  .purple4 {
125
- background-color: #ba68c8 !important;
125
+ background-color: #BA68C8 !important;
126
126
  }
127
127
 
128
128
  .purple5 {
129
- background-color: #ab47bc !important;
129
+ background-color: #AB47BC !important;
130
130
  }
131
131
 
132
132
  .purple7 {
133
- background-color: #8e24aa !important;
133
+ background-color: #8E24AA !important;
134
134
  }
135
135
 
136
136
  .purple8 {
137
- background-color: #7b1fa2 !important;
137
+ background-color: #7B1FA2 !important;
138
138
  }
139
139
 
140
140
  .purple9 {
141
- background-color: #6a1b9a !important;
141
+ background-color: #6A1B9A !important;
142
142
  }
143
143
 
144
144
  .purple10 {
145
- background-color: #4a148c !important;
145
+ background-color: #4A148C !important;
146
146
  }
147
147
 
148
148
  .deep-purple,
149
149
  .deep-purple6 {
150
- background-color: #673ab7 !important;
150
+ background-color: #673AB7 !important;
151
151
  }
152
152
 
153
153
  .deep-purple-border {
154
- border-color: #673ab7 !important;
154
+ border-color: #673AB7 !important;
155
155
  }
156
156
 
157
157
  .deep-purple-text {
158
- color: #673ab7 !important;
158
+ color: #673AB7 !important;
159
159
  }
160
160
 
161
161
  .deep-purple1 {
162
- background-color: #ede7f6 !important;
162
+ background-color: #EDE7F6 !important;
163
163
  }
164
164
 
165
165
  .deep-purple2 {
166
- background-color: #d1c4e9 !important;
166
+ background-color: #D1C4E9 !important;
167
167
  }
168
168
 
169
169
  .deep-purple3 {
170
- background-color: #b39ddb !important;
170
+ background-color: #B39DDB !important;
171
171
  }
172
172
 
173
173
  .deep-purple4 {
174
- background-color: #9575cd !important;
174
+ background-color: #9575CD !important;
175
175
  }
176
176
 
177
177
  .deep-purple5 {
178
- background-color: #7e57c2 !important;
178
+ background-color: #7E57C2 !important;
179
179
  }
180
180
 
181
181
  .deep-purple7 {
182
- background-color: #5e35b1 !important;
182
+ background-color: #5E35B1 !important;
183
183
  }
184
184
 
185
185
  .deep-purple8 {
186
- background-color: #512da8 !important;
186
+ background-color: #512DA8 !important;
187
187
  }
188
188
 
189
189
  .deep-purple9 {
190
- background-color: #4527a0 !important;
190
+ background-color: #4527A0 !important;
191
191
  }
192
192
 
193
193
  .deep-purple10 {
194
- background-color: #311b92 !important;
194
+ background-color: #311B92 !important;
195
195
  }
196
196
 
197
197
  .indigo,
198
198
  .indigo6 {
199
- background-color: #3f51b5 !important;
199
+ background-color: #3F51B5 !important;
200
200
  }
201
201
 
202
202
  .indigo-border {
203
- border-color: #3f51b5 !important;
203
+ border-color: #3F51B5 !important;
204
204
  }
205
205
 
206
206
  .indigo-text {
207
- color: #3f51b5 !important;
207
+ color: #3F51B5 !important;
208
208
  }
209
209
 
210
210
  .indigo1 {
211
- background-color: #e8eaf6 !important;
211
+ background-color: #E8EAF6 !important;
212
212
  }
213
213
 
214
214
  .indigo2 {
215
- background-color: #c5cae9 !important;
215
+ background-color: #C5CAE9 !important;
216
216
  }
217
217
 
218
218
  .indigo3 {
219
- background-color: #9fa8da !important;
219
+ background-color: #9FA8DA !important;
220
220
  }
221
221
 
222
222
  .indigo4 {
223
- background-color: #7986cb !important;
223
+ background-color: #7986CB !important;
224
224
  }
225
225
 
226
226
  .indigo5 {
227
- background-color: #5c6bc0 !important;
227
+ background-color: #5C6BC0 !important;
228
228
  }
229
229
 
230
230
  .indigo7 {
231
- background-color: #3949ab !important;
231
+ background-color: #3949AB !important;
232
232
  }
233
233
 
234
234
  .indigo8 {
235
- background-color: #303f9f !important;
235
+ background-color: #303F9F !important;
236
236
  }
237
237
 
238
238
  .indigo9 {
@@ -240,150 +240,150 @@
240
240
  }
241
241
 
242
242
  .indigo10 {
243
- background-color: #1a237e !important;
243
+ background-color: #1A237E !important;
244
244
  }
245
245
 
246
246
  .blue,
247
247
  .blue6 {
248
- background-color: #2196f3 !important;
248
+ background-color: #2196F3 !important;
249
249
  }
250
250
 
251
251
  .blue-border {
252
- border-color: #2196f3 !important;
252
+ border-color: #2196F3 !important;
253
253
  }
254
254
 
255
255
  .blue-text {
256
- color: #2196f3 !important;
256
+ color: #2196F3 !important;
257
257
  }
258
258
 
259
259
  .blue1 {
260
- background-color: #e3f2fd !important;
260
+ background-color: #E3F2FD !important;
261
261
  }
262
262
 
263
263
  .blue2 {
264
- background-color: #bbdefb !important;
264
+ background-color: #BBDEFB !important;
265
265
  }
266
266
 
267
267
  .blue3 {
268
- background-color: #90caf9 !important;
268
+ background-color: #90CAF9 !important;
269
269
  }
270
270
 
271
271
  .blue4 {
272
- background-color: #64b5f6 !important;
272
+ background-color: #64B5F6 !important;
273
273
  }
274
274
 
275
275
  .blue5 {
276
- background-color: #42a5f5 !important;
276
+ background-color: #42A5F5 !important;
277
277
  }
278
278
 
279
279
  .blue7 {
280
- background-color: #1e88e5 !important;
280
+ background-color: #1E88E5 !important;
281
281
  }
282
282
 
283
283
  .blue8 {
284
- background-color: #1976d2 !important;
284
+ background-color: #1976D2 !important;
285
285
  }
286
286
 
287
287
  .blue9 {
288
- background-color: #1565c0 !important;
288
+ background-color: #1565C0 !important;
289
289
  }
290
290
 
291
291
  .blue10 {
292
- background-color: #0d47a1 !important;
292
+ background-color: #0D47A1 !important;
293
293
  }
294
294
 
295
295
  .light-blue,
296
296
  .light-blue6 {
297
- background-color: #03a9f4 !important;
297
+ background-color: #03A9F4 !important;
298
298
  }
299
299
 
300
300
  .light-blue-border {
301
- border-color: #03a9f4 !important;
301
+ border-color: #03A9F4 !important;
302
302
  }
303
303
 
304
304
  .light-blue-text {
305
- color: #03a9f4 !important;
305
+ color: #03A9F4 !important;
306
306
  }
307
307
 
308
308
  .light-blue1 {
309
- background-color: #e1f5fe !important;
309
+ background-color: #E1F5FE !important;
310
310
  }
311
311
 
312
312
  .light-blue2 {
313
- background-color: #b3e5fc !important;
313
+ background-color: #B3E5FC !important;
314
314
  }
315
315
 
316
316
  .light-blue3 {
317
- background-color: #81d4fa !important;
317
+ background-color: #81D4FA !important;
318
318
  }
319
319
 
320
320
  .light-blue4 {
321
- background-color: #4fc3f7 !important;
321
+ background-color: #4FC3F7 !important;
322
322
  }
323
323
 
324
324
  .light-blue5 {
325
- background-color: #29b6f6 !important;
325
+ background-color: #29B6F6 !important;
326
326
  }
327
327
 
328
328
  .light-blue7 {
329
- background-color: #039be5 !important;
329
+ background-color: #039BE5 !important;
330
330
  }
331
331
 
332
332
  .light-blue8 {
333
- background-color: #0288d1 !important;
333
+ background-color: #0288D1 !important;
334
334
  }
335
335
 
336
336
  .light-blue9 {
337
- background-color: #0277bd !important;
337
+ background-color: #0277BD !important;
338
338
  }
339
339
 
340
340
  .light-blue10 {
341
- background-color: #01579b !important;
341
+ background-color: #01579B !important;
342
342
  }
343
343
 
344
344
  .cyan,
345
345
  .cyan6 {
346
- background-color: #00bcd4 !important;
346
+ background-color: #00BCD4 !important;
347
347
  }
348
348
 
349
349
  .cyan-border {
350
- border-color: #00bcd4 !important;
350
+ border-color: #00BCD4 !important;
351
351
  }
352
352
 
353
353
  .cyan-text {
354
- color: #00bcd4 !important;
354
+ color: #00BCD4 !important;
355
355
  }
356
356
 
357
357
  .cyan1 {
358
- background-color: #e0f7fa !important;
358
+ background-color: #E0F7FA !important;
359
359
  }
360
360
 
361
361
  .cyan2 {
362
- background-color: #b2ebf2 !important;
362
+ background-color: #B2EBF2 !important;
363
363
  }
364
364
 
365
365
  .cyan3 {
366
- background-color: #80deea !important;
366
+ background-color: #80DEEA !important;
367
367
  }
368
368
 
369
369
  .cyan4 {
370
- background-color: #4dd0e1 !important;
370
+ background-color: #4DD0E1 !important;
371
371
  }
372
372
 
373
373
  .cyan5 {
374
- background-color: #26c6da !important;
374
+ background-color: #26C6DA !important;
375
375
  }
376
376
 
377
377
  .cyan7 {
378
- background-color: #00acc1 !important;
378
+ background-color: #00ACC1 !important;
379
379
  }
380
380
 
381
381
  .cyan8 {
382
- background-color: #0097a7 !important;
382
+ background-color: #0097A7 !important;
383
383
  }
384
384
 
385
385
  .cyan9 {
386
- background-color: #00838f !important;
386
+ background-color: #00838F !important;
387
387
  }
388
388
 
389
389
  .cyan10 {
@@ -404,182 +404,182 @@
404
404
  }
405
405
 
406
406
  .teal1 {
407
- background-color: #e0f2f1 !important;
407
+ background-color: #E0F2F1 !important;
408
408
  }
409
409
 
410
410
  .teal2 {
411
- background-color: #b2dfdb !important;
411
+ background-color: #B2DFDB !important;
412
412
  }
413
413
 
414
414
  .teal3 {
415
- background-color: #80cbc4 !important;
415
+ background-color: #80CBC4 !important;
416
416
  }
417
417
 
418
418
  .teal4 {
419
- background-color: #4db6ac !important;
419
+ background-color: #4DB6AC !important;
420
420
  }
421
421
 
422
422
  .teal5 {
423
- background-color: #26a69a !important;
423
+ background-color: #26A69A !important;
424
424
  }
425
425
 
426
426
  .teal7 {
427
- background-color: #00897b !important;
427
+ background-color: #00897B !important;
428
428
  }
429
429
 
430
430
  .teal8 {
431
- background-color: #00796b !important;
431
+ background-color: #00796B !important;
432
432
  }
433
433
 
434
434
  .teal9 {
435
- background-color: #00695c !important;
435
+ background-color: #00695C !important;
436
436
  }
437
437
 
438
438
  .teal10 {
439
- background-color: #004d40 !important;
439
+ background-color: #004D40 !important;
440
440
  }
441
441
 
442
442
  .green,
443
443
  .green6 {
444
- background-color: #4caf50 !important;
444
+ background-color: #4CAF50 !important;
445
445
  }
446
446
 
447
447
  .green-border {
448
- border-color: #4caf50 !important;
448
+ border-color: #4CAF50 !important;
449
449
  }
450
450
 
451
451
  .green-text {
452
- color: #4caf50 !important;
452
+ color: #4CAF50 !important;
453
453
  }
454
454
 
455
455
  .green1 {
456
- background-color: #e8f5e9 !important;
456
+ background-color: #E8F5E9 !important;
457
457
  }
458
458
 
459
459
  .green2 {
460
- background-color: #c8e6c9 !important;
460
+ background-color: #C8E6C9 !important;
461
461
  }
462
462
 
463
463
  .green3 {
464
- background-color: #a5d6a7 !important;
464
+ background-color: #A5D6A7 !important;
465
465
  }
466
466
 
467
467
  .green4 {
468
- background-color: #81c784 !important;
468
+ background-color: #81C784 !important;
469
469
  }
470
470
 
471
471
  .green5 {
472
- background-color: #66bb6a !important;
472
+ background-color: #66BB6A !important;
473
473
  }
474
474
 
475
475
  .green7 {
476
- background-color: #43a047 !important;
476
+ background-color: #43A047 !important;
477
477
  }
478
478
 
479
479
  .green8 {
480
- background-color: #388e3c !important;
480
+ background-color: #388E3C !important;
481
481
  }
482
482
 
483
483
  .green9 {
484
- background-color: #2e7d32 !important;
484
+ background-color: #2E7D32 !important;
485
485
  }
486
486
 
487
487
  .green10 {
488
- background-color: #1b5e20 !important;
488
+ background-color: #1B5E20 !important;
489
489
  }
490
490
 
491
491
  .light-green,
492
492
  .light-green6 {
493
- background-color: #8bc34a !important;
493
+ background-color: #8BC34A !important;
494
494
  }
495
495
 
496
496
  .light-green-border {
497
- border-color: #8bc34a !important;
497
+ border-color: #8BC34A !important;
498
498
  }
499
499
 
500
500
  .light-green-text {
501
- color: #8bc34a !important;
501
+ color: #8BC34A !important;
502
502
  }
503
503
 
504
504
  .light-green1 {
505
- background-color: #f1f8e9 !important;
505
+ background-color: #F1F8E9 !important;
506
506
  }
507
507
 
508
508
  .light-green2 {
509
- background-color: #dcedc8 !important;
509
+ background-color: #DCEDC8 !important;
510
510
  }
511
511
 
512
512
  .light-green3 {
513
- background-color: #c5e1a5 !important;
513
+ background-color: #C5E1A5 !important;
514
514
  }
515
515
 
516
516
  .light-green4 {
517
- background-color: #aed581 !important;
517
+ background-color: #AED581 !important;
518
518
  }
519
519
 
520
520
  .light-green5 {
521
- background-color: #9ccc65 !important;
521
+ background-color: #9CCC65 !important;
522
522
  }
523
523
 
524
524
  .light-green7 {
525
- background-color: #7cb342 !important;
525
+ background-color: #7CB342 !important;
526
526
  }
527
527
 
528
528
  .light-green8 {
529
- background-color: #689f38 !important;
529
+ background-color: #689F38 !important;
530
530
  }
531
531
 
532
532
  .light-green9 {
533
- background-color: #558b2f !important;
533
+ background-color: #558B2F !important;
534
534
  }
535
535
 
536
536
  .light-green10 {
537
- background-color: #33691e !important;
537
+ background-color: #33691E !important;
538
538
  }
539
539
 
540
540
  .lime,
541
541
  .lime6 {
542
- background-color: #cddc39 !important;
542
+ background-color: #CDDC39 !important;
543
543
  }
544
544
 
545
545
  .lime-border {
546
- border-color: #cddc39 !important;
546
+ border-color: #CDDC39 !important;
547
547
  }
548
548
 
549
549
  .lime-text {
550
- color: #cddc39 !important;
550
+ color: #CDDC39 !important;
551
551
  }
552
552
 
553
553
  .lime1 {
554
- background-color: #f9fbe7 !important;
554
+ background-color: #F9FBE7 !important;
555
555
  }
556
556
 
557
557
  .lime2 {
558
- background-color: #f0f4c3 !important;
558
+ background-color: #F0F4C3 !important;
559
559
  }
560
560
 
561
561
  .lime3 {
562
- background-color: #e6ee9c !important;
562
+ background-color: #E6EE9C !important;
563
563
  }
564
564
 
565
565
  .lime4 {
566
- background-color: #dce775 !important;
566
+ background-color: #DCE775 !important;
567
567
  }
568
568
 
569
569
  .lime5 {
570
- background-color: #d4e157 !important;
570
+ background-color: #D4E157 !important;
571
571
  }
572
572
 
573
573
  .lime7 {
574
- background-color: #c0ca33 !important;
574
+ background-color: #C0CA33 !important;
575
575
  }
576
576
 
577
577
  .lime8 {
578
- background-color: #afb42b !important;
578
+ background-color: #AFB42B !important;
579
579
  }
580
580
 
581
581
  .lime9 {
582
- background-color: #9e9d24 !important;
582
+ background-color: #9E9D24 !important;
583
583
  }
584
584
 
585
585
  .lime10 {
@@ -588,198 +588,198 @@
588
588
 
589
589
  .yellow,
590
590
  .yellow6 {
591
- background-color: #ffeb3b !important;
591
+ background-color: #FFEB3B !important;
592
592
  }
593
593
 
594
594
  .yellow-border {
595
- border-color: #ffeb3b !important;
595
+ border-color: #FFEB3B !important;
596
596
  }
597
597
 
598
598
  .yellow-text {
599
- color: #ffeb3b !important;
599
+ color: #FFEB3B !important;
600
600
  }
601
601
 
602
602
  .yellow1 {
603
- background-color: #fffde7 !important;
603
+ background-color: #FFFDE7 !important;
604
604
  }
605
605
 
606
606
  .yellow2 {
607
- background-color: #fff9c4 !important;
607
+ background-color: #FFF9C4 !important;
608
608
  }
609
609
 
610
610
  .yellow3 {
611
- background-color: #fff59d !important;
611
+ background-color: #FFF59D !important;
612
612
  }
613
613
 
614
614
  .yellow4 {
615
- background-color: #fff176 !important;
615
+ background-color: #FFF176 !important;
616
616
  }
617
617
 
618
618
  .yellow5 {
619
- background-color: #ffee58 !important;
619
+ background-color: #FFEE58 !important;
620
620
  }
621
621
 
622
622
  .yellow7 {
623
- background-color: #fdd835 !important;
623
+ background-color: #FDD835 !important;
624
624
  }
625
625
 
626
626
  .yellow8 {
627
- background-color: #fbc02d !important;
627
+ background-color: #FBC02D !important;
628
628
  }
629
629
 
630
630
  .yellow9 {
631
- background-color: #f9a825 !important;
631
+ background-color: #F9A825 !important;
632
632
  }
633
633
 
634
634
  .yellow10 {
635
- background-color: #f57f17 !important;
635
+ background-color: #F57F17 !important;
636
636
  }
637
637
 
638
638
  .amber,
639
639
  .amber6 {
640
- background-color: #ffc107 !important;
640
+ background-color: #FFC107 !important;
641
641
  }
642
642
 
643
643
  .amber-border {
644
- border-color: #ffc107 !important;
644
+ border-color: #FFC107 !important;
645
645
  }
646
646
 
647
647
  .amber-text {
648
- color: #ffc107 !important;
648
+ color: #FFC107 !important;
649
649
  }
650
650
 
651
651
  .amber1 {
652
- background-color: #fff8e1 !important;
652
+ background-color: #FFF8E1 !important;
653
653
  }
654
654
 
655
655
  .amber2 {
656
- background-color: #ffecb3 !important;
656
+ background-color: #FFECB3 !important;
657
657
  }
658
658
 
659
659
  .amber3 {
660
- background-color: #ffe082 !important;
660
+ background-color: #FFE082 !important;
661
661
  }
662
662
 
663
663
  .amber4 {
664
- background-color: #ffd54f !important;
664
+ background-color: #FFD54F !important;
665
665
  }
666
666
 
667
667
  .amber5 {
668
- background-color: #ffca28 !important;
668
+ background-color: #FFCA28 !important;
669
669
  }
670
670
 
671
671
  .amber7 {
672
- background-color: #ffb300 !important;
672
+ background-color: #FFB300 !important;
673
673
  }
674
674
 
675
675
  .amber8 {
676
- background-color: #ffa000 !important;
676
+ background-color: #FFA000 !important;
677
677
  }
678
678
 
679
679
  .amber9 {
680
- background-color: #ff8f00 !important;
680
+ background-color: #FF8F00 !important;
681
681
  }
682
682
 
683
683
  .amber10 {
684
- background-color: #ff6f00 !important;
684
+ background-color: #FF6F00 !important;
685
685
  }
686
686
 
687
687
  .orange,
688
688
  .orange6 {
689
- background-color: #ff9800 !important;
689
+ background-color: #FF9800 !important;
690
690
  }
691
691
 
692
692
  .orange-border {
693
- border-color: #ff9800 !important;
693
+ border-color: #FF9800 !important;
694
694
  }
695
695
 
696
696
  .orange-text {
697
- color: #ff9800 !important;
697
+ color: #FF9800 !important;
698
698
  }
699
699
 
700
700
  .orange1 {
701
- background-color: #fff3e0 !important;
701
+ background-color: #FFF3E0 !important;
702
702
  }
703
703
 
704
704
  .orange2 {
705
- background-color: #ffe0b2 !important;
705
+ background-color: #FFE0B2 !important;
706
706
  }
707
707
 
708
708
  .orange3 {
709
- background-color: #ffcc80 !important;
709
+ background-color: #FFCC80 !important;
710
710
  }
711
711
 
712
712
  .orange4 {
713
- background-color: #ffb74d !important;
713
+ background-color: #FFB74D !important;
714
714
  }
715
715
 
716
716
  .orange5 {
717
- background-color: #ffa726 !important;
717
+ background-color: #FFA726 !important;
718
718
  }
719
719
 
720
720
  .orange7 {
721
- background-color: #fb8c00 !important;
721
+ background-color: #FB8C00 !important;
722
722
  }
723
723
 
724
724
  .orange8 {
725
- background-color: #f57c00 !important;
725
+ background-color: #F57C00 !important;
726
726
  }
727
727
 
728
728
  .orange9 {
729
- background-color: #ef6c00 !important;
729
+ background-color: #EF6C00 !important;
730
730
  }
731
731
 
732
732
  .orange10 {
733
- background-color: #e65100 !important;
733
+ background-color: #E65100 !important;
734
734
  }
735
735
 
736
736
  .deep-orange,
737
737
  .deep-orange6 {
738
- background-color: #ff5722 !important;
738
+ background-color: #FF5722 !important;
739
739
  }
740
740
 
741
741
  .deep-orange-border {
742
- border-color: #ff5722 !important;
742
+ border-color: #FF5722 !important;
743
743
  }
744
744
 
745
745
  .deep-orange-text {
746
- color: #ff5722 !important;
746
+ color: #FF5722 !important;
747
747
  }
748
748
 
749
749
  .deep-orange1 {
750
- background-color: #fbe9e7 !important;
750
+ background-color: #FBE9E7 !important;
751
751
  }
752
752
 
753
753
  .deep-orange2 {
754
- background-color: #ffccbc !important;
754
+ background-color: #FFCCBC !important;
755
755
  }
756
756
 
757
757
  .deep-orange3 {
758
- background-color: #ffab91 !important;
758
+ background-color: #FFAB91 !important;
759
759
  }
760
760
 
761
761
  .deep-orange4 {
762
- background-color: #ff8a65 !important;
762
+ background-color: #FF8A65 !important;
763
763
  }
764
764
 
765
765
  .deep-orange5 {
766
- background-color: #ff7043 !important;
766
+ background-color: #FF7043 !important;
767
767
  }
768
768
 
769
769
  .deep-orange7 {
770
- background-color: #f4511e !important;
770
+ background-color: #F4511E !important;
771
771
  }
772
772
 
773
773
  .deep-orange8 {
774
- background-color: #e64a19 !important;
774
+ background-color: #E64A19 !important;
775
775
  }
776
776
 
777
777
  .deep-orange9 {
778
- background-color: #d84315 !important;
778
+ background-color: #D84315 !important;
779
779
  }
780
780
 
781
781
  .deep-orange10 {
782
- background-color: #bf360c !important;
782
+ background-color: #BF360C !important;
783
783
  }
784
784
 
785
785
  .brown,
@@ -796,84 +796,84 @@
796
796
  }
797
797
 
798
798
  .brown1 {
799
- background-color: #efebe9 !important;
799
+ background-color: #EFEBE9 !important;
800
800
  }
801
801
 
802
802
  .brown2 {
803
- background-color: #d7ccc8 !important;
803
+ background-color: #D7CCC8 !important;
804
804
  }
805
805
 
806
806
  .brown3 {
807
- background-color: #bcaaa4 !important;
807
+ background-color: #BCAAA4 !important;
808
808
  }
809
809
 
810
810
  .brown4 {
811
- background-color: #a1887f !important;
811
+ background-color: #A1887F !important;
812
812
  }
813
813
 
814
814
  .brown5 {
815
- background-color: #8d6e63 !important;
815
+ background-color: #8D6E63 !important;
816
816
  }
817
817
 
818
818
  .brown7 {
819
- background-color: #6d4c41 !important;
819
+ background-color: #6D4C41 !important;
820
820
  }
821
821
 
822
822
  .brown8 {
823
- background-color: #5d4037 !important;
823
+ background-color: #5D4037 !important;
824
824
  }
825
825
 
826
826
  .brown9 {
827
- background-color: #4e342e !important;
827
+ background-color: #4E342E !important;
828
828
  }
829
829
 
830
830
  .brown10 {
831
- background-color: #3e2723 !important;
831
+ background-color: #3E2723 !important;
832
832
  }
833
833
 
834
834
  .blue-grey,
835
835
  .blue-grey6 {
836
- background-color: #607d8b !important;
836
+ background-color: #607D8B !important;
837
837
  }
838
838
 
839
839
  .blue-grey-border {
840
- border-color: #607d8b !important;
840
+ border-color: #607D8B !important;
841
841
  }
842
842
 
843
843
  .blue-grey-text {
844
- color: #607d8b !important;
844
+ color: #607D8B !important;
845
845
  }
846
846
 
847
847
  .blue-grey1 {
848
- background-color: #eceff1 !important;
848
+ background-color: #ECEFF1 !important;
849
849
  }
850
850
 
851
851
  .blue-grey2 {
852
- background-color: #cfd8dc !important;
852
+ background-color: #CFD8DC !important;
853
853
  }
854
854
 
855
855
  .blue-grey3 {
856
- background-color: #b0bec5 !important;
856
+ background-color: #B0BEC5 !important;
857
857
  }
858
858
 
859
859
  .blue-grey4 {
860
- background-color: #90a4ae !important;
860
+ background-color: #90A4AE !important;
861
861
  }
862
862
 
863
863
  .blue-grey5 {
864
- background-color: #78909c !important;
864
+ background-color: #78909C !important;
865
865
  }
866
866
 
867
867
  .blue-grey7 {
868
- background-color: #546e7a !important;
868
+ background-color: #546E7A !important;
869
869
  }
870
870
 
871
871
  .blue-grey8 {
872
- background-color: #455a64 !important;
872
+ background-color: #455A64 !important;
873
873
  }
874
874
 
875
875
  .blue-grey9 {
876
- background-color: #37474f !important;
876
+ background-color: #37474F !important;
877
877
  }
878
878
 
879
879
  .blue-grey10 {
@@ -882,35 +882,35 @@
882
882
 
883
883
  .grey,
884
884
  .grey6 {
885
- background-color: #9e9e9e !important;
885
+ background-color: #9E9E9E !important;
886
886
  }
887
887
 
888
888
  .grey-border {
889
- border-color: #9e9e9e !important;
889
+ border-color: #9E9E9E !important;
890
890
  }
891
891
 
892
892
  .grey-text {
893
- color: #9e9e9e !important;
893
+ color: #9E9E9E !important;
894
894
  }
895
895
 
896
896
  .grey1 {
897
- background-color: #fafafa !important;
897
+ background-color: #FAFAFA !important;
898
898
  }
899
899
 
900
900
  .grey2 {
901
- background-color: #f5f5f5 !important;
901
+ background-color: #F5F5F5 !important;
902
902
  }
903
903
 
904
904
  .grey3 {
905
- background-color: #eeeeee !important;
905
+ background-color: #EEE !important;
906
906
  }
907
907
 
908
908
  .grey4 {
909
- background-color: #e0e0e0 !important;
909
+ background-color: #E0E0E0 !important;
910
910
  }
911
911
 
912
912
  .grey5 {
913
- background-color: #bdbdbd !important;
913
+ background-color: #BDBDBD !important;
914
914
  }
915
915
 
916
916
  .grey7 {
@@ -927,4 +927,4 @@
927
927
 
928
928
  .grey10 {
929
929
  background-color: #212121 !important;
930
- }
930
+ }