@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,1399 @@
1
+ /* stylelint-disable selector-class-pattern */
2
+
3
+ @import '../theme-functions';
4
+ @import '../palette-dark';
5
+
6
+ @mixin td-colors-dark() {
7
+ // Text color
8
+
9
+ // 500
10
+ .tc-dark-red-500 {
11
+ color: mat-color($mat-dark-red, 500) !important;
12
+ }
13
+
14
+ .tc-dark-pink-500 {
15
+ color: mat-color($mat-dark-pink, 500) !important;
16
+ }
17
+
18
+ .tc-dark-purple-500 {
19
+ color: mat-color($mat-dark-purple, 500) !important;
20
+ }
21
+
22
+ .tc-dark-deep-purple-500 {
23
+ color: mat-color($mat-dark-deep-purple, 500) !important;
24
+ }
25
+
26
+ .tc-dark-indigo-500 {
27
+ color: mat-color($mat-dark-indigo, 500) !important;
28
+ }
29
+
30
+ .tc-dark-blue-500 {
31
+ color: mat-color($mat-dark-blue, 500) !important;
32
+ }
33
+
34
+ .tc-dark-light-blue-500 {
35
+ color: mat-color($mat-dark-light-blue, 500) !important;
36
+ }
37
+
38
+ .tc-dark-cyan-500 {
39
+ color: mat-color($mat-dark-cyan, 500) !important;
40
+ }
41
+
42
+ .tc-dark-teal-500 {
43
+ color: mat-color($mat-dark-teal, 500) !important;
44
+ }
45
+
46
+ .tc-dark-green-500 {
47
+ color: mat-color($mat-dark-green, 500) !important;
48
+ }
49
+
50
+ .tc-dark-light-green-500 {
51
+ color: mat-color($mat-dark-light-green, 500) !important;
52
+ }
53
+
54
+ .tc-dark-lime-500 {
55
+ color: mat-color($mat-dark-lime, 500) !important;
56
+ }
57
+
58
+ .tc-dark-yellow-500 {
59
+ color: mat-color($mat-dark-yellow, 500) !important;
60
+ }
61
+
62
+ .tc-dark-amber-500 {
63
+ color: mat-color($mat-dark-amber, 500) !important;
64
+ }
65
+
66
+ .tc-dark-orange-500 {
67
+ color: mat-color($mat-dark-orange, 500) !important;
68
+ }
69
+
70
+ .tc-dark-deep-orange-500 {
71
+ color: mat-color($mat-dark-deep-orange, 500) !important;
72
+ }
73
+
74
+ .tc-dark-brown-500 {
75
+ color: mat-color($mat-dark-brown, 500) !important;
76
+ }
77
+
78
+ .tc-dark-grey-500 {
79
+ color: mat-color($mat-dark-grey, 500) !important;
80
+ }
81
+
82
+ .tc-dark-blue-grey-500 {
83
+ color: mat-color($mat-dark-blue-grey, 500) !important;
84
+ }
85
+
86
+ // B100
87
+ .tc-dark-red-B100 {
88
+ color: mat-color($mat-dark-red, B100) !important;
89
+ }
90
+
91
+ .tc-dark-pink-B100 {
92
+ color: mat-color($mat-dark-pink, B100) !important;
93
+ }
94
+
95
+ .tc-dark-purple-B100 {
96
+ color: mat-color($mat-dark-purple, B100) !important;
97
+ }
98
+
99
+ .tc-dark-deep-purple-B100 {
100
+ color: mat-color($mat-dark-deep-purple, B100) !important;
101
+ }
102
+
103
+ .tc-dark-indigo-B100 {
104
+ color: mat-color($mat-dark-indigo, B100) !important;
105
+ }
106
+
107
+ .tc-dark-blue-B100 {
108
+ color: mat-color($mat-dark-blue, B100) !important;
109
+ }
110
+
111
+ .tc-dark-light-blue-B100 {
112
+ color: mat-color($mat-dark-light-blue, B100) !important;
113
+ }
114
+
115
+ .tc-dark-cyan-B100 {
116
+ color: mat-color($mat-dark-cyan, B100) !important;
117
+ }
118
+
119
+ .tc-dark-teal-B100 {
120
+ color: mat-color($mat-dark-teal, B100) !important;
121
+ }
122
+
123
+ .tc-dark-green-B100 {
124
+ color: mat-color($mat-dark-green, B100) !important;
125
+ }
126
+
127
+ .tc-dark-light-green-B100 {
128
+ color: mat-color($mat-dark-light-green, B100) !important;
129
+ }
130
+
131
+ .tc-dark-lime-B100 {
132
+ color: mat-color($mat-dark-lime, B100) !important;
133
+ }
134
+
135
+ .tc-dark-yellow-B100 {
136
+ color: mat-color($mat-dark-yellow, B100) !important;
137
+ }
138
+
139
+ .tc-dark-amber-B100 {
140
+ color: mat-color($mat-dark-amber, B100) !important;
141
+ }
142
+
143
+ .tc-dark-orange-B100 {
144
+ color: mat-color($mat-dark-orange, B100) !important;
145
+ }
146
+
147
+ .tc-dark-deep-orange-B100 {
148
+ color: mat-color($mat-dark-deep-orange, B100) !important;
149
+ }
150
+
151
+ .tc-dark-brown-B100 {
152
+ color: mat-color($mat-dark-brown, B100) !important;
153
+ }
154
+
155
+ .tc-dark-grey-B100 {
156
+ color: mat-color($mat-dark-grey, B100) !important;
157
+ }
158
+
159
+ .tc-dark-blue-grey-B100 {
160
+ color: mat-color($mat-dark-blue-grey, B100) !important;
161
+ }
162
+
163
+ // B65
164
+ .tc-dark-red-B65 {
165
+ color: mat-color($mat-dark-red, B65) !important;
166
+ }
167
+
168
+ .tc-dark-pink-B65 {
169
+ color: mat-color($mat-dark-pink, B65) !important;
170
+ }
171
+
172
+ .tc-dark-purple-B65 {
173
+ color: mat-color($mat-dark-purple, B65) !important;
174
+ }
175
+
176
+ .tc-dark-deep-purple-B65 {
177
+ color: mat-color($mat-dark-deep-purple, B65) !important;
178
+ }
179
+
180
+ .tc-dark-indigo-B65 {
181
+ color: mat-color($mat-dark-indigo, B65) !important;
182
+ }
183
+
184
+ .tc-dark-blue-B65 {
185
+ color: mat-color($mat-dark-blue, B65) !important;
186
+ }
187
+
188
+ .tc-dark-light-blue-B65 {
189
+ color: mat-color($mat-dark-light-blue, B65) !important;
190
+ }
191
+
192
+ .tc-dark-cyan-B65 {
193
+ color: mat-color($mat-dark-cyan, B65) !important;
194
+ }
195
+
196
+ .tc-dark-teal-B65 {
197
+ color: mat-color($mat-dark-teal, B65) !important;
198
+ }
199
+
200
+ .tc-dark-green-B65 {
201
+ color: mat-color($mat-dark-green, B65) !important;
202
+ }
203
+
204
+ .tc-dark-light-green-B65 {
205
+ color: mat-color($mat-dark-light-green, B65) !important;
206
+ }
207
+
208
+ .tc-dark-lime-B65 {
209
+ color: mat-color($mat-dark-lime, B65) !important;
210
+ }
211
+
212
+ .tc-dark-yellow-B65 {
213
+ color: mat-color($mat-dark-yellow, B65) !important;
214
+ }
215
+
216
+ .tc-dark-amber-B65 {
217
+ color: mat-color($mat-dark-amber, B65) !important;
218
+ }
219
+
220
+ .tc-dark-orange-B65 {
221
+ color: mat-color($mat-dark-orange, B65) !important;
222
+ }
223
+
224
+ .tc-dark-deep-orange-B65 {
225
+ color: mat-color($mat-dark-deep-orange, B65) !important;
226
+ }
227
+
228
+ .tc-dark-brown-B65 {
229
+ color: mat-color($mat-dark-brown, B65) !important;
230
+ }
231
+
232
+ .tc-dark-grey-B65 {
233
+ color: mat-color($mat-dark-grey, B65) !important;
234
+ }
235
+
236
+ .tc-dark-blue-grey-B65 {
237
+ color: mat-color($mat-dark-blue-grey, B65) !important;
238
+ }
239
+
240
+ // B40
241
+ .tc-dark-red-B40 {
242
+ color: mat-color($mat-dark-red, B40) !important;
243
+ }
244
+
245
+ .tc-dark-pink-B40 {
246
+ color: mat-color($mat-dark-pink, B40) !important;
247
+ }
248
+
249
+ .tc-dark-purple-B40 {
250
+ color: mat-color($mat-dark-purple, B40) !important;
251
+ }
252
+
253
+ .tc-dark-deep-purple-B40 {
254
+ color: mat-color($mat-dark-deep-purple, B40) !important;
255
+ }
256
+
257
+ .tc-dark-indigo-B40 {
258
+ color: mat-color($mat-dark-indigo, B40) !important;
259
+ }
260
+
261
+ .tc-dark-blue-B40 {
262
+ color: mat-color($mat-dark-blue, B40) !important;
263
+ }
264
+
265
+ .tc-dark-light-blue-B40 {
266
+ color: mat-color($mat-dark-light-blue, B40) !important;
267
+ }
268
+
269
+ .tc-dark-cyan-B40 {
270
+ color: mat-color($mat-dark-cyan, B40) !important;
271
+ }
272
+
273
+ .tc-dark-teal-B40 {
274
+ color: mat-color($mat-dark-teal, B40) !important;
275
+ }
276
+
277
+ .tc-dark-green-B40 {
278
+ color: mat-color($mat-dark-green, B40) !important;
279
+ }
280
+
281
+ .tc-dark-light-green-B40 {
282
+ color: mat-color($mat-dark-light-green, B40) !important;
283
+ }
284
+
285
+ .tc-dark-lime-B40 {
286
+ color: mat-color($mat-dark-lime, B40) !important;
287
+ }
288
+
289
+ .tc-dark-yellow-B40 {
290
+ color: mat-color($mat-dark-yellow, B40) !important;
291
+ }
292
+
293
+ .tc-dark-amber-B40 {
294
+ color: mat-color($mat-dark-amber, B40) !important;
295
+ }
296
+
297
+ .tc-dark-orange-B40 {
298
+ color: mat-color($mat-dark-orange, B40) !important;
299
+ }
300
+
301
+ .tc-dark-deep-orange-B40 {
302
+ color: mat-color($mat-dark-deep-orange, B40) !important;
303
+ }
304
+
305
+ .tc-dark-brown-B40 {
306
+ color: mat-color($mat-dark-brown, B40) !important;
307
+ }
308
+
309
+ .tc-dark-grey-B40 {
310
+ color: mat-color($mat-dark-grey, B40) !important;
311
+ }
312
+
313
+ .tc-dark-blue-grey-B40 {
314
+ color: mat-color($mat-dark-blue-grey, B40) !important;
315
+ }
316
+
317
+ // B30
318
+ .tc-dark-red-B30 {
319
+ color: mat-color($mat-dark-red, B30) !important;
320
+ }
321
+
322
+ .tc-dark-pink-B30 {
323
+ color: mat-color($mat-dark-pink, B30) !important;
324
+ }
325
+
326
+ .tc-dark-purple-B30 {
327
+ color: mat-color($mat-dark-purple, B30) !important;
328
+ }
329
+
330
+ .tc-dark-deep-purple-B30 {
331
+ color: mat-color($mat-dark-deep-purple, B30) !important;
332
+ }
333
+
334
+ .tc-dark-indigo-B30 {
335
+ color: mat-color($mat-dark-indigo, B30) !important;
336
+ }
337
+
338
+ .tc-dark-blue-B30 {
339
+ color: mat-color($mat-dark-blue, B30) !important;
340
+ }
341
+
342
+ .tc-dark-light-blue-B30 {
343
+ color: mat-color($mat-dark-light-blue, B30) !important;
344
+ }
345
+
346
+ .tc-dark-cyan-B30 {
347
+ color: mat-color($mat-dark-cyan, B30) !important;
348
+ }
349
+
350
+ .tc-dark-teal-B30 {
351
+ color: mat-color($mat-dark-teal, B30) !important;
352
+ }
353
+
354
+ .tc-dark-green-B30 {
355
+ color: mat-color($mat-dark-green, B30) !important;
356
+ }
357
+
358
+ .tc-dark-light-green-B30 {
359
+ color: mat-color($mat-dark-light-green, B30) !important;
360
+ }
361
+
362
+ .tc-dark-lime-B30 {
363
+ color: mat-color($mat-dark-lime, B30) !important;
364
+ }
365
+
366
+ .tc-dark-yellow-B30 {
367
+ color: mat-color($mat-dark-yellow, B30) !important;
368
+ }
369
+
370
+ .tc-dark-amber-B30 {
371
+ color: mat-color($mat-dark-amber, B30) !important;
372
+ }
373
+
374
+ .tc-dark-orange-B30 {
375
+ color: mat-color($mat-dark-orange, B30) !important;
376
+ }
377
+
378
+ .tc-dark-deep-orange-B30 {
379
+ color: mat-color($mat-dark-deep-orange, B30) !important;
380
+ }
381
+
382
+ .tc-dark-brown-B30 {
383
+ color: mat-color($mat-dark-brown, B30) !important;
384
+ }
385
+
386
+ .tc-dark-grey-B30 {
387
+ color: mat-color($mat-dark-grey, B30) !important;
388
+ }
389
+
390
+ .tc-dark-blue-grey-B30 {
391
+ color: mat-color($mat-dark-blue-grey, B30) !important;
392
+ }
393
+
394
+ // B15
395
+ .tc-dark-red-B15 {
396
+ color: mat-color($mat-dark-red, B15) !important;
397
+ }
398
+
399
+ .tc-dark-pink-B15 {
400
+ color: mat-color($mat-dark-pink, B15) !important;
401
+ }
402
+
403
+ .tc-dark-purple-B15 {
404
+ color: mat-color($mat-dark-purple, B15) !important;
405
+ }
406
+
407
+ .tc-dark-deep-purple-B15 {
408
+ color: mat-color($mat-dark-deep-purple, B15) !important;
409
+ }
410
+
411
+ .tc-dark-indigo-B15 {
412
+ color: mat-color($mat-dark-indigo, B15) !important;
413
+ }
414
+
415
+ .tc-dark-blue-B15 {
416
+ color: mat-color($mat-dark-blue, B15) !important;
417
+ }
418
+
419
+ .tc-dark-light-blue-B15 {
420
+ color: mat-color($mat-dark-light-blue, B15) !important;
421
+ }
422
+
423
+ .tc-dark-cyan-B15 {
424
+ color: mat-color($mat-dark-cyan, B15) !important;
425
+ }
426
+
427
+ .tc-dark-teal-B15 {
428
+ color: mat-color($mat-dark-teal, B15) !important;
429
+ }
430
+
431
+ .tc-dark-green-B15 {
432
+ color: mat-color($mat-dark-green, B15) !important;
433
+ }
434
+
435
+ .tc-dark-light-green-B15 {
436
+ color: mat-color($mat-dark-light-green, B15) !important;
437
+ }
438
+
439
+ .tc-dark-lime-B15 {
440
+ color: mat-color($mat-dark-lime, B15) !important;
441
+ }
442
+
443
+ .tc-dark-yellow-B15 {
444
+ color: mat-color($mat-dark-yellow, B15) !important;
445
+ }
446
+
447
+ .tc-dark-amber-B15 {
448
+ color: mat-color($mat-dark-amber, B15) !important;
449
+ }
450
+
451
+ .tc-dark-orange-B15 {
452
+ color: mat-color($mat-dark-orange, B15) !important;
453
+ }
454
+
455
+ .tc-dark-deep-orange-B15 {
456
+ color: mat-color($mat-dark-deep-orange, B15) !important;
457
+ }
458
+
459
+ .tc-dark-brown-B15 {
460
+ color: mat-color($mat-dark-brown, B15) !important;
461
+ }
462
+
463
+ .tc-dark-grey-B15 {
464
+ color: mat-color($mat-dark-grey, B15) !important;
465
+ }
466
+
467
+ .tc-dark-blue-grey-B15 {
468
+ color: mat-color($mat-dark-blue-grey, B15) !important;
469
+ }
470
+
471
+ // Background color
472
+
473
+ // 500
474
+ .bgc-dark-red-500 {
475
+ background-color: mat-color($mat-dark-red, 500) !important;
476
+ }
477
+
478
+ .bgc-dark-pink-500 {
479
+ background-color: mat-color($mat-dark-pink, 500) !important;
480
+ }
481
+
482
+ .bgc-dark-purple-500 {
483
+ background-color: mat-color($mat-dark-purple, 500) !important;
484
+ }
485
+
486
+ .bgc-dark-deep-purple-500 {
487
+ background-color: mat-color($mat-dark-deep-purple, 500) !important;
488
+ }
489
+
490
+ .bgc-dark-indigo-500 {
491
+ background-color: mat-color($mat-dark-indigo, 500) !important;
492
+ }
493
+
494
+ .bgc-dark-blue-500 {
495
+ background-color: mat-color($mat-dark-blue, 500) !important;
496
+ }
497
+
498
+ .bgc-dark-light-blue-500 {
499
+ background-color: mat-color($mat-dark-light-blue, 500) !important;
500
+ }
501
+
502
+ .bgc-dark-cyan-500 {
503
+ background-color: mat-color($mat-dark-cyan, 500) !important;
504
+ }
505
+
506
+ .bgc-dark-teal-500 {
507
+ background-color: mat-color($mat-dark-teal, 500) !important;
508
+ }
509
+
510
+ .bgc-dark-green-500 {
511
+ background-color: mat-color($mat-dark-green, 500) !important;
512
+ }
513
+
514
+ .bgc-dark-light-green-500 {
515
+ background-color: mat-color($mat-dark-light-green, 500) !important;
516
+ }
517
+
518
+ .bgc-dark-lime-500 {
519
+ background-color: mat-color($mat-dark-lime, 500) !important;
520
+ }
521
+
522
+ .bgc-dark-yellow-500 {
523
+ background-color: mat-color($mat-dark-yellow, 500) !important;
524
+ }
525
+
526
+ .bgc-dark-amber-500 {
527
+ background-color: mat-color($mat-dark-amber, 500) !important;
528
+ }
529
+
530
+ .bgc-dark-orange-500 {
531
+ background-color: mat-color($mat-dark-orange, 500) !important;
532
+ }
533
+
534
+ .bgc-dark-deep-orange-500 {
535
+ background-color: mat-color($mat-dark-deep-orange, 500) !important;
536
+ }
537
+
538
+ .bgc-dark-brown-500 {
539
+ background-color: mat-color($mat-dark-brown, 500) !important;
540
+ }
541
+
542
+ .bgc-dark-grey-500 {
543
+ background-color: mat-color($mat-dark-grey, 500) !important;
544
+ }
545
+
546
+ .bgc-dark-blue-grey-500 {
547
+ background-color: mat-color($mat-dark-blue-grey, 500) !important;
548
+ }
549
+
550
+ // B100
551
+ .bgc-dark-red-B100 {
552
+ background-color: mat-color($mat-dark-red, B100) !important;
553
+ }
554
+
555
+ .bgc-dark-pink-B100 {
556
+ background-color: mat-color($mat-dark-pink, B100) !important;
557
+ }
558
+
559
+ .bgc-dark-purple-B100 {
560
+ background-color: mat-color($mat-dark-purple, B100) !important;
561
+ }
562
+
563
+ .bgc-dark-deep-purple-B100 {
564
+ background-color: mat-color($mat-dark-deep-purple, B100) !important;
565
+ }
566
+
567
+ .bgc-dark-indigo-B100 {
568
+ background-color: mat-color($mat-dark-indigo, B100) !important;
569
+ }
570
+
571
+ .bgc-dark-blue-B100 {
572
+ background-color: mat-color($mat-dark-blue, B100) !important;
573
+ }
574
+
575
+ .bgc-dark-light-blue-B100 {
576
+ background-color: mat-color($mat-dark-light-blue, B100) !important;
577
+ }
578
+
579
+ .bgc-dark-cyan-B100 {
580
+ background-color: mat-color($mat-dark-cyan, B100) !important;
581
+ }
582
+
583
+ .bgc-dark-teal-B100 {
584
+ background-color: mat-color($mat-dark-teal, B100) !important;
585
+ }
586
+
587
+ .bgc-dark-green-B100 {
588
+ background-color: mat-color($mat-dark-green, B100) !important;
589
+ }
590
+
591
+ .bgc-dark-light-green-B100 {
592
+ background-color: mat-color($mat-dark-light-green, B100) !important;
593
+ }
594
+
595
+ .bgc-dark-lime-B100 {
596
+ background-color: mat-color($mat-dark-lime, B100) !important;
597
+ }
598
+
599
+ .bgc-dark-yellow-B100 {
600
+ background-color: mat-color($mat-dark-yellow, B100) !important;
601
+ }
602
+
603
+ .bgc-dark-amber-B100 {
604
+ background-color: mat-color($mat-dark-amber, B100) !important;
605
+ }
606
+
607
+ .bgc-dark-orange-B100 {
608
+ background-color: mat-color($mat-dark-orange, B100) !important;
609
+ }
610
+
611
+ .bgc-dark-deep-orange-B100 {
612
+ background-color: mat-color($mat-dark-deep-orange, B100) !important;
613
+ }
614
+
615
+ .bgc-dark-brown-B100 {
616
+ background-color: mat-color($mat-dark-brown, B100) !important;
617
+ }
618
+
619
+ .bgc-dark-grey-B100 {
620
+ background-color: mat-color($mat-dark-grey, B100) !important;
621
+ }
622
+
623
+ .bgc-dark-blue-grey-B100 {
624
+ background-color: mat-color($mat-dark-blue-grey, B100) !important;
625
+ }
626
+
627
+ // B65
628
+ .bgc-dark-red-B65 {
629
+ background-color: mat-color($mat-dark-red, B65) !important;
630
+ }
631
+
632
+ .bgc-dark-pink-B65 {
633
+ background-color: mat-color($mat-dark-pink, B65) !important;
634
+ }
635
+
636
+ .bgc-dark-purple-B65 {
637
+ background-color: mat-color($mat-dark-purple, B65) !important;
638
+ }
639
+
640
+ .bgc-dark-deep-purple-B65 {
641
+ background-color: mat-color($mat-dark-deep-purple, B65) !important;
642
+ }
643
+
644
+ .bgc-dark-indigo-B65 {
645
+ background-color: mat-color($mat-dark-indigo, B65) !important;
646
+ }
647
+
648
+ .bgc-dark-blue-B65 {
649
+ background-color: mat-color($mat-dark-blue, B65) !important;
650
+ }
651
+
652
+ .bgc-dark-light-blue-B65 {
653
+ background-color: mat-color($mat-dark-light-blue, B65) !important;
654
+ }
655
+
656
+ .bgc-dark-cyan-B65 {
657
+ background-color: mat-color($mat-dark-cyan, B65) !important;
658
+ }
659
+
660
+ .bgc-dark-teal-B65 {
661
+ background-color: mat-color($mat-dark-teal, B65) !important;
662
+ }
663
+
664
+ .bgc-dark-green-B65 {
665
+ background-color: mat-color($mat-dark-green, B65) !important;
666
+ }
667
+
668
+ .bgc-dark-light-green-B65 {
669
+ background-color: mat-color($mat-dark-light-green, B65) !important;
670
+ }
671
+
672
+ .bgc-dark-lime-B65 {
673
+ background-color: mat-color($mat-dark-lime, B65) !important;
674
+ }
675
+
676
+ .bgc-dark-yellow-B65 {
677
+ background-color: mat-color($mat-dark-yellow, B65) !important;
678
+ }
679
+
680
+ .bgc-dark-amber-B65 {
681
+ background-color: mat-color($mat-dark-amber, B65) !important;
682
+ }
683
+
684
+ .bgc-dark-orange-B65 {
685
+ background-color: mat-color($mat-dark-orange, B65) !important;
686
+ }
687
+
688
+ .bgc-dark-deep-orange-B65 {
689
+ background-color: mat-color($mat-dark-deep-orange, B65) !important;
690
+ }
691
+
692
+ .bgc-dark-brown-B65 {
693
+ background-color: mat-color($mat-dark-brown, B65) !important;
694
+ }
695
+
696
+ .bgc-dark-grey-B65 {
697
+ background-color: mat-color($mat-dark-grey, B65) !important;
698
+ }
699
+
700
+ .bgc-dark-blue-grey-B65 {
701
+ background-color: mat-color($mat-dark-blue-grey, B65) !important;
702
+ }
703
+
704
+ // B40
705
+ .bgc-dark-red-B40 {
706
+ background-color: mat-color($mat-dark-red, B40) !important;
707
+ }
708
+
709
+ .bgc-dark-pink-B40 {
710
+ background-color: mat-color($mat-dark-pink, B40) !important;
711
+ }
712
+
713
+ .bgc-dark-purple-B40 {
714
+ background-color: mat-color($mat-dark-purple, B40) !important;
715
+ }
716
+
717
+ .bgc-dark-deep-purple-B40 {
718
+ background-color: mat-color($mat-dark-deep-purple, B40) !important;
719
+ }
720
+
721
+ .bgc-dark-indigo-B40 {
722
+ background-color: mat-color($mat-dark-indigo, B40) !important;
723
+ }
724
+
725
+ .bgc-dark-blue-B40 {
726
+ background-color: mat-color($mat-dark-blue, B40) !important;
727
+ }
728
+
729
+ .bgc-dark-light-blue-B40 {
730
+ background-color: mat-color($mat-dark-light-blue, B40) !important;
731
+ }
732
+
733
+ .bgc-dark-cyan-B40 {
734
+ background-color: mat-color($mat-dark-cyan, B40) !important;
735
+ }
736
+
737
+ .bgc-dark-teal-B40 {
738
+ background-color: mat-color($mat-dark-teal, B40) !important;
739
+ }
740
+
741
+ .bgc-dark-green-B40 {
742
+ background-color: mat-color($mat-dark-green, B40) !important;
743
+ }
744
+
745
+ .bgc-dark-light-green-B40 {
746
+ background-color: mat-color($mat-dark-light-green, B40) !important;
747
+ }
748
+
749
+ .bgc-dark-lime-B40 {
750
+ background-color: mat-color($mat-dark-lime, B40) !important;
751
+ }
752
+
753
+ .bgc-dark-yellow-B40 {
754
+ background-color: mat-color($mat-dark-yellow, B40) !important;
755
+ }
756
+
757
+ .bgc-dark-amber-B40 {
758
+ background-color: mat-color($mat-dark-amber, B40) !important;
759
+ }
760
+
761
+ .bgc-dark-orange-B40 {
762
+ background-color: mat-color($mat-dark-orange, B40) !important;
763
+ }
764
+
765
+ .bgc-dark-deep-orange-B40 {
766
+ background-color: mat-color($mat-dark-deep-orange, B40) !important;
767
+ }
768
+
769
+ .bgc-dark-brown-B40 {
770
+ background-color: mat-color($mat-dark-brown, B40) !important;
771
+ }
772
+
773
+ .bgc-dark-grey-B40 {
774
+ background-color: mat-color($mat-dark-grey, B40) !important;
775
+ }
776
+
777
+ .bgc-dark-blue-grey-B40 {
778
+ background-color: mat-color($mat-dark-blue-grey, B40) !important;
779
+ }
780
+
781
+ // B30
782
+ .bgc-dark-red-B30 {
783
+ background-color: mat-color($mat-dark-red, B30) !important;
784
+ }
785
+
786
+ .bgc-dark-pink-B30 {
787
+ background-color: mat-color($mat-dark-pink, B30) !important;
788
+ }
789
+
790
+ .bgc-dark-purple-B30 {
791
+ background-color: mat-color($mat-dark-purple, B30) !important;
792
+ }
793
+
794
+ .bgc-dark-deep-purple-B30 {
795
+ background-color: mat-color($mat-dark-deep-purple, B30) !important;
796
+ }
797
+
798
+ .bgc-dark-indigo-B30 {
799
+ background-color: mat-color($mat-dark-indigo, B30) !important;
800
+ }
801
+
802
+ .bgc-dark-blue-B30 {
803
+ background-color: mat-color($mat-dark-blue, B30) !important;
804
+ }
805
+
806
+ .bgc-dark-light-blue-B30 {
807
+ background-color: mat-color($mat-dark-light-blue, B30) !important;
808
+ }
809
+
810
+ .bgc-dark-cyan-B30 {
811
+ background-color: mat-color($mat-dark-cyan, B30) !important;
812
+ }
813
+
814
+ .bgc-dark-teal-B30 {
815
+ background-color: mat-color($mat-dark-teal, B30) !important;
816
+ }
817
+
818
+ .bgc-dark-green-B30 {
819
+ background-color: mat-color($mat-dark-green, B30) !important;
820
+ }
821
+
822
+ .bgc-dark-light-green-B30 {
823
+ background-color: mat-color($mat-dark-light-green, B30) !important;
824
+ }
825
+
826
+ .bgc-dark-lime-B30 {
827
+ background-color: mat-color($mat-dark-lime, B30) !important;
828
+ }
829
+
830
+ .bgc-dark-yellow-B30 {
831
+ background-color: mat-color($mat-dark-yellow, B30) !important;
832
+ }
833
+
834
+ .bgc-dark-amber-B30 {
835
+ background-color: mat-color($mat-dark-amber, B30) !important;
836
+ }
837
+
838
+ .bgc-dark-orange-B30 {
839
+ background-color: mat-color($mat-dark-orange, B30) !important;
840
+ }
841
+
842
+ .bgc-dark-deep-orange-B30 {
843
+ background-color: mat-color($mat-dark-deep-orange, B30) !important;
844
+ }
845
+
846
+ .bgc-dark-brown-B30 {
847
+ background-color: mat-color($mat-dark-brown, B30) !important;
848
+ }
849
+
850
+ .bgc-dark-grey-B30 {
851
+ background-color: mat-color($mat-dark-grey, B30) !important;
852
+ }
853
+
854
+ .bgc-dark-blue-grey-B30 {
855
+ background-color: mat-color($mat-dark-blue-grey, B30) !important;
856
+ }
857
+
858
+ // B15
859
+ .bgc-dark-red-B15 {
860
+ background-color: mat-color($mat-dark-red, B15) !important;
861
+ }
862
+
863
+ .bgc-dark-pink-B15 {
864
+ background-color: mat-color($mat-dark-pink, B15) !important;
865
+ }
866
+
867
+ .bgc-dark-purple-B15 {
868
+ background-color: mat-color($mat-dark-purple, B15) !important;
869
+ }
870
+
871
+ .bgc-dark-deep-purple-B15 {
872
+ background-color: mat-color($mat-dark-deep-purple, B15) !important;
873
+ }
874
+
875
+ .bgc-dark-indigo-B15 {
876
+ background-color: mat-color($mat-dark-indigo, B15) !important;
877
+ }
878
+
879
+ .bgc-dark-blue-B15 {
880
+ background-color: mat-color($mat-dark-blue, B15) !important;
881
+ }
882
+
883
+ .bgc-dark-light-blue-B15 {
884
+ background-color: mat-color($mat-dark-light-blue, B15) !important;
885
+ }
886
+
887
+ .bgc-dark-cyan-B15 {
888
+ background-color: mat-color($mat-dark-cyan, B15) !important;
889
+ }
890
+
891
+ .bgc-dark-teal-B15 {
892
+ background-color: mat-color($mat-dark-teal, B15) !important;
893
+ }
894
+
895
+ .bgc-dark-green-B15 {
896
+ background-color: mat-color($mat-dark-green, B15) !important;
897
+ }
898
+
899
+ .bgc-dark-light-green-B15 {
900
+ background-color: mat-color($mat-dark-light-green, B15) !important;
901
+ }
902
+
903
+ .bgc-dark-lime-B15 {
904
+ background-color: mat-color($mat-dark-lime, B15) !important;
905
+ }
906
+
907
+ .bgc-dark-yellow-B15 {
908
+ background-color: mat-color($mat-dark-yellow, B15) !important;
909
+ }
910
+
911
+ .bgc-dark-amber-B15 {
912
+ background-color: mat-color($mat-dark-amber, B15) !important;
913
+ }
914
+
915
+ .bgc-dark-orange-B15 {
916
+ background-color: mat-color($mat-dark-orange, B15) !important;
917
+ }
918
+
919
+ .bgc-dark-deep-orange-B15 {
920
+ background-color: mat-color($mat-dark-deep-orange, B15) !important;
921
+ }
922
+
923
+ .bgc-dark-brown-B15 {
924
+ background-color: mat-color($mat-dark-brown, B15) !important;
925
+ }
926
+
927
+ .bgc-dark-grey-B15 {
928
+ background-color: mat-color($mat-dark-grey, B15) !important;
929
+ }
930
+
931
+ .bgc-dark-blue-grey-B15 {
932
+ background-color: mat-color($mat-dark-blue-grey, B15) !important;
933
+ }
934
+
935
+ // Fill color
936
+
937
+ // 500
938
+ .fill-red-500 {
939
+ fill: mat-color($mat-dark-red, 500) !important;
940
+ }
941
+
942
+ .fill-pink-500 {
943
+ fill: mat-color($mat-dark-pink, 500) !important;
944
+ }
945
+
946
+ .fill-purple-500 {
947
+ fill: mat-color($mat-dark-purple, 500) !important;
948
+ }
949
+
950
+ .fill-deep-purple-500 {
951
+ fill: mat-color($mat-dark-deep-purple, 500) !important;
952
+ }
953
+
954
+ .fill-indigo-500 {
955
+ fill: mat-color($mat-dark-indigo, 500) !important;
956
+ }
957
+
958
+ .fill-blue-500 {
959
+ fill: mat-color($mat-dark-blue, 500) !important;
960
+ }
961
+
962
+ .fill-light-blue-500 {
963
+ fill: mat-color($mat-dark-light-blue, 500) !important;
964
+ }
965
+
966
+ .fill-cyan-500 {
967
+ fill: mat-color($mat-dark-cyan, 500) !important;
968
+ }
969
+
970
+ .fill-teal-500 {
971
+ fill: mat-color($mat-dark-teal, 500) !important;
972
+ }
973
+
974
+ .fill-green-500 {
975
+ fill: mat-color($mat-dark-green, 500) !important;
976
+ }
977
+
978
+ .fill-light-green-500 {
979
+ fill: mat-color($mat-dark-light-green, 500) !important;
980
+ }
981
+
982
+ .fill-lime-500 {
983
+ fill: mat-color($mat-dark-lime, 500) !important;
984
+ }
985
+
986
+ .fill-yellow-500 {
987
+ fill: mat-color($mat-dark-yellow, 500) !important;
988
+ }
989
+
990
+ .fill-amber-500 {
991
+ fill: mat-color($mat-dark-amber, 500) !important;
992
+ }
993
+
994
+ .fill-orange-500 {
995
+ fill: mat-color($mat-dark-orange, 500) !important;
996
+ }
997
+
998
+ .fill-deep-orange-500 {
999
+ fill: mat-color($mat-dark-deep-orange, 500) !important;
1000
+ }
1001
+
1002
+ .fill-brown-500 {
1003
+ fill: mat-color($mat-dark-brown, 500) !important;
1004
+ }
1005
+
1006
+ .fill-grey-500 {
1007
+ fill: mat-color($mat-dark-grey, 500) !important;
1008
+ }
1009
+
1010
+ .fill-blue-grey-500 {
1011
+ fill: mat-color($mat-dark-blue-grey, 500) !important;
1012
+ }
1013
+
1014
+ // B100
1015
+ .fill-red-B100 {
1016
+ fill: mat-color($mat-dark-red, B100) !important;
1017
+ }
1018
+
1019
+ .fill-pink-B100 {
1020
+ fill: mat-color($mat-dark-pink, B100) !important;
1021
+ }
1022
+
1023
+ .fill-purple-B100 {
1024
+ fill: mat-color($mat-dark-purple, B100) !important;
1025
+ }
1026
+
1027
+ .fill-deep-purple-B100 {
1028
+ fill: mat-color($mat-dark-deep-purple, B100) !important;
1029
+ }
1030
+
1031
+ .fill-indigo-B100 {
1032
+ fill: mat-color($mat-dark-indigo, B100) !important;
1033
+ }
1034
+
1035
+ .fill-blue-B100 {
1036
+ fill: mat-color($mat-dark-blue, B100) !important;
1037
+ }
1038
+
1039
+ .fill-light-blue-B100 {
1040
+ fill: mat-color($mat-dark-light-blue, B100) !important;
1041
+ }
1042
+
1043
+ .fill-cyan-B100 {
1044
+ fill: mat-color($mat-dark-cyan, B100) !important;
1045
+ }
1046
+
1047
+ .fill-teal-B100 {
1048
+ fill: mat-color($mat-dark-teal, B100) !important;
1049
+ }
1050
+
1051
+ .fill-green-B100 {
1052
+ fill: mat-color($mat-dark-green, B100) !important;
1053
+ }
1054
+
1055
+ .fill-light-green-B100 {
1056
+ fill: mat-color($mat-dark-light-green, B100) !important;
1057
+ }
1058
+
1059
+ .fill-lime-B100 {
1060
+ fill: mat-color($mat-dark-lime, B100) !important;
1061
+ }
1062
+
1063
+ .fill-yellow-B100 {
1064
+ fill: mat-color($mat-dark-yellow, B100) !important;
1065
+ }
1066
+
1067
+ .fill-amber-B100 {
1068
+ fill: mat-color($mat-dark-amber, B100) !important;
1069
+ }
1070
+
1071
+ .fill-orange-B100 {
1072
+ fill: mat-color($mat-dark-orange, B100) !important;
1073
+ }
1074
+
1075
+ .fill-deep-orange-B100 {
1076
+ fill: mat-color($mat-dark-deep-orange, B100) !important;
1077
+ }
1078
+
1079
+ .fill-brown-B100 {
1080
+ fill: mat-color($mat-dark-brown, B100) !important;
1081
+ }
1082
+
1083
+ .fill-grey-B100 {
1084
+ fill: mat-color($mat-dark-grey, B100) !important;
1085
+ }
1086
+
1087
+ .fill-blue-grey-B100 {
1088
+ fill: mat-color($mat-dark-blue-grey, B100) !important;
1089
+ }
1090
+
1091
+ // B65
1092
+ .fill-red-B65 {
1093
+ fill: mat-color($mat-dark-red, B65) !important;
1094
+ }
1095
+
1096
+ .fill-pink-B65 {
1097
+ fill: mat-color($mat-dark-pink, B65) !important;
1098
+ }
1099
+
1100
+ .fill-purple-B65 {
1101
+ fill: mat-color($mat-dark-purple, B65) !important;
1102
+ }
1103
+
1104
+ .fill-deep-purple-B65 {
1105
+ fill: mat-color($mat-dark-deep-purple, B65) !important;
1106
+ }
1107
+
1108
+ .fill-indigo-B65 {
1109
+ fill: mat-color($mat-dark-indigo, B65) !important;
1110
+ }
1111
+
1112
+ .fill-blue-B65 {
1113
+ fill: mat-color($mat-dark-blue, B65) !important;
1114
+ }
1115
+
1116
+ .fill-light-blue-B65 {
1117
+ fill: mat-color($mat-dark-light-blue, B65) !important;
1118
+ }
1119
+
1120
+ .fill-cyan-B65 {
1121
+ fill: mat-color($mat-dark-cyan, B65) !important;
1122
+ }
1123
+
1124
+ .fill-teal-B65 {
1125
+ fill: mat-color($mat-dark-teal, B65) !important;
1126
+ }
1127
+
1128
+ .fill-green-B65 {
1129
+ fill: mat-color($mat-dark-green, B65) !important;
1130
+ }
1131
+
1132
+ .fill-light-green-B65 {
1133
+ fill: mat-color($mat-dark-light-green, B65) !important;
1134
+ }
1135
+
1136
+ .fill-lime-B65 {
1137
+ fill: mat-color($mat-dark-lime, B65) !important;
1138
+ }
1139
+
1140
+ .fill-yellow-B65 {
1141
+ fill: mat-color($mat-dark-yellow, B65) !important;
1142
+ }
1143
+
1144
+ .fill-amber-B65 {
1145
+ fill: mat-color($mat-dark-amber, B65) !important;
1146
+ }
1147
+
1148
+ .fill-orange-B65 {
1149
+ fill: mat-color($mat-dark-orange, B65) !important;
1150
+ }
1151
+
1152
+ .fill-deep-orange-B65 {
1153
+ fill: mat-color($mat-dark-deep-orange, B65) !important;
1154
+ }
1155
+
1156
+ .fill-brown-B65 {
1157
+ fill: mat-color($mat-dark-brown, B65) !important;
1158
+ }
1159
+
1160
+ .fill-grey-B65 {
1161
+ fill: mat-color($mat-dark-grey, B65) !important;
1162
+ }
1163
+
1164
+ .fill-blue-grey-B65 {
1165
+ fill: mat-color($mat-dark-blue-grey, B65) !important;
1166
+ }
1167
+
1168
+ // B40
1169
+ .fill-red-B40 {
1170
+ fill: mat-color($mat-dark-red, B40) !important;
1171
+ }
1172
+
1173
+ .fill-pink-B40 {
1174
+ fill: mat-color($mat-dark-pink, B40) !important;
1175
+ }
1176
+
1177
+ .fill-purple-B40 {
1178
+ fill: mat-color($mat-dark-purple, B40) !important;
1179
+ }
1180
+
1181
+ .fill-deep-purple-B40 {
1182
+ fill: mat-color($mat-dark-deep-purple, B40) !important;
1183
+ }
1184
+
1185
+ .fill-indigo-B40 {
1186
+ fill: mat-color($mat-dark-indigo, B40) !important;
1187
+ }
1188
+
1189
+ .fill-blue-B40 {
1190
+ fill: mat-color($mat-dark-blue, B40) !important;
1191
+ }
1192
+
1193
+ .fill-light-blue-B40 {
1194
+ fill: mat-color($mat-dark-light-blue, B40) !important;
1195
+ }
1196
+
1197
+ .fill-cyan-B40 {
1198
+ fill: mat-color($mat-dark-cyan, B40) !important;
1199
+ }
1200
+
1201
+ .fill-teal-B40 {
1202
+ fill: mat-color($mat-dark-teal, B40) !important;
1203
+ }
1204
+
1205
+ .fill-green-B40 {
1206
+ fill: mat-color($mat-dark-green, B40) !important;
1207
+ }
1208
+
1209
+ .fill-light-green-B40 {
1210
+ fill: mat-color($mat-dark-light-green, B40) !important;
1211
+ }
1212
+
1213
+ .fill-lime-B40 {
1214
+ fill: mat-color($mat-dark-lime, B40) !important;
1215
+ }
1216
+
1217
+ .fill-yellow-B40 {
1218
+ fill: mat-color($mat-dark-yellow, B40) !important;
1219
+ }
1220
+
1221
+ .fill-amber-B40 {
1222
+ fill: mat-color($mat-dark-amber, B40) !important;
1223
+ }
1224
+
1225
+ .fill-orange-B40 {
1226
+ fill: mat-color($mat-dark-orange, B40) !important;
1227
+ }
1228
+
1229
+ .fill-deep-orange-B40 {
1230
+ fill: mat-color($mat-dark-deep-orange, B40) !important;
1231
+ }
1232
+
1233
+ .fill-brown-B40 {
1234
+ fill: mat-color($mat-dark-brown, B40) !important;
1235
+ }
1236
+
1237
+ .fill-grey-B40 {
1238
+ fill: mat-color($mat-dark-grey, B40) !important;
1239
+ }
1240
+
1241
+ .fill-blue-grey-B40 {
1242
+ fill: mat-color($mat-dark-blue-grey, B40) !important;
1243
+ }
1244
+
1245
+ // B30
1246
+ .fill-red-B30 {
1247
+ fill: mat-color($mat-dark-red, B30) !important;
1248
+ }
1249
+
1250
+ .fill-pink-B30 {
1251
+ fill: mat-color($mat-dark-pink, B30) !important;
1252
+ }
1253
+
1254
+ .fill-purple-B30 {
1255
+ fill: mat-color($mat-dark-purple, B30) !important;
1256
+ }
1257
+
1258
+ .fill-deep-purple-B30 {
1259
+ fill: mat-color($mat-dark-deep-purple, B30) !important;
1260
+ }
1261
+
1262
+ .fill-indigo-B30 {
1263
+ fill: mat-color($mat-dark-indigo, B30) !important;
1264
+ }
1265
+
1266
+ .fill-blue-B30 {
1267
+ fill: mat-color($mat-dark-blue, B30) !important;
1268
+ }
1269
+
1270
+ .fill-light-blue-B30 {
1271
+ fill: mat-color($mat-dark-light-blue, B30) !important;
1272
+ }
1273
+
1274
+ .fill-cyan-B30 {
1275
+ fill: mat-color($mat-dark-cyan, B30) !important;
1276
+ }
1277
+
1278
+ .fill-teal-B30 {
1279
+ fill: mat-color($mat-dark-teal, B30) !important;
1280
+ }
1281
+
1282
+ .fill-green-B30 {
1283
+ fill: mat-color($mat-dark-green, B30) !important;
1284
+ }
1285
+
1286
+ .fill-light-green-B30 {
1287
+ fill: mat-color($mat-dark-light-green, B30) !important;
1288
+ }
1289
+
1290
+ .fill-lime-B30 {
1291
+ fill: mat-color($mat-dark-lime, B30) !important;
1292
+ }
1293
+
1294
+ .fill-yellow-B30 {
1295
+ fill: mat-color($mat-dark-yellow, B30) !important;
1296
+ }
1297
+
1298
+ .fill-amber-B30 {
1299
+ fill: mat-color($mat-dark-amber, B30) !important;
1300
+ }
1301
+
1302
+ .fill-orange-B30 {
1303
+ fill: mat-color($mat-dark-orange, B30) !important;
1304
+ }
1305
+
1306
+ .fill-deep-orange-B30 {
1307
+ fill: mat-color($mat-dark-deep-orange, B30) !important;
1308
+ }
1309
+
1310
+ .fill-brown-B30 {
1311
+ fill: mat-color($mat-dark-brown, B30) !important;
1312
+ }
1313
+
1314
+ .fill-grey-B30 {
1315
+ fill: mat-color($mat-dark-grey, B30) !important;
1316
+ }
1317
+
1318
+ .fill-blue-grey-B30 {
1319
+ fill: mat-color($mat-dark-blue-grey, B30) !important;
1320
+ }
1321
+
1322
+ // B15
1323
+ .fill-red-B15 {
1324
+ fill: mat-color($mat-dark-red, B15) !important;
1325
+ }
1326
+
1327
+ .fill-pink-B15 {
1328
+ fill: mat-color($mat-dark-pink, B15) !important;
1329
+ }
1330
+
1331
+ .fill-purple-B15 {
1332
+ fill: mat-color($mat-dark-purple, B15) !important;
1333
+ }
1334
+
1335
+ .fill-deep-purple-B15 {
1336
+ fill: mat-color($mat-dark-deep-purple, B15) !important;
1337
+ }
1338
+
1339
+ .fill-indigo-B15 {
1340
+ fill: mat-color($mat-dark-indigo, B15) !important;
1341
+ }
1342
+
1343
+ .fill-blue-B15 {
1344
+ fill: mat-color($mat-dark-blue, B15) !important;
1345
+ }
1346
+
1347
+ .fill-light-blue-B15 {
1348
+ fill: mat-color($mat-dark-light-blue, B15) !important;
1349
+ }
1350
+
1351
+ .fill-cyan-B15 {
1352
+ fill: mat-color($mat-dark-cyan, B15) !important;
1353
+ }
1354
+
1355
+ .fill-teal-B15 {
1356
+ fill: mat-color($mat-dark-teal, B15) !important;
1357
+ }
1358
+
1359
+ .fill-green-B15 {
1360
+ fill: mat-color($mat-dark-green, B15) !important;
1361
+ }
1362
+
1363
+ .fill-light-green-B15 {
1364
+ fill: mat-color($mat-dark-light-green, B15) !important;
1365
+ }
1366
+
1367
+ .fill-lime-B15 {
1368
+ fill: mat-color($mat-dark-lime, B15) !important;
1369
+ }
1370
+
1371
+ .fill-yellow-B15 {
1372
+ fill: mat-color($mat-dark-yellow, B15) !important;
1373
+ }
1374
+
1375
+ .fill-amber-B15 {
1376
+ fill: mat-color($mat-dark-amber, B15) !important;
1377
+ }
1378
+
1379
+ .fill-orange-B15 {
1380
+ fill: mat-color($mat-dark-orange, B15) !important;
1381
+ }
1382
+
1383
+ .fill-deep-orange-B15 {
1384
+ fill: mat-color($mat-dark-deep-orange, B15) !important;
1385
+ }
1386
+
1387
+ .fill-brown-B15 {
1388
+ fill: mat-color($mat-dark-brown, B15) !important;
1389
+ }
1390
+
1391
+ .fill-grey-B15 {
1392
+ fill: mat-color($mat-dark-grey, B15) !important;
1393
+ }
1394
+
1395
+ .fill-blue-grey-B15 {
1396
+ fill: mat-color($mat-dark-blue-grey, B15) !important;
1397
+ }
1398
+ }
1399
+ /* stylelint-enable selector-class-pattern */