@covalent/core 4.1.0-develop.2 → 4.1.0-develop.4

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 (33) hide show
  1. package/common/styles/_elevation.scss +285 -0
  2. package/common/styles/_layout.scss +605 -0
  3. package/common/styles/_palette-dark.scss +326 -0
  4. package/common/styles/_palette-light.scss +637 -0
  5. package/common/styles/_rtl.scss +31 -0
  6. package/common/styles/_styles.scss +10 -0
  7. package/common/styles/_theme-functions.scss +25 -0
  8. package/common/styles/_typography-functions.scss +43 -0
  9. package/common/styles/_variables.scss +99 -0
  10. package/common/styles/colors/_colors-dark.scss +1399 -0
  11. package/common/styles/colors/_colors-light.scss +3235 -0
  12. package/common/styles/colors/_colors.scss +7 -0
  13. package/common/styles/core/_button.scss +90 -0
  14. package/common/styles/core/_card.scss +189 -0
  15. package/common/styles/core/_content.scss +43 -0
  16. package/common/styles/core/_core.scss +23 -0
  17. package/common/styles/core/_divider.scss +16 -0
  18. package/common/styles/core/_icons.scss +22 -0
  19. package/common/styles/core/_list.scss +8 -0
  20. package/common/styles/core/_sidenav.scss +22 -0
  21. package/common/styles/core/_structure.scss +127 -0
  22. package/common/styles/core/_toolbar.scss +53 -0
  23. package/common/styles/core/_whiteframe.scss +138 -0
  24. package/common/styles/font/MaterialIcons-Regular-v48.woff2 +0 -0
  25. package/common/styles/font/_font.scss +99 -0
  26. package/common/styles/utilities/_general.scss +65 -0
  27. package/common/styles/utilities/_pad.scss +36 -0
  28. package/common/styles/utilities/_pull.scss +36 -0
  29. package/common/styles/utilities/_push.scss +36 -0
  30. package/common/styles/utilities/_size.scss +24 -0
  31. package/common/styles/utilities/_text.scss +105 -0
  32. package/common/styles/utilities/_utilities.scss +15 -0
  33. package/package.json +2 -2
@@ -0,0 +1,3235 @@
1
+ /* stylelint-disable selector-class-pattern */
2
+
3
+ @import '../theme-functions';
4
+ @import '../palette-light';
5
+
6
+ @mixin td-colors-light() {
7
+ // Text color
8
+
9
+ // Inherit
10
+ .tc-inherit {
11
+ color: inherit !important;
12
+ }
13
+
14
+ // 50
15
+ .tc-red-50 {
16
+ color: mat-color($mat-red, 50) !important;
17
+ }
18
+
19
+ .tc-pink-50 {
20
+ color: mat-color($mat-pink, 50) !important;
21
+ }
22
+
23
+ .tc-purple-50 {
24
+ color: mat-color($mat-purple, 50) !important;
25
+ }
26
+
27
+ .tc-deep-purple-50 {
28
+ color: mat-color($mat-deep-purple, 50) !important;
29
+ }
30
+
31
+ .tc-indigo-50 {
32
+ color: mat-color($mat-indigo, 50) !important;
33
+ }
34
+
35
+ .tc-blue-50 {
36
+ color: mat-color($mat-blue, 50) !important;
37
+ }
38
+
39
+ .tc-light-blue-50 {
40
+ color: mat-color($mat-light-blue, 50) !important;
41
+ }
42
+
43
+ .tc-cyan-50 {
44
+ color: mat-color($mat-cyan, 50) !important;
45
+ }
46
+
47
+ .tc-teal-50 {
48
+ color: mat-color($mat-teal, 50) !important;
49
+ }
50
+
51
+ .tc-green-50 {
52
+ color: mat-color($mat-green, 50) !important;
53
+ }
54
+
55
+ .tc-light-green-50 {
56
+ color: mat-color($mat-light-green, 50) !important;
57
+ }
58
+
59
+ .tc-lime-50 {
60
+ color: mat-color($mat-lime, 50) !important;
61
+ }
62
+
63
+ .tc-yellow-50 {
64
+ color: mat-color($mat-yellow, 50) !important;
65
+ }
66
+
67
+ .tc-amber-50 {
68
+ color: mat-color($mat-amber, 50) !important;
69
+ }
70
+
71
+ .tc-orange-50 {
72
+ color: mat-color($mat-orange, 50) !important;
73
+ }
74
+
75
+ .tc-deep-orange-50 {
76
+ color: mat-color($mat-deep-orange, 50) !important;
77
+ }
78
+
79
+ .tc-brown-50 {
80
+ color: mat-color($mat-brown, 50) !important;
81
+ }
82
+
83
+ .tc-grey-50 {
84
+ color: mat-color($mat-grey, 50) !important;
85
+ }
86
+
87
+ .tc-blue-grey-50 {
88
+ color: mat-color($mat-blue-grey, 50) !important;
89
+ }
90
+
91
+ // 100
92
+ .tc-red-100 {
93
+ color: mat-color($mat-red, 100) !important;
94
+ }
95
+
96
+ .tc-pink-100 {
97
+ color: mat-color($mat-pink, 100) !important;
98
+ }
99
+
100
+ .tc-purple-100 {
101
+ color: mat-color($mat-purple, 100) !important;
102
+ }
103
+
104
+ .tc-deep-purple-100 {
105
+ color: mat-color($mat-deep-purple, 100) !important;
106
+ }
107
+
108
+ .tc-indigo-100 {
109
+ color: mat-color($mat-indigo, 100) !important;
110
+ }
111
+
112
+ .tc-blue-100 {
113
+ color: mat-color($mat-blue, 100) !important;
114
+ }
115
+
116
+ .tc-light-blue-100 {
117
+ color: mat-color($mat-light-blue, 100) !important;
118
+ }
119
+
120
+ .tc-cyan-100 {
121
+ color: mat-color($mat-cyan, 100) !important;
122
+ }
123
+
124
+ .tc-teal-100 {
125
+ color: mat-color($mat-teal, 100) !important;
126
+ }
127
+
128
+ .tc-green-100 {
129
+ color: mat-color($mat-green, 100) !important;
130
+ }
131
+
132
+ .tc-light-green-100 {
133
+ color: mat-color($mat-light-green, 100) !important;
134
+ }
135
+
136
+ .tc-lime-100 {
137
+ color: mat-color($mat-lime, 100) !important;
138
+ }
139
+
140
+ .tc-yellow-100 {
141
+ color: mat-color($mat-yellow, 100) !important;
142
+ }
143
+
144
+ .tc-amber-100 {
145
+ color: mat-color($mat-amber, 100) !important;
146
+ }
147
+
148
+ .tc-orange-100 {
149
+ color: mat-color($mat-orange, 100) !important;
150
+ }
151
+
152
+ .tc-deep-orange-100 {
153
+ color: mat-color($mat-deep-orange, 100) !important;
154
+ }
155
+
156
+ .tc-brown-100 {
157
+ color: mat-color($mat-brown, 100) !important;
158
+ }
159
+
160
+ .tc-grey-100 {
161
+ color: mat-color($mat-grey, 100) !important;
162
+ }
163
+
164
+ .tc-blue-grey-100 {
165
+ color: mat-color($mat-blue-grey, 100) !important;
166
+ }
167
+
168
+ // 200
169
+ .tc-red-200 {
170
+ color: mat-color($mat-red, 200) !important;
171
+ }
172
+
173
+ .tc-pink-200 {
174
+ color: mat-color($mat-pink, 200) !important;
175
+ }
176
+
177
+ .tc-purple-200 {
178
+ color: mat-color($mat-purple, 200) !important;
179
+ }
180
+
181
+ .tc-deep-purple-200 {
182
+ color: mat-color($mat-deep-purple, 200) !important;
183
+ }
184
+
185
+ .tc-indigo-200 {
186
+ color: mat-color($mat-indigo, 200) !important;
187
+ }
188
+
189
+ .tc-blue-200 {
190
+ color: mat-color($mat-blue, 200) !important;
191
+ }
192
+
193
+ .tc-light-blue-200 {
194
+ color: mat-color($mat-light-blue, 200) !important;
195
+ }
196
+
197
+ .tc-cyan-200 {
198
+ color: mat-color($mat-cyan, 200) !important;
199
+ }
200
+
201
+ .tc-teal-200 {
202
+ color: mat-color($mat-teal, 200) !important;
203
+ }
204
+
205
+ .tc-green-200 {
206
+ color: mat-color($mat-green, 200) !important;
207
+ }
208
+
209
+ .tc-light-green-200 {
210
+ color: mat-color($mat-light-green, 200) !important;
211
+ }
212
+
213
+ .tc-lime-200 {
214
+ color: mat-color($mat-lime, 200) !important;
215
+ }
216
+
217
+ .tc-yellow-200 {
218
+ color: mat-color($mat-yellow, 200) !important;
219
+ }
220
+
221
+ .tc-amber-200 {
222
+ color: mat-color($mat-amber, 200) !important;
223
+ }
224
+
225
+ .tc-orange-200 {
226
+ color: mat-color($mat-orange, 200) !important;
227
+ }
228
+
229
+ .tc-deep-orange-200 {
230
+ color: mat-color($mat-deep-orange, 200) !important;
231
+ }
232
+
233
+ .tc-brown-200 {
234
+ color: mat-color($mat-brown, 200) !important;
235
+ }
236
+
237
+ .tc-grey-200 {
238
+ color: mat-color($mat-grey, 200) !important;
239
+ }
240
+
241
+ .tc-blue-grey-200 {
242
+ color: mat-color($mat-blue-grey, 200) !important;
243
+ }
244
+
245
+ // 300
246
+ .tc-red-300 {
247
+ color: mat-color($mat-red, 300) !important;
248
+ }
249
+
250
+ .tc-pink-300 {
251
+ color: mat-color($mat-pink, 300) !important;
252
+ }
253
+
254
+ .tc-purple-300 {
255
+ color: mat-color($mat-purple, 300) !important;
256
+ }
257
+
258
+ .tc-deep-purple-300 {
259
+ color: mat-color($mat-deep-purple, 300) !important;
260
+ }
261
+
262
+ .tc-indigo-300 {
263
+ color: mat-color($mat-indigo, 300) !important;
264
+ }
265
+
266
+ .tc-blue-300 {
267
+ color: mat-color($mat-blue, 300) !important;
268
+ }
269
+
270
+ .tc-light-blue-300 {
271
+ color: mat-color($mat-light-blue, 300) !important;
272
+ }
273
+
274
+ .tc-cyan-300 {
275
+ color: mat-color($mat-cyan, 300) !important;
276
+ }
277
+
278
+ .tc-teal-300 {
279
+ color: mat-color($mat-teal, 300) !important;
280
+ }
281
+
282
+ .tc-green-300 {
283
+ color: mat-color($mat-green, 300) !important;
284
+ }
285
+
286
+ .tc-light-green-300 {
287
+ color: mat-color($mat-light-green, 300) !important;
288
+ }
289
+
290
+ .tc-lime-300 {
291
+ color: mat-color($mat-lime, 300) !important;
292
+ }
293
+
294
+ .tc-yellow-300 {
295
+ color: mat-color($mat-yellow, 300) !important;
296
+ }
297
+
298
+ .tc-amber-300 {
299
+ color: mat-color($mat-amber, 300) !important;
300
+ }
301
+
302
+ .tc-orange-300 {
303
+ color: mat-color($mat-orange, 300) !important;
304
+ }
305
+
306
+ .tc-deep-orange-300 {
307
+ color: mat-color($mat-deep-orange, 300) !important;
308
+ }
309
+
310
+ .tc-brown-300 {
311
+ color: mat-color($mat-brown, 300) !important;
312
+ }
313
+
314
+ .tc-grey-300 {
315
+ color: mat-color($mat-grey, 300) !important;
316
+ }
317
+
318
+ .tc-blue-grey-300 {
319
+ color: mat-color($mat-blue-grey, 300) !important;
320
+ }
321
+
322
+ // 400
323
+ .tc-red-400 {
324
+ color: mat-color($mat-red, 400) !important;
325
+ }
326
+
327
+ .tc-pink-400 {
328
+ color: mat-color($mat-pink, 400) !important;
329
+ }
330
+
331
+ .tc-purple-400 {
332
+ color: mat-color($mat-purple, 400) !important;
333
+ }
334
+
335
+ .tc-deep-purple-400 {
336
+ color: mat-color($mat-deep-purple, 400) !important;
337
+ }
338
+
339
+ .tc-indigo-400 {
340
+ color: mat-color($mat-indigo, 400) !important;
341
+ }
342
+
343
+ .tc-blue-400 {
344
+ color: mat-color($mat-blue, 400) !important;
345
+ }
346
+
347
+ .tc-light-blue-400 {
348
+ color: mat-color($mat-light-blue, 400) !important;
349
+ }
350
+
351
+ .tc-cyan-400 {
352
+ color: mat-color($mat-cyan, 400) !important;
353
+ }
354
+
355
+ .tc-teal-400 {
356
+ color: mat-color($mat-teal, 400) !important;
357
+ }
358
+
359
+ .tc-green-400 {
360
+ color: mat-color($mat-green, 400) !important;
361
+ }
362
+
363
+ .tc-light-green-400 {
364
+ color: mat-color($mat-light-green, 400) !important;
365
+ }
366
+
367
+ .tc-lime-400 {
368
+ color: mat-color($mat-lime, 400) !important;
369
+ }
370
+
371
+ .tc-yellow-400 {
372
+ color: mat-color($mat-yellow, 400) !important;
373
+ }
374
+
375
+ .tc-amber-400 {
376
+ color: mat-color($mat-amber, 400) !important;
377
+ }
378
+
379
+ .tc-orange-400 {
380
+ color: mat-color($mat-orange, 400) !important;
381
+ }
382
+
383
+ .tc-deep-orange-400 {
384
+ color: mat-color($mat-deep-orange, 400) !important;
385
+ }
386
+
387
+ .tc-brown-400 {
388
+ color: mat-color($mat-brown, 400) !important;
389
+ }
390
+
391
+ .tc-grey-400 {
392
+ color: mat-color($mat-grey, 400) !important;
393
+ }
394
+
395
+ .tc-blue-grey-400 {
396
+ color: mat-color($mat-blue-grey, 400) !important;
397
+ }
398
+
399
+ // 500
400
+ .tc-red-500 {
401
+ color: mat-color($mat-red, 500) !important;
402
+ }
403
+
404
+ .tc-pink-500 {
405
+ color: mat-color($mat-pink, 500) !important;
406
+ }
407
+
408
+ .tc-purple-500 {
409
+ color: mat-color($mat-purple, 500) !important;
410
+ }
411
+
412
+ .tc-deep-purple-500 {
413
+ color: mat-color($mat-deep-purple, 500) !important;
414
+ }
415
+
416
+ .tc-indigo-500 {
417
+ color: mat-color($mat-indigo, 500) !important;
418
+ }
419
+
420
+ .tc-blue-500 {
421
+ color: mat-color($mat-blue, 500) !important;
422
+ }
423
+
424
+ .tc-light-blue-500 {
425
+ color: mat-color($mat-light-blue, 500) !important;
426
+ }
427
+
428
+ .tc-cyan-500 {
429
+ color: mat-color($mat-cyan, 500) !important;
430
+ }
431
+
432
+ .tc-teal-500 {
433
+ color: mat-color($mat-teal, 500) !important;
434
+ }
435
+
436
+ .tc-green-500 {
437
+ color: mat-color($mat-green, 500) !important;
438
+ }
439
+
440
+ .tc-light-green-500 {
441
+ color: mat-color($mat-light-green, 500) !important;
442
+ }
443
+
444
+ .tc-lime-500 {
445
+ color: mat-color($mat-lime, 500) !important;
446
+ }
447
+
448
+ .tc-yellow-500 {
449
+ color: mat-color($mat-yellow, 500) !important;
450
+ }
451
+
452
+ .tc-amber-500 {
453
+ color: mat-color($mat-amber, 500) !important;
454
+ }
455
+
456
+ .tc-orange-500 {
457
+ color: mat-color($mat-orange, 500) !important;
458
+ }
459
+
460
+ .tc-deep-orange-500 {
461
+ color: mat-color($mat-deep-orange, 500) !important;
462
+ }
463
+
464
+ .tc-brown-500 {
465
+ color: mat-color($mat-brown, 500) !important;
466
+ }
467
+
468
+ .tc-grey-500 {
469
+ color: mat-color($mat-grey, 500) !important;
470
+ }
471
+
472
+ .tc-blue-grey-500 {
473
+ color: mat-color($mat-blue-grey, 500) !important;
474
+ }
475
+
476
+ // 600
477
+ .tc-red-600 {
478
+ color: mat-color($mat-red, 600) !important;
479
+ }
480
+
481
+ .tc-pink-600 {
482
+ color: mat-color($mat-pink, 600) !important;
483
+ }
484
+
485
+ .tc-purple-600 {
486
+ color: mat-color($mat-purple, 600) !important;
487
+ }
488
+
489
+ .tc-deep-purple-600 {
490
+ color: mat-color($mat-deep-purple, 600) !important;
491
+ }
492
+
493
+ .tc-indigo-600 {
494
+ color: mat-color($mat-indigo, 600) !important;
495
+ }
496
+
497
+ .tc-blue-600 {
498
+ color: mat-color($mat-blue, 600) !important;
499
+ }
500
+
501
+ .tc-light-blue-600 {
502
+ color: mat-color($mat-light-blue, 600) !important;
503
+ }
504
+
505
+ .tc-cyan-600 {
506
+ color: mat-color($mat-cyan, 600) !important;
507
+ }
508
+
509
+ .tc-teal-600 {
510
+ color: mat-color($mat-teal, 600) !important;
511
+ }
512
+
513
+ .tc-green-600 {
514
+ color: mat-color($mat-green, 600) !important;
515
+ }
516
+
517
+ .tc-light-green-600 {
518
+ color: mat-color($mat-light-green, 600) !important;
519
+ }
520
+
521
+ .tc-lime-600 {
522
+ color: mat-color($mat-lime, 600) !important;
523
+ }
524
+
525
+ .tc-yellow-600 {
526
+ color: mat-color($mat-yellow, 600) !important;
527
+ }
528
+
529
+ .tc-amber-600 {
530
+ color: mat-color($mat-amber, 600) !important;
531
+ }
532
+
533
+ .tc-orange-600 {
534
+ color: mat-color($mat-orange, 600) !important;
535
+ }
536
+
537
+ .tc-deep-orange-600 {
538
+ color: mat-color($mat-deep-orange, 600) !important;
539
+ }
540
+
541
+ .tc-brown-600 {
542
+ color: mat-color($mat-brown, 600) !important;
543
+ }
544
+
545
+ .tc-grey-600 {
546
+ color: mat-color($mat-grey, 600) !important;
547
+ }
548
+
549
+ .tc-blue-grey-600 {
550
+ color: mat-color($mat-blue-grey, 600) !important;
551
+ }
552
+
553
+ // 700
554
+ .tc-red-700 {
555
+ color: mat-color($mat-red, 700) !important;
556
+ }
557
+
558
+ .tc-pink-700 {
559
+ color: mat-color($mat-pink, 700) !important;
560
+ }
561
+
562
+ .tc-purple-700 {
563
+ color: mat-color($mat-purple, 700) !important;
564
+ }
565
+
566
+ .tc-deep-purple-700 {
567
+ color: mat-color($mat-deep-purple, 700) !important;
568
+ }
569
+
570
+ .tc-indigo-700 {
571
+ color: mat-color($mat-indigo, 700) !important;
572
+ }
573
+
574
+ .tc-blue-700 {
575
+ color: mat-color($mat-blue, 700) !important;
576
+ }
577
+
578
+ .tc-light-blue-700 {
579
+ color: mat-color($mat-light-blue, 700) !important;
580
+ }
581
+
582
+ .tc-cyan-700 {
583
+ color: mat-color($mat-cyan, 700) !important;
584
+ }
585
+
586
+ .tc-teal-700 {
587
+ color: mat-color($mat-teal, 700) !important;
588
+ }
589
+
590
+ .tc-green-700 {
591
+ color: mat-color($mat-green, 700) !important;
592
+ }
593
+
594
+ .tc-light-green-700 {
595
+ color: mat-color($mat-light-green, 700) !important;
596
+ }
597
+
598
+ .tc-lime-700 {
599
+ color: mat-color($mat-lime, 700) !important;
600
+ }
601
+
602
+ .tc-yellow-700 {
603
+ color: mat-color($mat-yellow, 700) !important;
604
+ }
605
+
606
+ .tc-amber-700 {
607
+ color: mat-color($mat-amber, 700) !important;
608
+ }
609
+
610
+ .tc-orange-700 {
611
+ color: mat-color($mat-orange, 700) !important;
612
+ }
613
+
614
+ .tc-deep-orange-700 {
615
+ color: mat-color($mat-deep-orange, 700) !important;
616
+ }
617
+
618
+ .tc-brown-700 {
619
+ color: mat-color($mat-brown, 700) !important;
620
+ }
621
+
622
+ .tc-grey-700 {
623
+ color: mat-color($mat-grey, 700) !important;
624
+ }
625
+
626
+ .tc-blue-grey-700 {
627
+ color: mat-color($mat-blue-grey, 700) !important;
628
+ }
629
+
630
+ // 800
631
+ .tc-red-800 {
632
+ color: mat-color($mat-red, 800) !important;
633
+ }
634
+
635
+ .tc-pink-800 {
636
+ color: mat-color($mat-pink, 800) !important;
637
+ }
638
+
639
+ .tc-purple-800 {
640
+ color: mat-color($mat-purple, 800) !important;
641
+ }
642
+
643
+ .tc-deep-purple-800 {
644
+ color: mat-color($mat-deep-purple, 800) !important;
645
+ }
646
+
647
+ .tc-indigo-800 {
648
+ color: mat-color($mat-indigo, 800) !important;
649
+ }
650
+
651
+ .tc-blue-800 {
652
+ color: mat-color($mat-blue, 800) !important;
653
+ }
654
+
655
+ .tc-light-blue-800 {
656
+ color: mat-color($mat-light-blue, 800) !important;
657
+ }
658
+
659
+ .tc-cyan-800 {
660
+ color: mat-color($mat-cyan, 800) !important;
661
+ }
662
+
663
+ .tc-teal-800 {
664
+ color: mat-color($mat-teal, 800) !important;
665
+ }
666
+
667
+ .tc-green-800 {
668
+ color: mat-color($mat-green, 800) !important;
669
+ }
670
+
671
+ .tc-light-green-800 {
672
+ color: mat-color($mat-light-green, 800) !important;
673
+ }
674
+
675
+ .tc-lime-800 {
676
+ color: mat-color($mat-lime, 800) !important;
677
+ }
678
+
679
+ .tc-yellow-800 {
680
+ color: mat-color($mat-yellow, 800) !important;
681
+ }
682
+
683
+ .tc-amber-800 {
684
+ color: mat-color($mat-amber, 800) !important;
685
+ }
686
+
687
+ .tc-orange-800 {
688
+ color: mat-color($mat-orange, 800) !important;
689
+ }
690
+
691
+ .tc-deep-orange-800 {
692
+ color: mat-color($mat-deep-orange, 800) !important;
693
+ }
694
+
695
+ .tc-brown-800 {
696
+ color: mat-color($mat-brown, 800) !important;
697
+ }
698
+
699
+ .tc-grey-800 {
700
+ color: mat-color($mat-grey, 800) !important;
701
+ }
702
+
703
+ .tc-blue-grey-800 {
704
+ color: mat-color($mat-blue-grey, 800) !important;
705
+ }
706
+
707
+ // 900
708
+ .tc-red-900 {
709
+ color: mat-color($mat-red, 900) !important;
710
+ }
711
+
712
+ .tc-pink-900 {
713
+ color: mat-color($mat-pink, 900) !important;
714
+ }
715
+
716
+ .tc-purple-900 {
717
+ color: mat-color($mat-purple, 900) !important;
718
+ }
719
+
720
+ .tc-deep-purple-900 {
721
+ color: mat-color($mat-deep-purple, 900) !important;
722
+ }
723
+
724
+ .tc-indigo-900 {
725
+ color: mat-color($mat-indigo, 900) !important;
726
+ }
727
+
728
+ .tc-blue-900 {
729
+ color: mat-color($mat-blue, 900) !important;
730
+ }
731
+
732
+ .tc-light-blue-900 {
733
+ color: mat-color($mat-light-blue, 900) !important;
734
+ }
735
+
736
+ .tc-cyan-900 {
737
+ color: mat-color($mat-cyan, 900) !important;
738
+ }
739
+
740
+ .tc-teal-900 {
741
+ color: mat-color($mat-teal, 900) !important;
742
+ }
743
+
744
+ .tc-green-900 {
745
+ color: mat-color($mat-green, 900) !important;
746
+ }
747
+
748
+ .tc-light-green-900 {
749
+ color: mat-color($mat-light-green, 900) !important;
750
+ }
751
+
752
+ .tc-lime-900 {
753
+ color: mat-color($mat-lime, 900) !important;
754
+ }
755
+
756
+ .tc-yellow-900 {
757
+ color: mat-color($mat-yellow, 900) !important;
758
+ }
759
+
760
+ .tc-amber-900 {
761
+ color: mat-color($mat-amber, 900) !important;
762
+ }
763
+
764
+ .tc-orange-900 {
765
+ color: mat-color($mat-orange, 900) !important;
766
+ }
767
+
768
+ .tc-deep-orange-900 {
769
+ color: mat-color($mat-deep-orange, 900) !important;
770
+ }
771
+
772
+ .tc-brown-900 {
773
+ color: mat-color($mat-brown, 900) !important;
774
+ }
775
+
776
+ .tc-grey-900 {
777
+ color: mat-color($mat-grey, 900) !important;
778
+ }
779
+
780
+ .tc-blue-grey-900 {
781
+ color: mat-color($mat-blue-grey, 900) !important;
782
+ }
783
+
784
+ // A100
785
+ .tc-red-A100 {
786
+ color: mat-color($mat-red, A100) !important;
787
+ }
788
+
789
+ .tc-pink-A100 {
790
+ color: mat-color($mat-pink, A100) !important;
791
+ }
792
+
793
+ .tc-purple-A100 {
794
+ color: mat-color($mat-purple, A100) !important;
795
+ }
796
+
797
+ .tc-deep-purple-A100 {
798
+ color: mat-color($mat-deep-purple, A100) !important;
799
+ }
800
+
801
+ .tc-indigo-A100 {
802
+ color: mat-color($mat-indigo, A100) !important;
803
+ }
804
+
805
+ .tc-blue-A100 {
806
+ color: mat-color($mat-blue, A100) !important;
807
+ }
808
+
809
+ .tc-light-blue-A100 {
810
+ color: mat-color($mat-light-blue, A100) !important;
811
+ }
812
+
813
+ .tc-cyan-A100 {
814
+ color: mat-color($mat-cyan, A100) !important;
815
+ }
816
+
817
+ .tc-teal-A100 {
818
+ color: mat-color($mat-teal, A100) !important;
819
+ }
820
+
821
+ .tc-green-A100 {
822
+ color: mat-color($mat-green, A100) !important;
823
+ }
824
+
825
+ .tc-light-green-A100 {
826
+ color: mat-color($mat-light-green, A100) !important;
827
+ }
828
+
829
+ .tc-lime-A100 {
830
+ color: mat-color($mat-lime, A100) !important;
831
+ }
832
+
833
+ .tc-yellow-A100 {
834
+ color: mat-color($mat-yellow, A100) !important;
835
+ }
836
+
837
+ .tc-amber-A100 {
838
+ color: mat-color($mat-amber, A100) !important;
839
+ }
840
+
841
+ .tc-orange-A100 {
842
+ color: mat-color($mat-orange, A100) !important;
843
+ }
844
+
845
+ .tc-deep-orange-A100 {
846
+ color: mat-color($mat-deep-orange, A100) !important;
847
+ }
848
+
849
+ // A200
850
+ .tc-red-A200 {
851
+ color: mat-color($mat-red, A200) !important;
852
+ }
853
+
854
+ .tc-pink-A200 {
855
+ color: mat-color($mat-pink, A200) !important;
856
+ }
857
+
858
+ .tc-purple-A200 {
859
+ color: mat-color($mat-purple, A200) !important;
860
+ }
861
+
862
+ .tc-deep-purple-A200 {
863
+ color: mat-color($mat-deep-purple, A200) !important;
864
+ }
865
+
866
+ .tc-indigo-A200 {
867
+ color: mat-color($mat-indigo, A200) !important;
868
+ }
869
+
870
+ .tc-blue-A200 {
871
+ color: mat-color($mat-blue, A200) !important;
872
+ }
873
+
874
+ .tc-light-blue-A200 {
875
+ color: mat-color($mat-light-blue, A200) !important;
876
+ }
877
+
878
+ .tc-cyan-A200 {
879
+ color: mat-color($mat-cyan, A200) !important;
880
+ }
881
+
882
+ .tc-teal-A200 {
883
+ color: mat-color($mat-teal, A200) !important;
884
+ }
885
+
886
+ .tc-green-A200 {
887
+ color: mat-color($mat-green, A200) !important;
888
+ }
889
+
890
+ .tc-light-green-A200 {
891
+ color: mat-color($mat-light-green, A200) !important;
892
+ }
893
+
894
+ .tc-lime-A200 {
895
+ color: mat-color($mat-lime, A200) !important;
896
+ }
897
+
898
+ .tc-yellow-A200 {
899
+ color: mat-color($mat-yellow, A200) !important;
900
+ }
901
+
902
+ .tc-amber-A200 {
903
+ color: mat-color($mat-amber, A200) !important;
904
+ }
905
+
906
+ .tc-orange-A200 {
907
+ color: mat-color($mat-orange, A200) !important;
908
+ }
909
+
910
+ .tc-deep-orange-A200 {
911
+ color: mat-color($mat-deep-orange, A200) !important;
912
+ }
913
+
914
+ // A400
915
+ .tc-red-A400 {
916
+ color: mat-color($mat-red, A400) !important;
917
+ }
918
+
919
+ .tc-pink-A400 {
920
+ color: mat-color($mat-pink, A400) !important;
921
+ }
922
+
923
+ .tc-purple-A400 {
924
+ color: mat-color($mat-purple, A400) !important;
925
+ }
926
+
927
+ .tc-deep-purple-A400 {
928
+ color: mat-color($mat-deep-purple, A400) !important;
929
+ }
930
+
931
+ .tc-indigo-A400 {
932
+ color: mat-color($mat-indigo, A400) !important;
933
+ }
934
+
935
+ .tc-blue-A400 {
936
+ color: mat-color($mat-blue, A400) !important;
937
+ }
938
+
939
+ .tc-light-blue-A400 {
940
+ color: mat-color($mat-light-blue, A400) !important;
941
+ }
942
+
943
+ .tc-cyan-A400 {
944
+ color: mat-color($mat-cyan, A400) !important;
945
+ }
946
+
947
+ .tc-teal-A400 {
948
+ color: mat-color($mat-teal, A400) !important;
949
+ }
950
+
951
+ .tc-green-A400 {
952
+ color: mat-color($mat-green, A400) !important;
953
+ }
954
+
955
+ .tc-light-green-A400 {
956
+ color: mat-color($mat-light-green, A400) !important;
957
+ }
958
+
959
+ .tc-lime-A400 {
960
+ color: mat-color($mat-lime, A400) !important;
961
+ }
962
+
963
+ .tc-yellow-A400 {
964
+ color: mat-color($mat-yellow, A400) !important;
965
+ }
966
+
967
+ .tc-amber-A400 {
968
+ color: mat-color($mat-amber, A400) !important;
969
+ }
970
+
971
+ .tc-orange-A400 {
972
+ color: mat-color($mat-orange, A400) !important;
973
+ }
974
+
975
+ .tc-deep-orange-A400 {
976
+ color: mat-color($mat-deep-orange, A400) !important;
977
+ }
978
+
979
+ // A700
980
+ .tc-red-A700 {
981
+ color: mat-color($mat-red, A700) !important;
982
+ }
983
+
984
+ .tc-pink-A700 {
985
+ color: mat-color($mat-pink, A700) !important;
986
+ }
987
+
988
+ .tc-purple-A700 {
989
+ color: mat-color($mat-purple, A700) !important;
990
+ }
991
+
992
+ .tc-deep-purple-A700 {
993
+ color: mat-color($mat-deep-purple, A700) !important;
994
+ }
995
+
996
+ .tc-indigo-A700 {
997
+ color: mat-color($mat-indigo, A700) !important;
998
+ }
999
+
1000
+ .tc-blue-A700 {
1001
+ color: mat-color($mat-blue, A700) !important;
1002
+ }
1003
+
1004
+ .tc-light-blue-A700 {
1005
+ color: mat-color($mat-light-blue, A700) !important;
1006
+ }
1007
+
1008
+ .tc-cyan-A700 {
1009
+ color: mat-color($mat-cyan, A700) !important;
1010
+ }
1011
+
1012
+ .tc-teal-A700 {
1013
+ color: mat-color($mat-teal, A700) !important;
1014
+ }
1015
+
1016
+ .tc-green-A700 {
1017
+ color: mat-color($mat-green, A700) !important;
1018
+ }
1019
+
1020
+ .tc-light-green-A700 {
1021
+ color: mat-color($mat-light-green, A700) !important;
1022
+ }
1023
+
1024
+ .tc-lime-A700 {
1025
+ color: mat-color($mat-lime, A700) !important;
1026
+ }
1027
+
1028
+ .tc-yellow-A700 {
1029
+ color: mat-color($mat-yellow, A700) !important;
1030
+ }
1031
+
1032
+ .tc-amber-A700 {
1033
+ color: mat-color($mat-amber, A700) !important;
1034
+ }
1035
+
1036
+ .tc-orange-A700 {
1037
+ color: mat-color($mat-orange, A700) !important;
1038
+ }
1039
+
1040
+ .tc-deep-orange-A700 {
1041
+ color: mat-color($mat-deep-orange, A700) !important;
1042
+ }
1043
+
1044
+ // Black
1045
+ .tc-black {
1046
+ color: rgba(black, 87) !important;
1047
+ }
1048
+
1049
+ .tc-black-1 {
1050
+ color: rgba(black, 54) !important;
1051
+ }
1052
+
1053
+ .tc-black-2 {
1054
+ color: rgba(black, 38) !important;
1055
+ }
1056
+
1057
+ .tc-black-3 {
1058
+ color: rgba(black, 0.12) !important;
1059
+ }
1060
+
1061
+ .tc-black-4 {
1062
+ color: black !important;
1063
+ }
1064
+
1065
+ // White
1066
+ .tc-white {
1067
+ color: rgba(white, 0.7) !important;
1068
+ }
1069
+
1070
+ .tc-white-1 {
1071
+ color: rgba(white, 0.3) !important;
1072
+ }
1073
+
1074
+ .tc-white-2 {
1075
+ color: rgba(white, 0.3) !important;
1076
+ }
1077
+
1078
+ .tc-white-3 {
1079
+ color: rgba(white, 0.12) !important;
1080
+ }
1081
+
1082
+ .tc-white-4 {
1083
+ color: white !important;
1084
+ }
1085
+
1086
+ // Background color
1087
+
1088
+ // 50
1089
+ .bgc-red-50 {
1090
+ background-color: mat-color($mat-red, 50) !important;
1091
+ }
1092
+
1093
+ .bgc-pink-50 {
1094
+ background-color: mat-color($mat-pink, 50) !important;
1095
+ }
1096
+
1097
+ .bgc-purple-50 {
1098
+ background-color: mat-color($mat-purple, 50) !important;
1099
+ }
1100
+
1101
+ .bgc-deep-purple-50 {
1102
+ background-color: mat-color($mat-deep-purple, 50) !important;
1103
+ }
1104
+
1105
+ .bgc-indigo-50 {
1106
+ background-color: mat-color($mat-indigo, 50) !important;
1107
+ }
1108
+
1109
+ .bgc-blue-50 {
1110
+ background-color: mat-color($mat-blue, 50) !important;
1111
+ }
1112
+
1113
+ .bgc-light-blue-50 {
1114
+ background-color: mat-color($mat-light-blue, 50) !important;
1115
+ }
1116
+
1117
+ .bgc-cyan-50 {
1118
+ background-color: mat-color($mat-cyan, 50) !important;
1119
+ }
1120
+
1121
+ .bgc-teal-50 {
1122
+ background-color: mat-color($mat-teal, 50) !important;
1123
+ }
1124
+
1125
+ .bgc-green-50 {
1126
+ background-color: mat-color($mat-green, 50) !important;
1127
+ }
1128
+
1129
+ .bgc-light-green-50 {
1130
+ background-color: mat-color($mat-light-green, 50) !important;
1131
+ }
1132
+
1133
+ .bgc-lime-50 {
1134
+ background-color: mat-color($mat-lime, 50) !important;
1135
+ }
1136
+
1137
+ .bgc-yellow-50 {
1138
+ background-color: mat-color($mat-yellow, 50) !important;
1139
+ }
1140
+
1141
+ .bgc-amber-50 {
1142
+ background-color: mat-color($mat-amber, 50) !important;
1143
+ }
1144
+
1145
+ .bgc-orange-50 {
1146
+ background-color: mat-color($mat-orange, 50) !important;
1147
+ }
1148
+
1149
+ .bgc-deep-orange-50 {
1150
+ background-color: mat-color($mat-deep-orange, 50) !important;
1151
+ }
1152
+
1153
+ .bgc-brown-50 {
1154
+ background-color: mat-color($mat-brown, 50) !important;
1155
+ }
1156
+
1157
+ .bgc-grey-50 {
1158
+ background-color: mat-color($mat-grey, 50) !important;
1159
+ }
1160
+
1161
+ .bgc-blue-grey-50 {
1162
+ background-color: mat-color($mat-blue-grey, 50) !important;
1163
+ }
1164
+
1165
+ // 100
1166
+ .bgc-red-100 {
1167
+ background-color: mat-color($mat-red, 100) !important;
1168
+ }
1169
+
1170
+ .bgc-pink-100 {
1171
+ background-color: mat-color($mat-pink, 100) !important;
1172
+ }
1173
+
1174
+ .bgc-purple-100 {
1175
+ background-color: mat-color($mat-purple, 100) !important;
1176
+ }
1177
+
1178
+ .bgc-deep-purple-100 {
1179
+ background-color: mat-color($mat-deep-purple, 100) !important;
1180
+ }
1181
+
1182
+ .bgc-indigo-100 {
1183
+ background-color: mat-color($mat-indigo, 100) !important;
1184
+ }
1185
+
1186
+ .bgc-blue-100 {
1187
+ background-color: mat-color($mat-blue, 100) !important;
1188
+ }
1189
+
1190
+ .bgc-light-blue-100 {
1191
+ background-color: mat-color($mat-light-blue, 100) !important;
1192
+ }
1193
+
1194
+ .bgc-cyan-100 {
1195
+ background-color: mat-color($mat-cyan, 100) !important;
1196
+ }
1197
+
1198
+ .bgc-teal-100 {
1199
+ background-color: mat-color($mat-teal, 100) !important;
1200
+ }
1201
+
1202
+ .bgc-green-100 {
1203
+ background-color: mat-color($mat-green, 100) !important;
1204
+ }
1205
+
1206
+ .bgc-light-green-100 {
1207
+ background-color: mat-color($mat-light-green, 100) !important;
1208
+ }
1209
+
1210
+ .bgc-lime-100 {
1211
+ background-color: mat-color($mat-lime, 100) !important;
1212
+ }
1213
+
1214
+ .bgc-yellow-100 {
1215
+ background-color: mat-color($mat-yellow, 100) !important;
1216
+ }
1217
+
1218
+ .bgc-amber-100 {
1219
+ background-color: mat-color($mat-amber, 100) !important;
1220
+ }
1221
+
1222
+ .bgc-orange-100 {
1223
+ background-color: mat-color($mat-orange, 100) !important;
1224
+ }
1225
+
1226
+ .bgc-deep-orange-100 {
1227
+ background-color: mat-color($mat-deep-orange, 100) !important;
1228
+ }
1229
+
1230
+ .bgc-brown-100 {
1231
+ background-color: mat-color($mat-brown, 100) !important;
1232
+ }
1233
+
1234
+ .bgc-grey-100 {
1235
+ background-color: mat-color($mat-grey, 100) !important;
1236
+ }
1237
+
1238
+ .bgc-blue-grey-100 {
1239
+ background-color: mat-color($mat-blue-grey, 100) !important;
1240
+ }
1241
+
1242
+ // 200
1243
+ .bgc-red-200 {
1244
+ background-color: mat-color($mat-red, 200) !important;
1245
+ }
1246
+
1247
+ .bgc-pink-200 {
1248
+ background-color: mat-color($mat-pink, 200) !important;
1249
+ }
1250
+
1251
+ .bgc-purple-200 {
1252
+ background-color: mat-color($mat-purple, 200) !important;
1253
+ }
1254
+
1255
+ .bgc-deep-purple-200 {
1256
+ background-color: mat-color($mat-deep-purple, 200) !important;
1257
+ }
1258
+
1259
+ .bgc-indigo-200 {
1260
+ background-color: mat-color($mat-indigo, 200) !important;
1261
+ }
1262
+
1263
+ .bgc-blue-200 {
1264
+ background-color: mat-color($mat-blue, 200) !important;
1265
+ }
1266
+
1267
+ .bgc-light-blue-200 {
1268
+ background-color: mat-color($mat-light-blue, 200) !important;
1269
+ }
1270
+
1271
+ .bgc-cyan-200 {
1272
+ background-color: mat-color($mat-cyan, 200) !important;
1273
+ }
1274
+
1275
+ .bgc-teal-200 {
1276
+ background-color: mat-color($mat-teal, 200) !important;
1277
+ }
1278
+
1279
+ .bgc-green-200 {
1280
+ background-color: mat-color($mat-green, 200) !important;
1281
+ }
1282
+
1283
+ .bgc-light-green-200 {
1284
+ background-color: mat-color($mat-light-green, 200) !important;
1285
+ }
1286
+
1287
+ .bgc-lime-200 {
1288
+ background-color: mat-color($mat-lime, 200) !important;
1289
+ }
1290
+
1291
+ .bgc-yellow-200 {
1292
+ background-color: mat-color($mat-yellow, 200) !important;
1293
+ }
1294
+
1295
+ .bgc-amber-200 {
1296
+ background-color: mat-color($mat-amber, 200) !important;
1297
+ }
1298
+
1299
+ .bgc-orange-200 {
1300
+ background-color: mat-color($mat-orange, 200) !important;
1301
+ }
1302
+
1303
+ .bgc-deep-orange-200 {
1304
+ background-color: mat-color($mat-deep-orange, 200) !important;
1305
+ }
1306
+
1307
+ .bgc-brown-200 {
1308
+ background-color: mat-color($mat-brown, 200) !important;
1309
+ }
1310
+
1311
+ .bgc-grey-200 {
1312
+ background-color: mat-color($mat-grey, 200) !important;
1313
+ }
1314
+
1315
+ .bgc-blue-grey-200 {
1316
+ background-color: mat-color($mat-blue-grey, 200) !important;
1317
+ }
1318
+
1319
+ // 300
1320
+ .bgc-red-300 {
1321
+ background-color: mat-color($mat-red, 300) !important;
1322
+ }
1323
+
1324
+ .bgc-pink-300 {
1325
+ background-color: mat-color($mat-pink, 300) !important;
1326
+ }
1327
+
1328
+ .bgc-purple-300 {
1329
+ background-color: mat-color($mat-purple, 300) !important;
1330
+ }
1331
+
1332
+ .bgc-deep-purple-300 {
1333
+ background-color: mat-color($mat-deep-purple, 300) !important;
1334
+ }
1335
+
1336
+ .bgc-indigo-300 {
1337
+ background-color: mat-color($mat-indigo, 300) !important;
1338
+ }
1339
+
1340
+ .bgc-blue-300 {
1341
+ background-color: mat-color($mat-blue, 300) !important;
1342
+ }
1343
+
1344
+ .bgc-light-blue-300 {
1345
+ background-color: mat-color($mat-light-blue, 300) !important;
1346
+ }
1347
+
1348
+ .bgc-cyan-300 {
1349
+ background-color: mat-color($mat-cyan, 300) !important;
1350
+ }
1351
+
1352
+ .bgc-teal-300 {
1353
+ background-color: mat-color($mat-teal, 300) !important;
1354
+ }
1355
+
1356
+ .bgc-green-300 {
1357
+ background-color: mat-color($mat-green, 300) !important;
1358
+ }
1359
+
1360
+ .bgc-light-green-300 {
1361
+ background-color: mat-color($mat-light-green, 300) !important;
1362
+ }
1363
+
1364
+ .bgc-lime-300 {
1365
+ background-color: mat-color($mat-lime, 300) !important;
1366
+ }
1367
+
1368
+ .bgc-yellow-300 {
1369
+ background-color: mat-color($mat-yellow, 300) !important;
1370
+ }
1371
+
1372
+ .bgc-amber-300 {
1373
+ background-color: mat-color($mat-amber, 300) !important;
1374
+ }
1375
+
1376
+ .bgc-orange-300 {
1377
+ background-color: mat-color($mat-orange, 300) !important;
1378
+ }
1379
+
1380
+ .bgc-deep-orange-300 {
1381
+ background-color: mat-color($mat-deep-orange, 300) !important;
1382
+ }
1383
+
1384
+ .bgc-brown-300 {
1385
+ background-color: mat-color($mat-brown, 300) !important;
1386
+ }
1387
+
1388
+ .bgc-grey-300 {
1389
+ background-color: mat-color($mat-grey, 300) !important;
1390
+ }
1391
+
1392
+ .bgc-blue-grey-300 {
1393
+ background-color: mat-color($mat-blue-grey, 300) !important;
1394
+ }
1395
+
1396
+ // 400
1397
+ .bgc-red-400 {
1398
+ background-color: mat-color($mat-red, 400) !important;
1399
+ }
1400
+
1401
+ .bgc-pink-400 {
1402
+ background-color: mat-color($mat-pink, 400) !important;
1403
+ }
1404
+
1405
+ .bgc-purple-400 {
1406
+ background-color: mat-color($mat-purple, 400) !important;
1407
+ }
1408
+
1409
+ .bgc-deep-purple-400 {
1410
+ background-color: mat-color($mat-deep-purple, 400) !important;
1411
+ }
1412
+
1413
+ .bgc-indigo-400 {
1414
+ background-color: mat-color($mat-indigo, 400) !important;
1415
+ }
1416
+
1417
+ .bgc-blue-400 {
1418
+ background-color: mat-color($mat-blue, 400) !important;
1419
+ }
1420
+
1421
+ .bgc-light-blue-400 {
1422
+ background-color: mat-color($mat-light-blue, 400) !important;
1423
+ }
1424
+
1425
+ .bgc-cyan-400 {
1426
+ background-color: mat-color($mat-cyan, 400) !important;
1427
+ }
1428
+
1429
+ .bgc-teal-400 {
1430
+ background-color: mat-color($mat-teal, 400) !important;
1431
+ }
1432
+
1433
+ .bgc-green-400 {
1434
+ background-color: mat-color($mat-green, 400) !important;
1435
+ }
1436
+
1437
+ .bgc-light-green-400 {
1438
+ background-color: mat-color($mat-light-green, 400) !important;
1439
+ }
1440
+
1441
+ .bgc-lime-400 {
1442
+ background-color: mat-color($mat-lime, 400) !important;
1443
+ }
1444
+
1445
+ .bgc-yellow-400 {
1446
+ background-color: mat-color($mat-yellow, 400) !important;
1447
+ }
1448
+
1449
+ .bgc-amber-400 {
1450
+ background-color: mat-color($mat-amber, 400) !important;
1451
+ }
1452
+
1453
+ .bgc-orange-400 {
1454
+ background-color: mat-color($mat-orange, 400) !important;
1455
+ }
1456
+
1457
+ .bgc-deep-orange-400 {
1458
+ background-color: mat-color($mat-deep-orange, 400) !important;
1459
+ }
1460
+
1461
+ .bgc-brown-400 {
1462
+ background-color: mat-color($mat-brown, 400) !important;
1463
+ }
1464
+
1465
+ .bgc-grey-400 {
1466
+ background-color: mat-color($mat-grey, 400) !important;
1467
+ }
1468
+
1469
+ .bgc-blue-grey-400 {
1470
+ background-color: mat-color($mat-blue-grey, 400) !important;
1471
+ }
1472
+
1473
+ // 500
1474
+ .bgc-red-500 {
1475
+ background-color: mat-color($mat-red, 500) !important;
1476
+ }
1477
+
1478
+ .bgc-pink-500 {
1479
+ background-color: mat-color($mat-pink, 500) !important;
1480
+ }
1481
+
1482
+ .bgc-purple-500 {
1483
+ background-color: mat-color($mat-purple, 500) !important;
1484
+ }
1485
+
1486
+ .bgc-deep-purple-500 {
1487
+ background-color: mat-color($mat-deep-purple, 500) !important;
1488
+ }
1489
+
1490
+ .bgc-indigo-500 {
1491
+ background-color: mat-color($mat-indigo, 500) !important;
1492
+ }
1493
+
1494
+ .bgc-blue-500 {
1495
+ background-color: mat-color($mat-blue, 500) !important;
1496
+ }
1497
+
1498
+ .bgc-light-blue-500 {
1499
+ background-color: mat-color($mat-light-blue, 500) !important;
1500
+ }
1501
+
1502
+ .bgc-cyan-500 {
1503
+ background-color: mat-color($mat-cyan, 500) !important;
1504
+ }
1505
+
1506
+ .bgc-teal-500 {
1507
+ background-color: mat-color($mat-teal, 500) !important;
1508
+ }
1509
+
1510
+ .bgc-green-500 {
1511
+ background-color: mat-color($mat-green, 500) !important;
1512
+ }
1513
+
1514
+ .bgc-light-green-500 {
1515
+ background-color: mat-color($mat-light-green, 500) !important;
1516
+ }
1517
+
1518
+ .bgc-lime-500 {
1519
+ background-color: mat-color($mat-lime, 500) !important;
1520
+ }
1521
+
1522
+ .bgc-yellow-500 {
1523
+ background-color: mat-color($mat-yellow, 500) !important;
1524
+ }
1525
+
1526
+ .bgc-amber-500 {
1527
+ background-color: mat-color($mat-amber, 500) !important;
1528
+ }
1529
+
1530
+ .bgc-orange-500 {
1531
+ background-color: mat-color($mat-orange, 500) !important;
1532
+ }
1533
+
1534
+ .bgc-deep-orange-500 {
1535
+ background-color: mat-color($mat-deep-orange, 500) !important;
1536
+ }
1537
+
1538
+ .bgc-brown-500 {
1539
+ background-color: mat-color($mat-brown, 500) !important;
1540
+ }
1541
+
1542
+ .bgc-grey-500 {
1543
+ background-color: mat-color($mat-grey, 500) !important;
1544
+ }
1545
+
1546
+ .bgc-blue-grey-500 {
1547
+ background-color: mat-color($mat-blue-grey, 500) !important;
1548
+ }
1549
+
1550
+ // 600
1551
+ .bgc-red-600 {
1552
+ background-color: mat-color($mat-red, 600) !important;
1553
+ }
1554
+
1555
+ .bgc-pink-600 {
1556
+ background-color: mat-color($mat-pink, 600) !important;
1557
+ }
1558
+
1559
+ .bgc-purple-600 {
1560
+ background-color: mat-color($mat-purple, 600) !important;
1561
+ }
1562
+
1563
+ .bgc-deep-purple-600 {
1564
+ background-color: mat-color($mat-deep-purple, 600) !important;
1565
+ }
1566
+
1567
+ .bgc-indigo-600 {
1568
+ background-color: mat-color($mat-indigo, 600) !important;
1569
+ }
1570
+
1571
+ .bgc-blue-600 {
1572
+ background-color: mat-color($mat-blue, 600) !important;
1573
+ }
1574
+
1575
+ .bgc-light-blue-600 {
1576
+ background-color: mat-color($mat-light-blue, 600) !important;
1577
+ }
1578
+
1579
+ .bgc-cyan-600 {
1580
+ background-color: mat-color($mat-cyan, 600) !important;
1581
+ }
1582
+
1583
+ .bgc-teal-600 {
1584
+ background-color: mat-color($mat-teal, 600) !important;
1585
+ }
1586
+
1587
+ .bgc-green-600 {
1588
+ background-color: mat-color($mat-green, 600) !important;
1589
+ }
1590
+
1591
+ .bgc-light-green-600 {
1592
+ background-color: mat-color($mat-light-green, 600) !important;
1593
+ }
1594
+
1595
+ .bgc-lime-600 {
1596
+ background-color: mat-color($mat-lime, 600) !important;
1597
+ }
1598
+
1599
+ .bgc-yellow-600 {
1600
+ background-color: mat-color($mat-yellow, 600) !important;
1601
+ }
1602
+
1603
+ .bgc-amber-600 {
1604
+ background-color: mat-color($mat-amber, 600) !important;
1605
+ }
1606
+
1607
+ .bgc-orange-600 {
1608
+ background-color: mat-color($mat-orange, 600) !important;
1609
+ }
1610
+
1611
+ .bgc-deep-orange-600 {
1612
+ background-color: mat-color($mat-deep-orange, 600) !important;
1613
+ }
1614
+
1615
+ .bgc-brown-600 {
1616
+ background-color: mat-color($mat-brown, 600) !important;
1617
+ }
1618
+
1619
+ .bgc-grey-600 {
1620
+ background-color: mat-color($mat-grey, 600) !important;
1621
+ }
1622
+
1623
+ .bgc-blue-grey-600 {
1624
+ background-color: mat-color($mat-blue-grey, 600) !important;
1625
+ }
1626
+
1627
+ // 700
1628
+ .bgc-red-700 {
1629
+ background-color: mat-color($mat-red, 700) !important;
1630
+ }
1631
+
1632
+ .bgc-pink-700 {
1633
+ background-color: mat-color($mat-pink, 700) !important;
1634
+ }
1635
+
1636
+ .bgc-purple-700 {
1637
+ background-color: mat-color($mat-purple, 700) !important;
1638
+ }
1639
+
1640
+ .bgc-deep-purple-700 {
1641
+ background-color: mat-color($mat-deep-purple, 700) !important;
1642
+ }
1643
+
1644
+ .bgc-indigo-700 {
1645
+ background-color: mat-color($mat-indigo, 700) !important;
1646
+ }
1647
+
1648
+ .bgc-blue-700 {
1649
+ background-color: mat-color($mat-blue, 700) !important;
1650
+ }
1651
+
1652
+ .bgc-light-blue-700 {
1653
+ background-color: mat-color($mat-light-blue, 700) !important;
1654
+ }
1655
+
1656
+ .bgc-cyan-700 {
1657
+ background-color: mat-color($mat-cyan, 700) !important;
1658
+ }
1659
+
1660
+ .bgc-teal-700 {
1661
+ background-color: mat-color($mat-teal, 700) !important;
1662
+ }
1663
+
1664
+ .bgc-green-700 {
1665
+ background-color: mat-color($mat-green, 700) !important;
1666
+ }
1667
+
1668
+ .bgc-light-green-700 {
1669
+ background-color: mat-color($mat-light-green, 700) !important;
1670
+ }
1671
+
1672
+ .bgc-lime-700 {
1673
+ background-color: mat-color($mat-lime, 700) !important;
1674
+ }
1675
+
1676
+ .bgc-yellow-700 {
1677
+ background-color: mat-color($mat-yellow, 700) !important;
1678
+ }
1679
+
1680
+ .bgc-amber-700 {
1681
+ background-color: mat-color($mat-amber, 700) !important;
1682
+ }
1683
+
1684
+ .bgc-orange-700 {
1685
+ background-color: mat-color($mat-orange, 700) !important;
1686
+ }
1687
+
1688
+ .bgc-deep-orange-700 {
1689
+ background-color: mat-color($mat-deep-orange, 700) !important;
1690
+ }
1691
+
1692
+ .bgc-brown-700 {
1693
+ background-color: mat-color($mat-brown, 700) !important;
1694
+ }
1695
+
1696
+ .bgc-grey-700 {
1697
+ background-color: mat-color($mat-grey, 700) !important;
1698
+ }
1699
+
1700
+ .bgc-blue-grey-700 {
1701
+ background-color: mat-color($mat-blue-grey, 700) !important;
1702
+ }
1703
+
1704
+ // 800
1705
+ .bgc-red-800 {
1706
+ background-color: mat-color($mat-red, 800) !important;
1707
+ }
1708
+
1709
+ .bgc-pink-800 {
1710
+ background-color: mat-color($mat-pink, 800) !important;
1711
+ }
1712
+
1713
+ .bgc-purple-800 {
1714
+ background-color: mat-color($mat-purple, 800) !important;
1715
+ }
1716
+
1717
+ .bgc-deep-purple-800 {
1718
+ background-color: mat-color($mat-deep-purple, 800) !important;
1719
+ }
1720
+
1721
+ .bgc-indigo-800 {
1722
+ background-color: mat-color($mat-indigo, 800) !important;
1723
+ }
1724
+
1725
+ .bgc-blue-800 {
1726
+ background-color: mat-color($mat-blue, 800) !important;
1727
+ }
1728
+
1729
+ .bgc-light-blue-800 {
1730
+ background-color: mat-color($mat-light-blue, 800) !important;
1731
+ }
1732
+
1733
+ .bgc-cyan-800 {
1734
+ background-color: mat-color($mat-cyan, 800) !important;
1735
+ }
1736
+
1737
+ .bgc-teal-800 {
1738
+ background-color: mat-color($mat-teal, 800) !important;
1739
+ }
1740
+
1741
+ .bgc-green-800 {
1742
+ background-color: mat-color($mat-green, 800) !important;
1743
+ }
1744
+
1745
+ .bgc-light-green-800 {
1746
+ background-color: mat-color($mat-light-green, 800) !important;
1747
+ }
1748
+
1749
+ .bgc-lime-800 {
1750
+ background-color: mat-color($mat-lime, 800) !important;
1751
+ }
1752
+
1753
+ .bgc-yellow-800 {
1754
+ background-color: mat-color($mat-yellow, 800) !important;
1755
+ }
1756
+
1757
+ .bgc-amber-800 {
1758
+ background-color: mat-color($mat-amber, 800) !important;
1759
+ }
1760
+
1761
+ .bgc-orange-800 {
1762
+ background-color: mat-color($mat-orange, 800) !important;
1763
+ }
1764
+
1765
+ .bgc-deep-orange-800 {
1766
+ background-color: mat-color($mat-deep-orange, 800) !important;
1767
+ }
1768
+
1769
+ .bgc-brown-800 {
1770
+ background-color: mat-color($mat-brown, 800) !important;
1771
+ }
1772
+
1773
+ .bgc-grey-800 {
1774
+ background-color: mat-color($mat-grey, 800) !important;
1775
+ }
1776
+
1777
+ .bgc-blue-grey-800 {
1778
+ background-color: mat-color($mat-blue-grey, 800) !important;
1779
+ }
1780
+
1781
+ // 900
1782
+ .bgc-red-900 {
1783
+ background-color: mat-color($mat-red, 900) !important;
1784
+ }
1785
+
1786
+ .bgc-pink-900 {
1787
+ background-color: mat-color($mat-pink, 900) !important;
1788
+ }
1789
+
1790
+ .bgc-purple-900 {
1791
+ background-color: mat-color($mat-purple, 900) !important;
1792
+ }
1793
+
1794
+ .bgc-deep-purple-900 {
1795
+ background-color: mat-color($mat-deep-purple, 900) !important;
1796
+ }
1797
+
1798
+ .bgc-indigo-900 {
1799
+ background-color: mat-color($mat-indigo, 900) !important;
1800
+ }
1801
+
1802
+ .bgc-blue-900 {
1803
+ background-color: mat-color($mat-blue, 900) !important;
1804
+ }
1805
+
1806
+ .bgc-light-blue-900 {
1807
+ background-color: mat-color($mat-light-blue, 900) !important;
1808
+ }
1809
+
1810
+ .bgc-cyan-900 {
1811
+ background-color: mat-color($mat-cyan, 900) !important;
1812
+ }
1813
+
1814
+ .bgc-teal-900 {
1815
+ background-color: mat-color($mat-teal, 900) !important;
1816
+ }
1817
+
1818
+ .bgc-green-900 {
1819
+ background-color: mat-color($mat-green, 900) !important;
1820
+ }
1821
+
1822
+ .bgc-light-green-900 {
1823
+ background-color: mat-color($mat-light-green, 900) !important;
1824
+ }
1825
+
1826
+ .bgc-lime-900 {
1827
+ background-color: mat-color($mat-lime, 900) !important;
1828
+ }
1829
+
1830
+ .bgc-yellow-900 {
1831
+ background-color: mat-color($mat-yellow, 900) !important;
1832
+ }
1833
+
1834
+ .bgc-amber-900 {
1835
+ background-color: mat-color($mat-amber, 900) !important;
1836
+ }
1837
+
1838
+ .bgc-orange-900 {
1839
+ background-color: mat-color($mat-orange, 900) !important;
1840
+ }
1841
+
1842
+ .bgc-deep-orange-900 {
1843
+ background-color: mat-color($mat-deep-orange, 900) !important;
1844
+ }
1845
+
1846
+ .bgc-brown-900 {
1847
+ background-color: mat-color($mat-brown, 900) !important;
1848
+ }
1849
+
1850
+ .bgc-grey-900 {
1851
+ background-color: mat-color($mat-grey, 900) !important;
1852
+ }
1853
+
1854
+ .bgc-blue-grey-900 {
1855
+ background-color: mat-color($mat-blue-grey, 900) !important;
1856
+ }
1857
+
1858
+ // A100
1859
+ .bgc-red-A100 {
1860
+ background-color: mat-color($mat-red, A100) !important;
1861
+ }
1862
+
1863
+ .bgc-pink-A100 {
1864
+ background-color: mat-color($mat-pink, A100) !important;
1865
+ }
1866
+
1867
+ .bgc-purple-A100 {
1868
+ background-color: mat-color($mat-purple, A100) !important;
1869
+ }
1870
+
1871
+ .bgc-deep-purple-A100 {
1872
+ background-color: mat-color($mat-deep-purple, A100) !important;
1873
+ }
1874
+
1875
+ .bgc-indigo-A100 {
1876
+ background-color: mat-color($mat-indigo, A100) !important;
1877
+ }
1878
+
1879
+ .bgc-blue-A100 {
1880
+ background-color: mat-color($mat-blue, A100) !important;
1881
+ }
1882
+
1883
+ .bgc-light-blue-A100 {
1884
+ background-color: mat-color($mat-light-blue, A100) !important;
1885
+ }
1886
+
1887
+ .bgc-cyan-A100 {
1888
+ background-color: mat-color($mat-cyan, A100) !important;
1889
+ }
1890
+
1891
+ .bgc-teal-A100 {
1892
+ background-color: mat-color($mat-teal, A100) !important;
1893
+ }
1894
+
1895
+ .bgc-green-A100 {
1896
+ background-color: mat-color($mat-green, A100) !important;
1897
+ }
1898
+
1899
+ .bgc-light-green-A100 {
1900
+ background-color: mat-color($mat-light-green, A100) !important;
1901
+ }
1902
+
1903
+ .bgc-lime-A100 {
1904
+ background-color: mat-color($mat-lime, A100) !important;
1905
+ }
1906
+
1907
+ .bgc-yellow-A100 {
1908
+ background-color: mat-color($mat-yellow, A100) !important;
1909
+ }
1910
+
1911
+ .bgc-amber-A100 {
1912
+ background-color: mat-color($mat-amber, A100) !important;
1913
+ }
1914
+
1915
+ .bgc-orange-A100 {
1916
+ background-color: mat-color($mat-orange, A100) !important;
1917
+ }
1918
+
1919
+ .bgc-deep-orange-A100 {
1920
+ background-color: mat-color($mat-deep-orange, A100) !important;
1921
+ }
1922
+
1923
+ // A200
1924
+ .bgc-red-A200 {
1925
+ background-color: mat-color($mat-red, A200) !important;
1926
+ }
1927
+
1928
+ .bgc-pink-A200 {
1929
+ background-color: mat-color($mat-pink, A200) !important;
1930
+ }
1931
+
1932
+ .bgc-purple-A200 {
1933
+ background-color: mat-color($mat-purple, A200) !important;
1934
+ }
1935
+
1936
+ .bgc-deep-purple-A200 {
1937
+ background-color: mat-color($mat-deep-purple, A200) !important;
1938
+ }
1939
+
1940
+ .bgc-indigo-A200 {
1941
+ background-color: mat-color($mat-indigo, A200) !important;
1942
+ }
1943
+
1944
+ .bgc-blue-A200 {
1945
+ background-color: mat-color($mat-blue, A200) !important;
1946
+ }
1947
+
1948
+ .bgc-light-blue-A200 {
1949
+ background-color: mat-color($mat-light-blue, A200) !important;
1950
+ }
1951
+
1952
+ .bgc-cyan-A200 {
1953
+ background-color: mat-color($mat-cyan, A200) !important;
1954
+ }
1955
+
1956
+ .bgc-teal-A200 {
1957
+ background-color: mat-color($mat-teal, A200) !important;
1958
+ }
1959
+
1960
+ .bgc-green-A200 {
1961
+ background-color: mat-color($mat-green, A200) !important;
1962
+ }
1963
+
1964
+ .bgc-light-green-A200 {
1965
+ background-color: mat-color($mat-light-green, A200) !important;
1966
+ }
1967
+
1968
+ .bgc-lime-A200 {
1969
+ background-color: mat-color($mat-lime, A200) !important;
1970
+ }
1971
+
1972
+ .bgc-yellow-A200 {
1973
+ background-color: mat-color($mat-yellow, A200) !important;
1974
+ }
1975
+
1976
+ .bgc-amber-A200 {
1977
+ background-color: mat-color($mat-amber, A200) !important;
1978
+ }
1979
+
1980
+ .bgc-orange-A200 {
1981
+ background-color: mat-color($mat-orange, A200) !important;
1982
+ }
1983
+
1984
+ .bgc-deep-orange-A200 {
1985
+ background-color: mat-color($mat-deep-orange, A200) !important;
1986
+ }
1987
+
1988
+ // A400
1989
+ .bgc-red-A400 {
1990
+ background-color: mat-color($mat-red, A400) !important;
1991
+ }
1992
+
1993
+ .bgc-pink-A400 {
1994
+ background-color: mat-color($mat-pink, A400) !important;
1995
+ }
1996
+
1997
+ .bgc-purple-A400 {
1998
+ background-color: mat-color($mat-purple, A400) !important;
1999
+ }
2000
+
2001
+ .bgc-deep-purple-A400 {
2002
+ background-color: mat-color($mat-deep-purple, A400) !important;
2003
+ }
2004
+
2005
+ .bgc-indigo-A400 {
2006
+ background-color: mat-color($mat-indigo, A400) !important;
2007
+ }
2008
+
2009
+ .bgc-blue-A400 {
2010
+ background-color: mat-color($mat-blue, A400) !important;
2011
+ }
2012
+
2013
+ .bgc-light-blue-A400 {
2014
+ background-color: mat-color($mat-light-blue, A400) !important;
2015
+ }
2016
+
2017
+ .bgc-cyan-A400 {
2018
+ background-color: mat-color($mat-cyan, A400) !important;
2019
+ }
2020
+
2021
+ .bgc-teal-A400 {
2022
+ background-color: mat-color($mat-teal, A400) !important;
2023
+ }
2024
+
2025
+ .bgc-green-A400 {
2026
+ background-color: mat-color($mat-green, A400) !important;
2027
+ }
2028
+
2029
+ .bgc-light-green-A400 {
2030
+ background-color: mat-color($mat-light-green, A400) !important;
2031
+ }
2032
+
2033
+ .bgc-lime-A400 {
2034
+ background-color: mat-color($mat-lime, A400) !important;
2035
+ }
2036
+
2037
+ .bgc-yellow-A400 {
2038
+ background-color: mat-color($mat-yellow, A400) !important;
2039
+ }
2040
+
2041
+ .bgc-amber-A400 {
2042
+ background-color: mat-color($mat-amber, A400) !important;
2043
+ }
2044
+
2045
+ .bgc-orange-A400 {
2046
+ background-color: mat-color($mat-orange, A400) !important;
2047
+ }
2048
+
2049
+ .bgc-deep-orange-A400 {
2050
+ background-color: mat-color($mat-deep-orange, A400) !important;
2051
+ }
2052
+
2053
+ // A700
2054
+ .bgc-red-A700 {
2055
+ background-color: mat-color($mat-red, A700) !important;
2056
+ }
2057
+
2058
+ .bgc-pink-A700 {
2059
+ background-color: mat-color($mat-pink, A700) !important;
2060
+ }
2061
+
2062
+ .bgc-purple-A700 {
2063
+ background-color: mat-color($mat-purple, A700) !important;
2064
+ }
2065
+
2066
+ .bgc-deep-purple-A700 {
2067
+ background-color: mat-color($mat-deep-purple, A700) !important;
2068
+ }
2069
+
2070
+ .bgc-indigo-A700 {
2071
+ background-color: mat-color($mat-indigo, A700) !important;
2072
+ }
2073
+
2074
+ .bgc-blue-A700 {
2075
+ background-color: mat-color($mat-blue, A700) !important;
2076
+ }
2077
+
2078
+ .bgc-light-blue-A700 {
2079
+ background-color: mat-color($mat-light-blue, A700) !important;
2080
+ }
2081
+
2082
+ .bgc-cyan-A700 {
2083
+ background-color: mat-color($mat-cyan, A700) !important;
2084
+ }
2085
+
2086
+ .bgc-teal-A700 {
2087
+ background-color: mat-color($mat-teal, A700) !important;
2088
+ }
2089
+
2090
+ .bgc-green-A700 {
2091
+ background-color: mat-color($mat-green, A700) !important;
2092
+ }
2093
+
2094
+ .bgc-light-green-A700 {
2095
+ background-color: mat-color($mat-light-green, A700) !important;
2096
+ }
2097
+
2098
+ .bgc-lime-A700 {
2099
+ background-color: mat-color($mat-lime, A700) !important;
2100
+ }
2101
+
2102
+ .bgc-yellow-A700 {
2103
+ background-color: mat-color($mat-yellow, A700) !important;
2104
+ }
2105
+
2106
+ .bgc-amber-A700 {
2107
+ background-color: mat-color($mat-amber, A700) !important;
2108
+ }
2109
+
2110
+ .bgc-orange-A700 {
2111
+ background-color: mat-color($mat-orange, A700) !important;
2112
+ }
2113
+
2114
+ .bgc-deep-orange-A700 {
2115
+ background-color: mat-color($mat-deep-orange, A700) !important;
2116
+ }
2117
+
2118
+ // Black
2119
+ .bgc-black {
2120
+ background-color: rgba(black, 87) !important;
2121
+ }
2122
+
2123
+ .bgc-black-1 {
2124
+ background-color: rgba(black, 54) !important;
2125
+ }
2126
+
2127
+ .bgc-black-2 {
2128
+ background-color: rgba(black, 38) !important;
2129
+ }
2130
+
2131
+ .bgc-black-3 {
2132
+ background-color: rgba(black, 0.12) !important;
2133
+ }
2134
+
2135
+ .bgc-black-4 {
2136
+ background-color: black !important;
2137
+ }
2138
+
2139
+ // White
2140
+ .bgc-white {
2141
+ background-color: rgba(white, 0.7) !important;
2142
+ }
2143
+
2144
+ .bgc-white-1 {
2145
+ background-color: rgba(white, 0.3) !important;
2146
+ }
2147
+
2148
+ .bgc-white-2 {
2149
+ background-color: rgba(white, 0.3) !important;
2150
+ }
2151
+
2152
+ .bgc-white-3 {
2153
+ background-color: rgba(white, 0.12) !important;
2154
+ }
2155
+
2156
+ .bgc-white-4 {
2157
+ background-color: white !important;
2158
+ }
2159
+
2160
+ // Fill color
2161
+
2162
+ // 50
2163
+ .fill-red-50 {
2164
+ fill: mat-color($mat-red, 50) !important;
2165
+ }
2166
+
2167
+ .fill-pink-50 {
2168
+ fill: mat-color($mat-pink, 50) !important;
2169
+ }
2170
+
2171
+ .fill-purple-50 {
2172
+ fill: mat-color($mat-purple, 50) !important;
2173
+ }
2174
+
2175
+ .fill-deep-purple-50 {
2176
+ fill: mat-color($mat-deep-purple, 50) !important;
2177
+ }
2178
+
2179
+ .fill-indigo-50 {
2180
+ fill: mat-color($mat-indigo, 50) !important;
2181
+ }
2182
+
2183
+ .fill-blue-50 {
2184
+ fill: mat-color($mat-blue, 50) !important;
2185
+ }
2186
+
2187
+ .fill-light-blue-50 {
2188
+ fill: mat-color($mat-light-blue, 50) !important;
2189
+ }
2190
+
2191
+ .fill-cyan-50 {
2192
+ fill: mat-color($mat-cyan, 50) !important;
2193
+ }
2194
+
2195
+ .fill-teal-50 {
2196
+ fill: mat-color($mat-teal, 50) !important;
2197
+ }
2198
+
2199
+ .fill-green-50 {
2200
+ fill: mat-color($mat-green, 50) !important;
2201
+ }
2202
+
2203
+ .fill-light-green-50 {
2204
+ fill: mat-color($mat-light-green, 50) !important;
2205
+ }
2206
+
2207
+ .fill-lime-50 {
2208
+ fill: mat-color($mat-lime, 50) !important;
2209
+ }
2210
+
2211
+ .fill-yellow-50 {
2212
+ fill: mat-color($mat-yellow, 50) !important;
2213
+ }
2214
+
2215
+ .fill-amber-50 {
2216
+ fill: mat-color($mat-amber, 50) !important;
2217
+ }
2218
+
2219
+ .fill-orange-50 {
2220
+ fill: mat-color($mat-orange, 50) !important;
2221
+ }
2222
+
2223
+ .fill-deep-orange-50 {
2224
+ fill: mat-color($mat-deep-orange, 50) !important;
2225
+ }
2226
+
2227
+ .fill-brown-50 {
2228
+ fill: mat-color($mat-brown, 50) !important;
2229
+ }
2230
+
2231
+ .fill-grey-50 {
2232
+ fill: mat-color($mat-grey, 50) !important;
2233
+ }
2234
+
2235
+ .fill-blue-grey-50 {
2236
+ fill: mat-color($mat-blue-grey, 50) !important;
2237
+ }
2238
+
2239
+ // 100
2240
+ .fill-red-100 {
2241
+ fill: mat-color($mat-red, 100) !important;
2242
+ }
2243
+
2244
+ .fill-pink-100 {
2245
+ fill: mat-color($mat-pink, 100) !important;
2246
+ }
2247
+
2248
+ .fill-purple-100 {
2249
+ fill: mat-color($mat-purple, 100) !important;
2250
+ }
2251
+
2252
+ .fill-deep-purple-100 {
2253
+ fill: mat-color($mat-deep-purple, 100) !important;
2254
+ }
2255
+
2256
+ .fill-indigo-100 {
2257
+ fill: mat-color($mat-indigo, 100) !important;
2258
+ }
2259
+
2260
+ .fill-blue-100 {
2261
+ fill: mat-color($mat-blue, 100) !important;
2262
+ }
2263
+
2264
+ .fill-light-blue-100 {
2265
+ fill: mat-color($mat-light-blue, 100) !important;
2266
+ }
2267
+
2268
+ .fill-cyan-100 {
2269
+ fill: mat-color($mat-cyan, 100) !important;
2270
+ }
2271
+
2272
+ .fill-teal-100 {
2273
+ fill: mat-color($mat-teal, 100) !important;
2274
+ }
2275
+
2276
+ .fill-green-100 {
2277
+ fill: mat-color($mat-green, 100) !important;
2278
+ }
2279
+
2280
+ .fill-light-green-100 {
2281
+ fill: mat-color($mat-light-green, 100) !important;
2282
+ }
2283
+
2284
+ .fill-lime-100 {
2285
+ fill: mat-color($mat-lime, 100) !important;
2286
+ }
2287
+
2288
+ .fill-yellow-100 {
2289
+ fill: mat-color($mat-yellow, 100) !important;
2290
+ }
2291
+
2292
+ .fill-amber-100 {
2293
+ fill: mat-color($mat-amber, 100) !important;
2294
+ }
2295
+
2296
+ .fill-orange-100 {
2297
+ fill: mat-color($mat-orange, 100) !important;
2298
+ }
2299
+
2300
+ .fill-deep-orange-100 {
2301
+ fill: mat-color($mat-deep-orange, 100) !important;
2302
+ }
2303
+
2304
+ .fill-brown-100 {
2305
+ fill: mat-color($mat-brown, 100) !important;
2306
+ }
2307
+
2308
+ .fill-grey-100 {
2309
+ fill: mat-color($mat-grey, 100) !important;
2310
+ }
2311
+
2312
+ .fill-blue-grey-100 {
2313
+ fill: mat-color($mat-blue-grey, 100) !important;
2314
+ }
2315
+
2316
+ // 200
2317
+ .fill-red-200 {
2318
+ fill: mat-color($mat-red, 200) !important;
2319
+ }
2320
+
2321
+ .fill-pink-200 {
2322
+ fill: mat-color($mat-pink, 200) !important;
2323
+ }
2324
+
2325
+ .fill-purple-200 {
2326
+ fill: mat-color($mat-purple, 200) !important;
2327
+ }
2328
+
2329
+ .fill-deep-purple-200 {
2330
+ fill: mat-color($mat-deep-purple, 200) !important;
2331
+ }
2332
+
2333
+ .fill-indigo-200 {
2334
+ fill: mat-color($mat-indigo, 200) !important;
2335
+ }
2336
+
2337
+ .fill-blue-200 {
2338
+ fill: mat-color($mat-blue, 200) !important;
2339
+ }
2340
+
2341
+ .fill-light-blue-200 {
2342
+ fill: mat-color($mat-light-blue, 200) !important;
2343
+ }
2344
+
2345
+ .fill-cyan-200 {
2346
+ fill: mat-color($mat-cyan, 200) !important;
2347
+ }
2348
+
2349
+ .fill-teal-200 {
2350
+ fill: mat-color($mat-teal, 200) !important;
2351
+ }
2352
+
2353
+ .fill-green-200 {
2354
+ fill: mat-color($mat-green, 200) !important;
2355
+ }
2356
+
2357
+ .fill-light-green-200 {
2358
+ fill: mat-color($mat-light-green, 200) !important;
2359
+ }
2360
+
2361
+ .fill-lime-200 {
2362
+ fill: mat-color($mat-lime, 200) !important;
2363
+ }
2364
+
2365
+ .fill-yellow-200 {
2366
+ fill: mat-color($mat-yellow, 200) !important;
2367
+ }
2368
+
2369
+ .fill-amber-200 {
2370
+ fill: mat-color($mat-amber, 200) !important;
2371
+ }
2372
+
2373
+ .fill-orange-200 {
2374
+ fill: mat-color($mat-orange, 200) !important;
2375
+ }
2376
+
2377
+ .fill-deep-orange-200 {
2378
+ fill: mat-color($mat-deep-orange, 200) !important;
2379
+ }
2380
+
2381
+ .fill-brown-200 {
2382
+ fill: mat-color($mat-brown, 200) !important;
2383
+ }
2384
+
2385
+ .fill-grey-200 {
2386
+ fill: mat-color($mat-grey, 200) !important;
2387
+ }
2388
+
2389
+ .fill-blue-grey-200 {
2390
+ fill: mat-color($mat-blue-grey, 200) !important;
2391
+ }
2392
+
2393
+ // 300
2394
+ .fill-red-300 {
2395
+ fill: mat-color($mat-red, 300) !important;
2396
+ }
2397
+
2398
+ .fill-pink-300 {
2399
+ fill: mat-color($mat-pink, 300) !important;
2400
+ }
2401
+
2402
+ .fill-purple-300 {
2403
+ fill: mat-color($mat-purple, 300) !important;
2404
+ }
2405
+
2406
+ .fill-deep-purple-300 {
2407
+ fill: mat-color($mat-deep-purple, 300) !important;
2408
+ }
2409
+
2410
+ .fill-indigo-300 {
2411
+ fill: mat-color($mat-indigo, 300) !important;
2412
+ }
2413
+
2414
+ .fill-blue-300 {
2415
+ fill: mat-color($mat-blue, 300) !important;
2416
+ }
2417
+
2418
+ .fill-light-blue-300 {
2419
+ fill: mat-color($mat-light-blue, 300) !important;
2420
+ }
2421
+
2422
+ .fill-cyan-300 {
2423
+ fill: mat-color($mat-cyan, 300) !important;
2424
+ }
2425
+
2426
+ .fill-teal-300 {
2427
+ fill: mat-color($mat-teal, 300) !important;
2428
+ }
2429
+
2430
+ .fill-green-300 {
2431
+ fill: mat-color($mat-green, 300) !important;
2432
+ }
2433
+
2434
+ .fill-light-green-300 {
2435
+ fill: mat-color($mat-light-green, 300) !important;
2436
+ }
2437
+
2438
+ .fill-lime-300 {
2439
+ fill: mat-color($mat-lime, 300) !important;
2440
+ }
2441
+
2442
+ .fill-yellow-300 {
2443
+ fill: mat-color($mat-yellow, 300) !important;
2444
+ }
2445
+
2446
+ .fill-amber-300 {
2447
+ fill: mat-color($mat-amber, 300) !important;
2448
+ }
2449
+
2450
+ .fill-orange-300 {
2451
+ fill: mat-color($mat-orange, 300) !important;
2452
+ }
2453
+
2454
+ .fill-deep-orange-300 {
2455
+ fill: mat-color($mat-deep-orange, 300) !important;
2456
+ }
2457
+
2458
+ .fill-brown-300 {
2459
+ fill: mat-color($mat-brown, 300) !important;
2460
+ }
2461
+
2462
+ .fill-grey-300 {
2463
+ fill: mat-color($mat-grey, 300) !important;
2464
+ }
2465
+
2466
+ .fill-blue-grey-300 {
2467
+ fill: mat-color($mat-blue-grey, 300) !important;
2468
+ }
2469
+
2470
+ // 400
2471
+ .fill-red-400 {
2472
+ fill: mat-color($mat-red, 400) !important;
2473
+ }
2474
+
2475
+ .fill-pink-400 {
2476
+ fill: mat-color($mat-pink, 400) !important;
2477
+ }
2478
+
2479
+ .fill-purple-400 {
2480
+ fill: mat-color($mat-purple, 400) !important;
2481
+ }
2482
+
2483
+ .fill-deep-purple-400 {
2484
+ fill: mat-color($mat-deep-purple, 400) !important;
2485
+ }
2486
+
2487
+ .fill-indigo-400 {
2488
+ fill: mat-color($mat-indigo, 400) !important;
2489
+ }
2490
+
2491
+ .fill-blue-400 {
2492
+ fill: mat-color($mat-blue, 400) !important;
2493
+ }
2494
+
2495
+ .fill-light-blue-400 {
2496
+ fill: mat-color($mat-light-blue, 400) !important;
2497
+ }
2498
+
2499
+ .fill-cyan-400 {
2500
+ fill: mat-color($mat-cyan, 400) !important;
2501
+ }
2502
+
2503
+ .fill-teal-400 {
2504
+ fill: mat-color($mat-teal, 400) !important;
2505
+ }
2506
+
2507
+ .fill-green-400 {
2508
+ fill: mat-color($mat-green, 400) !important;
2509
+ }
2510
+
2511
+ .fill-light-green-400 {
2512
+ fill: mat-color($mat-light-green, 400) !important;
2513
+ }
2514
+
2515
+ .fill-lime-400 {
2516
+ fill: mat-color($mat-lime, 400) !important;
2517
+ }
2518
+
2519
+ .fill-yellow-400 {
2520
+ fill: mat-color($mat-yellow, 400) !important;
2521
+ }
2522
+
2523
+ .fill-amber-400 {
2524
+ fill: mat-color($mat-amber, 400) !important;
2525
+ }
2526
+
2527
+ .fill-orange-400 {
2528
+ fill: mat-color($mat-orange, 400) !important;
2529
+ }
2530
+
2531
+ .fill-deep-orange-400 {
2532
+ fill: mat-color($mat-deep-orange, 400) !important;
2533
+ }
2534
+
2535
+ .fill-brown-400 {
2536
+ fill: mat-color($mat-brown, 400) !important;
2537
+ }
2538
+
2539
+ .fill-grey-400 {
2540
+ fill: mat-color($mat-grey, 400) !important;
2541
+ }
2542
+
2543
+ .fill-blue-grey-400 {
2544
+ fill: mat-color($mat-blue-grey, 400) !important;
2545
+ }
2546
+
2547
+ // 500
2548
+ .fill-red-500 {
2549
+ fill: mat-color($mat-red, 500) !important;
2550
+ }
2551
+
2552
+ .fill-pink-500 {
2553
+ fill: mat-color($mat-pink, 500) !important;
2554
+ }
2555
+
2556
+ .fill-purple-500 {
2557
+ fill: mat-color($mat-purple, 500) !important;
2558
+ }
2559
+
2560
+ .fill-deep-purple-500 {
2561
+ fill: mat-color($mat-deep-purple, 500) !important;
2562
+ }
2563
+
2564
+ .fill-indigo-500 {
2565
+ fill: mat-color($mat-indigo, 500) !important;
2566
+ }
2567
+
2568
+ .fill-blue-500 {
2569
+ fill: mat-color($mat-blue, 500) !important;
2570
+ }
2571
+
2572
+ .fill-light-blue-500 {
2573
+ fill: mat-color($mat-light-blue, 500) !important;
2574
+ }
2575
+
2576
+ .fill-cyan-500 {
2577
+ fill: mat-color($mat-cyan, 500) !important;
2578
+ }
2579
+
2580
+ .fill-teal-500 {
2581
+ fill: mat-color($mat-teal, 500) !important;
2582
+ }
2583
+
2584
+ .fill-green-500 {
2585
+ fill: mat-color($mat-green, 500) !important;
2586
+ }
2587
+
2588
+ .fill-light-green-500 {
2589
+ fill: mat-color($mat-light-green, 500) !important;
2590
+ }
2591
+
2592
+ .fill-lime-500 {
2593
+ fill: mat-color($mat-lime, 500) !important;
2594
+ }
2595
+
2596
+ .fill-yellow-500 {
2597
+ fill: mat-color($mat-yellow, 500) !important;
2598
+ }
2599
+
2600
+ .fill-amber-500 {
2601
+ fill: mat-color($mat-amber, 500) !important;
2602
+ }
2603
+
2604
+ .fill-orange-500 {
2605
+ fill: mat-color($mat-orange, 500) !important;
2606
+ }
2607
+
2608
+ .fill-deep-orange-500 {
2609
+ fill: mat-color($mat-deep-orange, 500) !important;
2610
+ }
2611
+
2612
+ .fill-brown-500 {
2613
+ fill: mat-color($mat-brown, 500) !important;
2614
+ }
2615
+
2616
+ .fill-grey-500 {
2617
+ fill: mat-color($mat-grey, 500) !important;
2618
+ }
2619
+
2620
+ .fill-blue-grey-500 {
2621
+ fill: mat-color($mat-blue-grey, 500) !important;
2622
+ }
2623
+
2624
+ // 600
2625
+ .fill-red-600 {
2626
+ fill: mat-color($mat-red, 600) !important;
2627
+ }
2628
+
2629
+ .fill-pink-600 {
2630
+ fill: mat-color($mat-pink, 600) !important;
2631
+ }
2632
+
2633
+ .fill-purple-600 {
2634
+ fill: mat-color($mat-purple, 600) !important;
2635
+ }
2636
+
2637
+ .fill-deep-purple-600 {
2638
+ fill: mat-color($mat-deep-purple, 600) !important;
2639
+ }
2640
+
2641
+ .fill-indigo-600 {
2642
+ fill: mat-color($mat-indigo, 600) !important;
2643
+ }
2644
+
2645
+ .fill-blue-600 {
2646
+ fill: mat-color($mat-blue, 600) !important;
2647
+ }
2648
+
2649
+ .fill-light-blue-600 {
2650
+ fill: mat-color($mat-light-blue, 600) !important;
2651
+ }
2652
+
2653
+ .fill-cyan-600 {
2654
+ fill: mat-color($mat-cyan, 600) !important;
2655
+ }
2656
+
2657
+ .fill-teal-600 {
2658
+ fill: mat-color($mat-teal, 600) !important;
2659
+ }
2660
+
2661
+ .fill-green-600 {
2662
+ fill: mat-color($mat-green, 600) !important;
2663
+ }
2664
+
2665
+ .fill-light-green-600 {
2666
+ fill: mat-color($mat-light-green, 600) !important;
2667
+ }
2668
+
2669
+ .fill-lime-600 {
2670
+ fill: mat-color($mat-lime, 600) !important;
2671
+ }
2672
+
2673
+ .fill-yellow-600 {
2674
+ fill: mat-color($mat-yellow, 600) !important;
2675
+ }
2676
+
2677
+ .fill-amber-600 {
2678
+ fill: mat-color($mat-amber, 600) !important;
2679
+ }
2680
+
2681
+ .fill-orange-600 {
2682
+ fill: mat-color($mat-orange, 600) !important;
2683
+ }
2684
+
2685
+ .fill-deep-orange-600 {
2686
+ fill: mat-color($mat-deep-orange, 600) !important;
2687
+ }
2688
+
2689
+ .fill-brown-600 {
2690
+ fill: mat-color($mat-brown, 600) !important;
2691
+ }
2692
+
2693
+ .fill-grey-600 {
2694
+ fill: mat-color($mat-grey, 600) !important;
2695
+ }
2696
+
2697
+ .fill-blue-grey-600 {
2698
+ fill: mat-color($mat-blue-grey, 600) !important;
2699
+ }
2700
+
2701
+ // 700
2702
+ .fill-red-700 {
2703
+ fill: mat-color($mat-red, 700) !important;
2704
+ }
2705
+
2706
+ .fill-pink-700 {
2707
+ fill: mat-color($mat-pink, 700) !important;
2708
+ }
2709
+
2710
+ .fill-purple-700 {
2711
+ fill: mat-color($mat-purple, 700) !important;
2712
+ }
2713
+
2714
+ .fill-deep-purple-700 {
2715
+ fill: mat-color($mat-deep-purple, 700) !important;
2716
+ }
2717
+
2718
+ .fill-indigo-700 {
2719
+ fill: mat-color($mat-indigo, 700) !important;
2720
+ }
2721
+
2722
+ .fill-blue-700 {
2723
+ fill: mat-color($mat-blue, 700) !important;
2724
+ }
2725
+
2726
+ .fill-light-blue-700 {
2727
+ fill: mat-color($mat-light-blue, 700) !important;
2728
+ }
2729
+
2730
+ .fill-cyan-700 {
2731
+ fill: mat-color($mat-cyan, 700) !important;
2732
+ }
2733
+
2734
+ .fill-teal-700 {
2735
+ fill: mat-color($mat-teal, 700) !important;
2736
+ }
2737
+
2738
+ .fill-green-700 {
2739
+ fill: mat-color($mat-green, 700) !important;
2740
+ }
2741
+
2742
+ .fill-light-green-700 {
2743
+ fill: mat-color($mat-light-green, 700) !important;
2744
+ }
2745
+
2746
+ .fill-lime-700 {
2747
+ fill: mat-color($mat-lime, 700) !important;
2748
+ }
2749
+
2750
+ .fill-yellow-700 {
2751
+ fill: mat-color($mat-yellow, 700) !important;
2752
+ }
2753
+
2754
+ .fill-amber-700 {
2755
+ fill: mat-color($mat-amber, 700) !important;
2756
+ }
2757
+
2758
+ .fill-orange-700 {
2759
+ fill: mat-color($mat-orange, 700) !important;
2760
+ }
2761
+
2762
+ .fill-deep-orange-700 {
2763
+ fill: mat-color($mat-deep-orange, 700) !important;
2764
+ }
2765
+
2766
+ .fill-brown-700 {
2767
+ fill: mat-color($mat-brown, 700) !important;
2768
+ }
2769
+
2770
+ .fill-grey-700 {
2771
+ fill: mat-color($mat-grey, 700) !important;
2772
+ }
2773
+
2774
+ .fill-blue-grey-700 {
2775
+ fill: mat-color($mat-blue-grey, 700) !important;
2776
+ }
2777
+
2778
+ // 800
2779
+ .fill-red-800 {
2780
+ fill: mat-color($mat-red, 800) !important;
2781
+ }
2782
+
2783
+ .fill-pink-800 {
2784
+ fill: mat-color($mat-pink, 800) !important;
2785
+ }
2786
+
2787
+ .fill-purple-800 {
2788
+ fill: mat-color($mat-purple, 800) !important;
2789
+ }
2790
+
2791
+ .fill-deep-purple-800 {
2792
+ fill: mat-color($mat-deep-purple, 800) !important;
2793
+ }
2794
+
2795
+ .fill-indigo-800 {
2796
+ fill: mat-color($mat-indigo, 800) !important;
2797
+ }
2798
+
2799
+ .fill-blue-800 {
2800
+ fill: mat-color($mat-blue, 800) !important;
2801
+ }
2802
+
2803
+ .fill-light-blue-800 {
2804
+ fill: mat-color($mat-light-blue, 800) !important;
2805
+ }
2806
+
2807
+ .fill-cyan-800 {
2808
+ fill: mat-color($mat-cyan, 800) !important;
2809
+ }
2810
+
2811
+ .fill-teal-800 {
2812
+ fill: mat-color($mat-teal, 800) !important;
2813
+ }
2814
+
2815
+ .fill-green-800 {
2816
+ fill: mat-color($mat-green, 800) !important;
2817
+ }
2818
+
2819
+ .fill-light-green-800 {
2820
+ fill: mat-color($mat-light-green, 800) !important;
2821
+ }
2822
+
2823
+ .fill-lime-800 {
2824
+ fill: mat-color($mat-lime, 800) !important;
2825
+ }
2826
+
2827
+ .fill-yellow-800 {
2828
+ fill: mat-color($mat-yellow, 800) !important;
2829
+ }
2830
+
2831
+ .fill-amber-800 {
2832
+ fill: mat-color($mat-amber, 800) !important;
2833
+ }
2834
+
2835
+ .fill-orange-800 {
2836
+ fill: mat-color($mat-orange, 800) !important;
2837
+ }
2838
+
2839
+ .fill-deep-orange-800 {
2840
+ fill: mat-color($mat-deep-orange, 800) !important;
2841
+ }
2842
+
2843
+ .fill-brown-800 {
2844
+ fill: mat-color($mat-brown, 800) !important;
2845
+ }
2846
+
2847
+ .fill-grey-800 {
2848
+ fill: mat-color($mat-grey, 800) !important;
2849
+ }
2850
+
2851
+ .fill-blue-grey-800 {
2852
+ fill: mat-color($mat-blue-grey, 800) !important;
2853
+ }
2854
+
2855
+ // 900
2856
+ .fill-red-900 {
2857
+ fill: mat-color($mat-red, 900) !important;
2858
+ }
2859
+
2860
+ .fill-pink-900 {
2861
+ fill: mat-color($mat-pink, 900) !important;
2862
+ }
2863
+
2864
+ .fill-purple-900 {
2865
+ fill: mat-color($mat-purple, 900) !important;
2866
+ }
2867
+
2868
+ .fill-deep-purple-900 {
2869
+ fill: mat-color($mat-deep-purple, 900) !important;
2870
+ }
2871
+
2872
+ .fill-indigo-900 {
2873
+ fill: mat-color($mat-indigo, 900) !important;
2874
+ }
2875
+
2876
+ .fill-blue-900 {
2877
+ fill: mat-color($mat-blue, 900) !important;
2878
+ }
2879
+
2880
+ .fill-light-blue-900 {
2881
+ fill: mat-color($mat-light-blue, 900) !important;
2882
+ }
2883
+
2884
+ .fill-cyan-900 {
2885
+ fill: mat-color($mat-cyan, 900) !important;
2886
+ }
2887
+
2888
+ .fill-teal-900 {
2889
+ fill: mat-color($mat-teal, 900) !important;
2890
+ }
2891
+
2892
+ .fill-green-900 {
2893
+ fill: mat-color($mat-green, 900) !important;
2894
+ }
2895
+
2896
+ .fill-light-green-900 {
2897
+ fill: mat-color($mat-light-green, 900) !important;
2898
+ }
2899
+
2900
+ .fill-lime-900 {
2901
+ fill: mat-color($mat-lime, 900) !important;
2902
+ }
2903
+
2904
+ .fill-yellow-900 {
2905
+ fill: mat-color($mat-yellow, 900) !important;
2906
+ }
2907
+
2908
+ .fill-amber-900 {
2909
+ fill: mat-color($mat-amber, 900) !important;
2910
+ }
2911
+
2912
+ .fill-orange-900 {
2913
+ fill: mat-color($mat-orange, 900) !important;
2914
+ }
2915
+
2916
+ .fill-deep-orange-900 {
2917
+ fill: mat-color($mat-deep-orange, 900) !important;
2918
+ }
2919
+
2920
+ .fill-brown-900 {
2921
+ fill: mat-color($mat-brown, 900) !important;
2922
+ }
2923
+
2924
+ .fill-grey-900 {
2925
+ fill: mat-color($mat-grey, 900) !important;
2926
+ }
2927
+
2928
+ .fill-blue-grey-900 {
2929
+ fill: mat-color($mat-blue-grey, 900) !important;
2930
+ }
2931
+
2932
+ // A100
2933
+ .fill-red-A100 {
2934
+ fill: mat-color($mat-red, A100) !important;
2935
+ }
2936
+
2937
+ .fill-pink-A100 {
2938
+ fill: mat-color($mat-pink, A100) !important;
2939
+ }
2940
+
2941
+ .fill-purple-A100 {
2942
+ fill: mat-color($mat-purple, A100) !important;
2943
+ }
2944
+
2945
+ .fill-deep-purple-A100 {
2946
+ fill: mat-color($mat-deep-purple, A100) !important;
2947
+ }
2948
+
2949
+ .fill-indigo-A100 {
2950
+ fill: mat-color($mat-indigo, A100) !important;
2951
+ }
2952
+
2953
+ .fill-blue-A100 {
2954
+ fill: mat-color($mat-blue, A100) !important;
2955
+ }
2956
+
2957
+ .fill-light-blue-A100 {
2958
+ fill: mat-color($mat-light-blue, A100) !important;
2959
+ }
2960
+
2961
+ .fill-cyan-A100 {
2962
+ fill: mat-color($mat-cyan, A100) !important;
2963
+ }
2964
+
2965
+ .fill-teal-A100 {
2966
+ fill: mat-color($mat-teal, A100) !important;
2967
+ }
2968
+
2969
+ .fill-green-A100 {
2970
+ fill: mat-color($mat-green, A100) !important;
2971
+ }
2972
+
2973
+ .fill-light-green-A100 {
2974
+ fill: mat-color($mat-light-green, A100) !important;
2975
+ }
2976
+
2977
+ .fill-lime-A100 {
2978
+ fill: mat-color($mat-lime, A100) !important;
2979
+ }
2980
+
2981
+ .fill-yellow-A100 {
2982
+ fill: mat-color($mat-yellow, A100) !important;
2983
+ }
2984
+
2985
+ .fill-amber-A100 {
2986
+ fill: mat-color($mat-amber, A100) !important;
2987
+ }
2988
+
2989
+ .fill-orange-A100 {
2990
+ fill: mat-color($mat-orange, A100) !important;
2991
+ }
2992
+
2993
+ .fill-deep-orange-A100 {
2994
+ fill: mat-color($mat-deep-orange, A100) !important;
2995
+ }
2996
+
2997
+ // A200
2998
+ .fill-red-A200 {
2999
+ fill: mat-color($mat-red, A200) !important;
3000
+ }
3001
+
3002
+ .fill-pink-A200 {
3003
+ fill: mat-color($mat-pink, A200) !important;
3004
+ }
3005
+
3006
+ .fill-purple-A200 {
3007
+ fill: mat-color($mat-purple, A200) !important;
3008
+ }
3009
+
3010
+ .fill-deep-purple-A200 {
3011
+ fill: mat-color($mat-deep-purple, A200) !important;
3012
+ }
3013
+
3014
+ .fill-indigo-A200 {
3015
+ fill: mat-color($mat-indigo, A200) !important;
3016
+ }
3017
+
3018
+ .fill-blue-A200 {
3019
+ fill: mat-color($mat-blue, A200) !important;
3020
+ }
3021
+
3022
+ .fill-light-blue-A200 {
3023
+ fill: mat-color($mat-light-blue, A200) !important;
3024
+ }
3025
+
3026
+ .fill-cyan-A200 {
3027
+ fill: mat-color($mat-cyan, A200) !important;
3028
+ }
3029
+
3030
+ .fill-teal-A200 {
3031
+ fill: mat-color($mat-teal, A200) !important;
3032
+ }
3033
+
3034
+ .fill-green-A200 {
3035
+ fill: mat-color($mat-green, A200) !important;
3036
+ }
3037
+
3038
+ .fill-light-green-A200 {
3039
+ fill: mat-color($mat-light-green, A200) !important;
3040
+ }
3041
+
3042
+ .fill-lime-A200 {
3043
+ fill: mat-color($mat-lime, A200) !important;
3044
+ }
3045
+
3046
+ .fill-yellow-A200 {
3047
+ fill: mat-color($mat-yellow, A200) !important;
3048
+ }
3049
+
3050
+ .fill-amber-A200 {
3051
+ fill: mat-color($mat-amber, A200) !important;
3052
+ }
3053
+
3054
+ .fill-orange-A200 {
3055
+ fill: mat-color($mat-orange, A200) !important;
3056
+ }
3057
+
3058
+ .fill-deep-orange-A200 {
3059
+ fill: mat-color($mat-deep-orange, A200) !important;
3060
+ }
3061
+
3062
+ // A400
3063
+ .fill-red-A400 {
3064
+ fill: mat-color($mat-red, A400) !important;
3065
+ }
3066
+
3067
+ .fill-pink-A400 {
3068
+ fill: mat-color($mat-pink, A400) !important;
3069
+ }
3070
+
3071
+ .fill-purple-A400 {
3072
+ fill: mat-color($mat-purple, A400) !important;
3073
+ }
3074
+
3075
+ .fill-deep-purple-A400 {
3076
+ fill: mat-color($mat-deep-purple, A400) !important;
3077
+ }
3078
+
3079
+ .fill-indigo-A400 {
3080
+ fill: mat-color($mat-indigo, A400) !important;
3081
+ }
3082
+
3083
+ .fill-blue-A400 {
3084
+ fill: mat-color($mat-blue, A400) !important;
3085
+ }
3086
+
3087
+ .fill-light-blue-A400 {
3088
+ fill: mat-color($mat-light-blue, A400) !important;
3089
+ }
3090
+
3091
+ .fill-cyan-A400 {
3092
+ fill: mat-color($mat-cyan, A400) !important;
3093
+ }
3094
+
3095
+ .fill-teal-A400 {
3096
+ fill: mat-color($mat-teal, A400) !important;
3097
+ }
3098
+
3099
+ .fill-green-A400 {
3100
+ fill: mat-color($mat-green, A400) !important;
3101
+ }
3102
+
3103
+ .fill-light-green-A400 {
3104
+ fill: mat-color($mat-light-green, A400) !important;
3105
+ }
3106
+
3107
+ .fill-lime-A400 {
3108
+ fill: mat-color($mat-lime, A400) !important;
3109
+ }
3110
+
3111
+ .fill-yellow-A400 {
3112
+ fill: mat-color($mat-yellow, A400) !important;
3113
+ }
3114
+
3115
+ .fill-amber-A400 {
3116
+ fill: mat-color($mat-amber, A400) !important;
3117
+ }
3118
+
3119
+ .fill-orange-A400 {
3120
+ fill: mat-color($mat-orange, A400) !important;
3121
+ }
3122
+
3123
+ .fill-deep-orange-A400 {
3124
+ fill: mat-color($mat-deep-orange, A400) !important;
3125
+ }
3126
+
3127
+ // A700
3128
+ .fill-red-A700 {
3129
+ fill: mat-color($mat-red, A700) !important;
3130
+ }
3131
+
3132
+ .fill-pink-A700 {
3133
+ fill: mat-color($mat-pink, A700) !important;
3134
+ }
3135
+
3136
+ .fill-purple-A700 {
3137
+ fill: mat-color($mat-purple, A700) !important;
3138
+ }
3139
+
3140
+ .fill-deep-purple-A700 {
3141
+ fill: mat-color($mat-deep-purple, A700) !important;
3142
+ }
3143
+
3144
+ .fill-indigo-A700 {
3145
+ fill: mat-color($mat-indigo, A700) !important;
3146
+ }
3147
+
3148
+ .fill-blue-A700 {
3149
+ fill: mat-color($mat-blue, A700) !important;
3150
+ }
3151
+
3152
+ .fill-light-blue-A700 {
3153
+ fill: mat-color($mat-light-blue, A700) !important;
3154
+ }
3155
+
3156
+ .fill-cyan-A700 {
3157
+ fill: mat-color($mat-cyan, A700) !important;
3158
+ }
3159
+
3160
+ .fill-teal-A700 {
3161
+ fill: mat-color($mat-teal, A700) !important;
3162
+ }
3163
+
3164
+ .fill-green-A700 {
3165
+ fill: mat-color($mat-green, A700) !important;
3166
+ }
3167
+
3168
+ .fill-light-green-A700 {
3169
+ fill: mat-color($mat-light-green, A700) !important;
3170
+ }
3171
+
3172
+ .fill-lime-A700 {
3173
+ fill: mat-color($mat-lime, A700) !important;
3174
+ }
3175
+
3176
+ .fill-yellow-A700 {
3177
+ fill: mat-color($mat-yellow, A700) !important;
3178
+ }
3179
+
3180
+ .fill-amber-A700 {
3181
+ fill: mat-color($mat-amber, A700) !important;
3182
+ }
3183
+
3184
+ .fill-orange-A700 {
3185
+ fill: mat-color($mat-orange, A700) !important;
3186
+ }
3187
+
3188
+ .fill-deep-orange-A700 {
3189
+ fill: mat-color($mat-deep-orange, A700) !important;
3190
+ }
3191
+
3192
+ // Black
3193
+ .fill-black {
3194
+ fill: rgba(black, 87) !important;
3195
+ }
3196
+
3197
+ .fill-black-1 {
3198
+ fill: rgba(black, 54) !important;
3199
+ }
3200
+
3201
+ .fill-black-2 {
3202
+ fill: rgba(black, 38) !important;
3203
+ }
3204
+
3205
+ .fill-black-3 {
3206
+ fill: rgba(black, 0.12) !important;
3207
+ }
3208
+
3209
+ .fill-black-4 {
3210
+ fill: black !important;
3211
+ }
3212
+
3213
+ // White
3214
+ .fill-white {
3215
+ fill: rgba(white, 0.7) !important;
3216
+ }
3217
+
3218
+ .fill-white-1 {
3219
+ fill: rgba(white, 0.3) !important;
3220
+ }
3221
+
3222
+ .fill-white-2 {
3223
+ fill: rgba(white, 0.3) !important;
3224
+ }
3225
+
3226
+ .fill-white-3 {
3227
+ fill: rgba(white, 0.12) !important;
3228
+ }
3229
+
3230
+ .fill-white-4 {
3231
+ fill: white !important;
3232
+ }
3233
+ }
3234
+
3235
+ /* stylelint-enable selector-class-pattern */