@covalent/core 4.0.0 → 4.1.0-develop.2

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 (613) hide show
  1. package/README.md +5 -4
  2. package/breadcrumbs/README.md +21 -17
  3. package/breadcrumbs/breadcrumb/breadcrumb.component.d.ts +6 -1
  4. package/breadcrumbs/breadcrumbs.component.d.ts +4 -0
  5. package/breadcrumbs/breadcrumbs.module.d.ts +8 -0
  6. package/breadcrumbs/covalent-core-breadcrumbs.d.ts +2 -1
  7. package/breadcrumbs/package.json +6 -7
  8. package/breadcrumbs/{public-api.d.ts → public_api.d.ts} +0 -0
  9. package/common/README.md +3 -0
  10. package/common/_common-theme.scss +3 -1
  11. package/common/behaviors/disable-ripple.mixin.d.ts +1 -1
  12. package/common/behaviors/disabled.mixin.d.ts +1 -1
  13. package/common/common.module.d.ts +15 -0
  14. package/common/covalent-core-common.d.ts +2 -3
  15. package/common/directives/fullscreen/fullscreen.directive.d.ts +3 -0
  16. package/common/forms/auto-trim/auto-trim.directive.d.ts +3 -0
  17. package/common/package.json +6 -7
  18. package/common/pipes/bytes/bytes.pipe.d.ts +3 -0
  19. package/common/pipes/decimal-bytes/decimal-bytes.pipe.d.ts +3 -0
  20. package/common/pipes/digits/digits.pipe.d.ts +3 -0
  21. package/common/pipes/time-ago/time-ago.pipe.d.ts +3 -0
  22. package/common/pipes/time-difference/time-difference.pipe.d.ts +3 -0
  23. package/common/pipes/time-until/time-until.pipe.d.ts +3 -0
  24. package/common/pipes/truncate/truncate.pipe.d.ts +4 -1
  25. package/common/{public-api.d.ts → public_api.d.ts} +0 -0
  26. package/common/services/icon.service.d.ts +3 -0
  27. package/common/services/router-path.service.d.ts +3 -0
  28. package/common/styles/font/README.md +4 -2
  29. package/covalent-core.d.ts +2 -1
  30. package/dialogs/README.md +38 -30
  31. package/dialogs/_dialog-theme.scss +1 -0
  32. package/dialogs/alert-dialog/alert-dialog.component.d.ts +6 -3
  33. package/dialogs/confirm-dialog/confirm-dialog.component.d.ts +5 -2
  34. package/dialogs/covalent-core-dialogs.d.ts +2 -2
  35. package/dialogs/dialog.component.d.ts +9 -0
  36. package/dialogs/dialogs.module.d.ts +17 -0
  37. package/dialogs/package.json +6 -7
  38. package/dialogs/prompt-dialog/prompt-dialog.component.d.ts +6 -3
  39. package/dialogs/{public-api.d.ts → public_api.d.ts} +1 -0
  40. package/dialogs/services/dialog.service.d.ts +3 -0
  41. package/dialogs/src/README.md +223 -0
  42. package/dialogs/window-dialog/window-dialog.component.d.ts +8 -5
  43. package/dynamic-menu/README.md +6 -6
  44. package/dynamic-menu/covalent-core-dynamic-menu.d.ts +2 -2
  45. package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.d.ts +4 -1
  46. package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.d.ts +4 -1
  47. package/dynamic-menu/dynamic-menu.component.d.ts +4 -22
  48. package/dynamic-menu/dynamic-menu.menu.d.ts +22 -0
  49. package/dynamic-menu/dynamic-menu.module.d.ts +13 -0
  50. package/dynamic-menu/package.json +6 -7
  51. package/dynamic-menu/public_api.d.ts +2 -0
  52. package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +92 -0
  53. package/esm2020/breadcrumbs/breadcrumbs.component.mjs +134 -0
  54. package/esm2020/breadcrumbs/breadcrumbs.module.mjs +20 -0
  55. package/esm2020/breadcrumbs/covalent-core-breadcrumbs.mjs +5 -0
  56. package/esm2020/breadcrumbs/public_api.mjs +4 -0
  57. package/esm2020/common/animations/bounce/bounce.animation.mjs +70 -0
  58. package/esm2020/common/animations/collapse/collapse.animation.mjs +51 -0
  59. package/esm2020/common/animations/common/interfaces.mjs +2 -0
  60. package/esm2020/common/animations/fade/fadeInOut.animation.mjs +37 -0
  61. package/esm2020/common/animations/flash/flash.animation.mjs +34 -0
  62. package/esm2020/common/animations/headshake/headshake.animation.mjs +47 -0
  63. package/esm2020/common/animations/jello/jello.animation.mjs +59 -0
  64. package/esm2020/common/animations/pulse/pulse.animation.mjs +32 -0
  65. package/esm2020/common/animations/rotate/rotate.animation.mjs +30 -0
  66. package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +41 -0
  67. package/esm2020/common/behaviors/disable-ripple.mixin.mjs +24 -0
  68. package/esm2020/common/behaviors/disabled.mixin.mjs +24 -0
  69. package/esm2020/common/common.module.mjs +63 -0
  70. package/esm2020/common/covalent-core-common.mjs +5 -0
  71. package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +85 -0
  72. package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +36 -0
  73. package/esm2020/common/forms/validators/validators.mjs +29 -0
  74. package/esm2020/common/functions/clipboard.mjs +23 -0
  75. package/esm2020/common/functions/convert.mjs +84 -0
  76. package/esm2020/common/functions/download.mjs +75 -0
  77. package/esm2020/common/functions/file.mjs +16 -0
  78. package/esm2020/common/pipes/bytes/bytes.pipe.mjs +42 -0
  79. package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +42 -0
  80. package/esm2020/common/pipes/digits/digits.pipe.mjs +39 -0
  81. package/esm2020/common/pipes/time-ago/time-ago.pipe.mjs +72 -0
  82. package/esm2020/common/pipes/time-difference/time-difference.pipe.mjs +51 -0
  83. package/esm2020/common/pipes/time-until/time-until.pipe.mjs +72 -0
  84. package/esm2020/common/pipes/truncate/truncate.pipe.mjs +27 -0
  85. package/esm2020/common/public_api.mjs +39 -0
  86. package/esm2020/common/services/icon.service.mjs +1089 -0
  87. package/esm2020/common/services/router-path.service.mjs +29 -0
  88. package/esm2020/covalent-core.mjs +5 -0
  89. package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +23 -0
  90. package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +28 -0
  91. package/esm2020/dialogs/covalent-core-dialogs.mjs +5 -0
  92. package/esm2020/dialogs/dialog.component.mjs +56 -0
  93. package/esm2020/dialogs/dialogs.module.mjs +89 -0
  94. package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +46 -0
  95. package/esm2020/dialogs/public_api.mjs +9 -0
  96. package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +216 -0
  97. package/esm2020/dialogs/services/dialog.service.mjs +171 -0
  98. package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +38 -0
  99. package/esm2020/dynamic-menu/covalent-core-dynamic-menu.mjs +5 -0
  100. package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +30 -0
  101. package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +24 -0
  102. package/esm2020/dynamic-menu/dynamic-menu.component.mjs +28 -0
  103. package/esm2020/dynamic-menu/dynamic-menu.menu.mjs +2 -0
  104. package/esm2020/dynamic-menu/dynamic-menu.module.mjs +57 -0
  105. package/esm2020/dynamic-menu/public_api.mjs +6 -0
  106. package/esm2020/file/covalent-core-file.mjs +5 -0
  107. package/esm2020/file/directives/file-drop.directive.mjs +147 -0
  108. package/esm2020/file/directives/file-select.directive.mjs +77 -0
  109. package/esm2020/file/file-input/file-input.component.mjs +110 -0
  110. package/esm2020/file/file-upload/file-upload.component.mjs +174 -0
  111. package/esm2020/file/file.module.mjs +58 -0
  112. package/esm2020/file/public_api.mjs +7 -0
  113. package/esm2020/file/services/file.service.mjs +64 -0
  114. package/esm2020/json-formatter/collapse.animation.mjs +51 -0
  115. package/esm2020/json-formatter/covalent-core-json-formatter.mjs +5 -0
  116. package/esm2020/json-formatter/json-formatter.component.mjs +217 -0
  117. package/esm2020/json-formatter/json-formatter.module.mjs +20 -0
  118. package/esm2020/json-formatter/public_api.mjs +3 -0
  119. package/esm2020/layout/covalent-core-layout.mjs +5 -0
  120. package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +40 -0
  121. package/esm2020/layout/layout-footer/layout-footer.component.mjs +33 -0
  122. package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +93 -0
  123. package/esm2020/layout/layout-manage-list/layout-manage-list.directives.mjs +84 -0
  124. package/esm2020/layout/layout-nav/layout-nav.component.mjs +50 -0
  125. package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +128 -0
  126. package/esm2020/layout/layout-nav-list/layout-nav-list.directives.mjs +84 -0
  127. package/esm2020/layout/layout-toggle.class.mjs +92 -0
  128. package/esm2020/layout/layout.component.mjs +92 -0
  129. package/esm2020/layout/layout.directives.mjs +85 -0
  130. package/esm2020/layout/layout.module.mjs +117 -0
  131. package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +161 -0
  132. package/esm2020/layout/public_api.mjs +13 -0
  133. package/esm2020/menu/covalent-core-menu.mjs +5 -0
  134. package/esm2020/menu/menu.component.mjs +12 -0
  135. package/esm2020/menu/menu.module.mjs +21 -0
  136. package/esm2020/menu/public_api.mjs +3 -0
  137. package/esm2020/message/collapse.animation.mjs +51 -0
  138. package/esm2020/message/covalent-core-message.mjs +5 -0
  139. package/esm2020/message/message.component.mjs +203 -0
  140. package/esm2020/message/message.module.mjs +25 -0
  141. package/esm2020/message/public_api.mjs +3 -0
  142. package/esm2020/public_api.mjs +2 -0
  143. package/esm2020/search/covalent-core-search.mjs +5 -0
  144. package/esm2020/search/public_api.mjs +4 -0
  145. package/esm2020/search/search-box/search-box.component.mjs +194 -0
  146. package/esm2020/search/search-input/search-input.component.mjs +203 -0
  147. package/esm2020/search/search.module.mjs +39 -0
  148. package/esm2020/side-sheet/covalent-core-side-sheet.mjs +5 -0
  149. package/esm2020/side-sheet/public_api.mjs +6 -0
  150. package/esm2020/side-sheet/side-sheet-container.mjs +274 -0
  151. package/esm2020/side-sheet/side-sheet-ref.mjs +21 -0
  152. package/esm2020/side-sheet/side-sheet.animation.mjs +12 -0
  153. package/esm2020/side-sheet/side-sheet.config.mjs +4 -0
  154. package/esm2020/side-sheet/side-sheet.content-directives.mjs +201 -0
  155. package/esm2020/side-sheet/side-sheet.mjs +221 -0
  156. package/esm2020/side-sheet/side-sheet.module.mjs +45 -0
  157. package/esm2020/user-profile/covalent-core-user-profile.mjs +5 -0
  158. package/esm2020/user-profile/public_api.mjs +4 -0
  159. package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +24 -0
  160. package/esm2020/user-profile/user-profile.component.mjs +19 -0
  161. package/esm2020/user-profile/user-profile.module.mjs +44 -0
  162. package/fesm2015/covalent-core-breadcrumbs.mjs +246 -0
  163. package/fesm2015/covalent-core-breadcrumbs.mjs.map +1 -0
  164. package/fesm2015/covalent-core-common.mjs +2281 -0
  165. package/fesm2015/covalent-core-common.mjs.map +1 -0
  166. package/fesm2015/covalent-core-dialogs.mjs +639 -0
  167. package/fesm2015/covalent-core-dialogs.mjs.map +1 -0
  168. package/fesm2015/covalent-core-dynamic-menu.mjs +128 -0
  169. package/fesm2015/covalent-core-dynamic-menu.mjs.map +1 -0
  170. package/fesm2015/covalent-core-file.mjs +613 -0
  171. package/fesm2015/covalent-core-file.mjs.map +1 -0
  172. package/fesm2015/covalent-core-json-formatter.mjs +298 -0
  173. package/fesm2015/covalent-core-json-formatter.mjs.map +1 -0
  174. package/fesm2015/covalent-core-layout.mjs +1024 -0
  175. package/fesm2015/covalent-core-layout.mjs.map +1 -0
  176. package/fesm2015/covalent-core-menu.mjs +37 -0
  177. package/fesm2015/covalent-core-menu.mjs.map +1 -0
  178. package/fesm2015/covalent-core-message.mjs +284 -0
  179. package/fesm2015/covalent-core-message.mjs.map +1 -0
  180. package/fesm2015/covalent-core-search.mjs +428 -0
  181. package/fesm2015/covalent-core-search.mjs.map +1 -0
  182. package/fesm2015/covalent-core-side-sheet.mjs +762 -0
  183. package/fesm2015/covalent-core-side-sheet.mjs.map +1 -0
  184. package/fesm2015/covalent-core-user-profile.mjs +86 -0
  185. package/fesm2015/covalent-core-user-profile.mjs.map +1 -0
  186. package/fesm2015/covalent-core.mjs +4 -0
  187. package/fesm2015/covalent-core.mjs.map +1 -0
  188. package/fesm2020/covalent-core-breadcrumbs.mjs +246 -0
  189. package/fesm2020/covalent-core-breadcrumbs.mjs.map +1 -0
  190. package/{fesm2015/covalent-core-common.js → fesm2020/covalent-core-common.mjs} +317 -813
  191. package/fesm2020/covalent-core-common.mjs.map +1 -0
  192. package/fesm2020/covalent-core-dialogs.mjs +634 -0
  193. package/fesm2020/covalent-core-dialogs.mjs.map +1 -0
  194. package/fesm2020/covalent-core-dynamic-menu.mjs +128 -0
  195. package/fesm2020/covalent-core-dynamic-menu.mjs.map +1 -0
  196. package/fesm2020/covalent-core-file.mjs +607 -0
  197. package/fesm2020/covalent-core-file.mjs.map +1 -0
  198. package/fesm2020/covalent-core-json-formatter.mjs +290 -0
  199. package/fesm2020/covalent-core-json-formatter.mjs.map +1 -0
  200. package/fesm2020/covalent-core-layout.mjs +1000 -0
  201. package/fesm2020/covalent-core-layout.mjs.map +1 -0
  202. package/fesm2020/covalent-core-menu.mjs +37 -0
  203. package/fesm2020/covalent-core-menu.mjs.map +1 -0
  204. package/fesm2020/covalent-core-message.mjs +282 -0
  205. package/fesm2020/covalent-core-message.mjs.map +1 -0
  206. package/fesm2020/covalent-core-search.mjs +425 -0
  207. package/fesm2020/covalent-core-search.mjs.map +1 -0
  208. package/fesm2020/covalent-core-side-sheet.mjs +757 -0
  209. package/fesm2020/covalent-core-side-sheet.mjs.map +1 -0
  210. package/fesm2020/covalent-core-user-profile.mjs +86 -0
  211. package/fesm2020/covalent-core-user-profile.mjs.map +1 -0
  212. package/fesm2020/covalent-core.mjs +4 -0
  213. package/fesm2020/covalent-core.mjs.map +1 -0
  214. package/file/_file-theme.scss +3 -1
  215. package/file/covalent-core-file.d.ts +2 -1
  216. package/file/directives/file-drop.directive.d.ts +8 -6
  217. package/file/directives/file-select.directive.d.ts +5 -2
  218. package/file/file-input/file-input.component.d.ts +10 -5
  219. package/file/file-upload/file-upload.component.d.ts +18 -8
  220. package/file/file.module.d.ts +13 -0
  221. package/file/package.json +6 -7
  222. package/file/{public-api.d.ts → public_api.d.ts} +0 -0
  223. package/file/services/file.service.d.ts +3 -0
  224. package/file/{file-input → src/file-input}/README.md +46 -37
  225. package/file/{file-upload → src/file-upload}/README.md +36 -27
  226. package/json-formatter/README.md +8 -8
  227. package/json-formatter/_json-formatter-theme.scss +10 -0
  228. package/json-formatter/collapse.animation.d.ts +24 -0
  229. package/json-formatter/covalent-core-json-formatter.d.ts +2 -1
  230. package/json-formatter/json-formatter.component.d.ts +7 -4
  231. package/json-formatter/json-formatter.module.d.ts +8 -0
  232. package/json-formatter/package.json +6 -7
  233. package/json-formatter/{public-api.d.ts → public_api.d.ts} +0 -0
  234. package/layout/README.md +48 -50
  235. package/layout/_layout-theme.scss +12 -0
  236. package/layout/covalent-core-layout.d.ts +2 -1
  237. package/layout/layout-card-over/layout-card-over.component.d.ts +6 -3
  238. package/layout/layout-footer/layout-footer.component.d.ts +6 -3
  239. package/layout/layout-manage-list/layout-manage-list.component.d.ts +7 -4
  240. package/layout/layout-manage-list/layout-manage-list.directives.d.ts +9 -2
  241. package/layout/layout-nav/layout-nav.component.d.ts +8 -5
  242. package/layout/layout-nav-list/layout-nav-list.component.d.ts +12 -9
  243. package/layout/layout-nav-list/layout-nav-list.directives.d.ts +9 -2
  244. package/layout/layout-toggle.class.d.ts +4 -1
  245. package/layout/layout.component.d.ts +7 -4
  246. package/layout/layout.directives.d.ts +9 -2
  247. package/layout/layout.module.d.ts +23 -0
  248. package/layout/navigation-drawer/navigation-drawer.component.d.ts +17 -10
  249. package/layout/package.json +6 -7
  250. package/layout/{public-api.d.ts → public_api.d.ts} +0 -0
  251. package/layout/{layout-card-over → src/layout-card-over}/README.md +19 -17
  252. package/layout/{layout-manage-list → src/layout-manage-list}/README.md +24 -28
  253. package/layout/src/layout-nav/README.md +50 -0
  254. package/layout/{layout-nav-list → src/layout-nav-list}/README.md +44 -40
  255. package/menu/covalent-core-menu.d.ts +2 -1
  256. package/menu/menu.component.d.ts +3 -0
  257. package/menu/menu.module.d.ts +8 -0
  258. package/menu/package.json +6 -7
  259. package/menu/{public-api.d.ts → public_api.d.ts} +0 -0
  260. package/message/README.md +26 -18
  261. package/message/_message-theme.scss +3 -0
  262. package/message/collapse.animation.d.ts +24 -0
  263. package/message/covalent-core-message.d.ts +2 -1
  264. package/message/message.component.d.ts +9 -4
  265. package/message/message.module.d.ts +7 -0
  266. package/message/package.json +6 -7
  267. package/message/{public-api.d.ts → public_api.d.ts} +0 -0
  268. package/package.json +129 -37
  269. package/{index.d.ts → public_api.d.ts} +0 -0
  270. package/search/README.md +74 -73
  271. package/search/covalent-core-search.d.ts +2 -1
  272. package/search/package.json +6 -7
  273. package/search/{public-api.d.ts → public_api.d.ts} +0 -0
  274. package/search/search-box/search-box.component.d.ts +12 -5
  275. package/search/search-input/search-input.component.d.ts +12 -5
  276. package/search/search.module.d.ts +11 -0
  277. package/search/src/search-box/README.md +73 -0
  278. package/search/src/search-input/README.md +74 -0
  279. package/side-sheet/README.md +3 -5
  280. package/side-sheet/{side-sheet.theme.scss → _side-sheet.theme.scss} +0 -0
  281. package/side-sheet/covalent-core-side-sheet.d.ts +2 -3
  282. package/side-sheet/package.json +6 -7
  283. package/side-sheet/{public-api.d.ts → public_api.d.ts} +0 -0
  284. package/side-sheet/side-sheet-container.d.ts +21 -5
  285. package/side-sheet/side-sheet.content-directives.d.ts +23 -6
  286. package/side-sheet/side-sheet.d.ts +7 -2
  287. package/side-sheet/side-sheet.module.d.ts +9 -0
  288. package/user-profile/README.md +5 -5
  289. package/user-profile/covalent-core-user-profile.d.ts +2 -1
  290. package/user-profile/package.json +6 -7
  291. package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +5 -2
  292. package/user-profile/user-profile.component.d.ts +5 -2
  293. package/user-profile/user-profile.module.d.ts +12 -0
  294. package/breadcrumbs/breadcrumb/breadcrumb.component.scss +0 -22
  295. package/breadcrumbs/breadcrumbs.component.scss +0 -7
  296. package/breadcrumbs/covalent-core-breadcrumbs.metadata.json +0 -1
  297. package/breadcrumbs/index.d.ts +0 -1
  298. package/bundles/covalent-core-breadcrumbs.umd.js +0 -490
  299. package/bundles/covalent-core-breadcrumbs.umd.js.map +0 -1
  300. package/bundles/covalent-core-breadcrumbs.umd.min.js +0 -2
  301. package/bundles/covalent-core-breadcrumbs.umd.min.js.map +0 -1
  302. package/bundles/covalent-core-common.umd.js +0 -3188
  303. package/bundles/covalent-core-common.umd.js.map +0 -1
  304. package/bundles/covalent-core-common.umd.min.js +0 -17
  305. package/bundles/covalent-core-common.umd.min.js.map +0 -1
  306. package/bundles/covalent-core-dialogs.umd.js +0 -1318
  307. package/bundles/covalent-core-dialogs.umd.js.map +0 -1
  308. package/bundles/covalent-core-dialogs.umd.min.js +0 -2
  309. package/bundles/covalent-core-dialogs.umd.min.js.map +0 -1
  310. package/bundles/covalent-core-dynamic-menu.umd.js +0 -215
  311. package/bundles/covalent-core-dynamic-menu.umd.js.map +0 -1
  312. package/bundles/covalent-core-dynamic-menu.umd.min.js +0 -2
  313. package/bundles/covalent-core-dynamic-menu.umd.min.js.map +0 -1
  314. package/bundles/covalent-core-file.umd.js +0 -1211
  315. package/bundles/covalent-core-file.umd.js.map +0 -1
  316. package/bundles/covalent-core-file.umd.min.js +0 -17
  317. package/bundles/covalent-core-file.umd.min.js.map +0 -1
  318. package/bundles/covalent-core-json-formatter.umd.js +0 -408
  319. package/bundles/covalent-core-json-formatter.umd.js.map +0 -1
  320. package/bundles/covalent-core-json-formatter.umd.min.js +0 -2
  321. package/bundles/covalent-core-json-formatter.umd.min.js.map +0 -1
  322. package/bundles/covalent-core-layout.umd.js +0 -2084
  323. package/bundles/covalent-core-layout.umd.js.map +0 -1
  324. package/bundles/covalent-core-layout.umd.min.js +0 -17
  325. package/bundles/covalent-core-layout.umd.min.js.map +0 -1
  326. package/bundles/covalent-core-menu.umd.js +0 -69
  327. package/bundles/covalent-core-menu.umd.js.map +0 -1
  328. package/bundles/covalent-core-menu.umd.min.js +0 -2
  329. package/bundles/covalent-core-menu.umd.min.js.map +0 -1
  330. package/bundles/covalent-core-message.umd.js +0 -375
  331. package/bundles/covalent-core-message.umd.js.map +0 -1
  332. package/bundles/covalent-core-message.umd.min.js +0 -2
  333. package/bundles/covalent-core-message.umd.min.js.map +0 -1
  334. package/bundles/covalent-core-search.umd.js +0 -877
  335. package/bundles/covalent-core-search.umd.js.map +0 -1
  336. package/bundles/covalent-core-search.umd.min.js +0 -16
  337. package/bundles/covalent-core-search.umd.min.js.map +0 -1
  338. package/bundles/covalent-core-side-sheet.umd.js +0 -1458
  339. package/bundles/covalent-core-side-sheet.umd.js.map +0 -1
  340. package/bundles/covalent-core-side-sheet.umd.min.js +0 -16
  341. package/bundles/covalent-core-side-sheet.umd.min.js.map +0 -1
  342. package/bundles/covalent-core-user-profile.umd.js +0 -116
  343. package/bundles/covalent-core-user-profile.umd.js.map +0 -1
  344. package/bundles/covalent-core-user-profile.umd.min.js +0 -2
  345. package/bundles/covalent-core-user-profile.umd.min.js.map +0 -1
  346. package/bundles/covalent-core.umd.js +0 -9
  347. package/bundles/covalent-core.umd.js.map +0 -1
  348. package/bundles/covalent-core.umd.min.js +0 -2
  349. package/bundles/covalent-core.umd.min.js.map +0 -1
  350. package/common/covalent-core-common.metadata.json +0 -1
  351. package/common/index.d.ts +0 -1
  352. package/common/material-icons.css +0 -98
  353. package/common/material-icons.css.map +0 -1
  354. package/common/material-icons.scss +0 -3
  355. package/common/platform.css +0 -15424
  356. package/common/platform.css.map +0 -1
  357. package/common/platform.scss +0 -7
  358. package/common/styles/_elevation.scss +0 -280
  359. package/common/styles/_layout.scss +0 -603
  360. package/common/styles/_palette-dark.scss +0 -326
  361. package/common/styles/_palette-light.scss +0 -637
  362. package/common/styles/_rtl.scss +0 -28
  363. package/common/styles/_styles.scss +0 -10
  364. package/common/styles/_theme-functions.scss +0 -25
  365. package/common/styles/_typography-functions.scss +0 -35
  366. package/common/styles/_variables.scss +0 -98
  367. package/common/styles/colors/_colors-dark.scss +0 -1072
  368. package/common/styles/colors/_colors-light.scss +0 -2487
  369. package/common/styles/colors/_colors.scss +0 -7
  370. package/common/styles/core/_button.scss +0 -59
  371. package/common/styles/core/_card.scss +0 -164
  372. package/common/styles/core/_content.scss +0 -42
  373. package/common/styles/core/_core.scss +0 -23
  374. package/common/styles/core/_divider.scss +0 -15
  375. package/common/styles/core/_icons.scss +0 -20
  376. package/common/styles/core/_list.scss +0 -8
  377. package/common/styles/core/_sidenav.scss +0 -20
  378. package/common/styles/core/_structure.scss +0 -128
  379. package/common/styles/core/_toolbar.scss +0 -46
  380. package/common/styles/core/_whiteframe.scss +0 -130
  381. package/common/styles/font/MaterialIcons-Regular-v48.woff2 +0 -0
  382. package/common/styles/font/_font.scss +0 -93
  383. package/common/styles/utilities/_general.scss +0 -51
  384. package/common/styles/utilities/_pad.scss +0 -36
  385. package/common/styles/utilities/_pull.scss +0 -36
  386. package/common/styles/utilities/_push.scss +0 -36
  387. package/common/styles/utilities/_size.scss +0 -24
  388. package/common/styles/utilities/_text.scss +0 -84
  389. package/common/styles/utilities/_utilities.scss +0 -15
  390. package/covalent-core.metadata.json +0 -1
  391. package/dialogs/alert-dialog/alert-dialog.component.scss +0 -3
  392. package/dialogs/confirm-dialog/confirm-dialog.component.scss +0 -3
  393. package/dialogs/covalent-core-dialogs.metadata.json +0 -1
  394. package/dialogs/dialog.component.scss +0 -44
  395. package/dialogs/index.d.ts +0 -1
  396. package/dialogs/prompt-dialog/prompt-dialog.component.scss +0 -15
  397. package/dialogs/window-dialog/window-dialog.component.scss +0 -31
  398. package/dynamic-menu/covalent-core-dynamic-menu.metadata.json +0 -1
  399. package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.scss +0 -6
  400. package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.scss +0 -11
  401. package/dynamic-menu/dynamic-menu.component.scss +0 -0
  402. package/dynamic-menu/index.d.ts +0 -1
  403. package/esm2015/breadcrumbs/breadcrumb/breadcrumb.component.js +0 -171
  404. package/esm2015/breadcrumbs/breadcrumbs.component.js +0 -241
  405. package/esm2015/breadcrumbs/breadcrumbs.module.js +0 -20
  406. package/esm2015/breadcrumbs/covalent-core-breadcrumbs.js +0 -10
  407. package/esm2015/breadcrumbs/index.js +0 -7
  408. package/esm2015/breadcrumbs/public-api.js +0 -9
  409. package/esm2015/common/animations/bounce/bounce.animation.js +0 -76
  410. package/esm2015/common/animations/collapse/collapse.animation.js +0 -67
  411. package/esm2015/common/animations/common/interfaces.js +0 -18
  412. package/esm2015/common/animations/fade/fadeInOut.animation.js +0 -53
  413. package/esm2015/common/animations/flash/flash.animation.js +0 -40
  414. package/esm2015/common/animations/headshake/headshake.animation.js +0 -41
  415. package/esm2015/common/animations/jello/jello.animation.js +0 -44
  416. package/esm2015/common/animations/pulse/pulse.animation.js +0 -38
  417. package/esm2015/common/animations/rotate/rotate.animation.js +0 -41
  418. package/esm2015/common/behaviors/control-value-accesor.mixin.js +0 -107
  419. package/esm2015/common/behaviors/disable-ripple.mixin.js +0 -63
  420. package/esm2015/common/behaviors/disabled.mixin.js +0 -63
  421. package/esm2015/common/common.module.js +0 -54
  422. package/esm2015/common/covalent-core-common.js +0 -12
  423. package/esm2015/common/directives/fullscreen/fullscreen.directive.js +0 -180
  424. package/esm2015/common/forms/auto-trim/auto-trim.directive.js +0 -46
  425. package/esm2015/common/forms/validators/validators.js +0 -58
  426. package/esm2015/common/functions/clipboard.js +0 -30
  427. package/esm2015/common/functions/convert.js +0 -103
  428. package/esm2015/common/functions/download.js +0 -88
  429. package/esm2015/common/functions/file.js +0 -29
  430. package/esm2015/common/index.js +0 -7
  431. package/esm2015/common/pipes/bytes/bytes.pipe.js +0 -41
  432. package/esm2015/common/pipes/decimal-bytes/decimal-bytes.pipe.js +0 -41
  433. package/esm2015/common/pipes/digits/digits.pipe.js +0 -65
  434. package/esm2015/common/pipes/time-ago/time-ago.pipe.js +0 -81
  435. package/esm2015/common/pipes/time-difference/time-difference.pipe.js +0 -66
  436. package/esm2015/common/pipes/time-until/time-until.pipe.js +0 -81
  437. package/esm2015/common/pipes/truncate/truncate.pipe.js +0 -34
  438. package/esm2015/common/public-api.js +0 -44
  439. package/esm2015/common/services/icon.service.js +0 -1109
  440. package/esm2015/common/services/router-path.service.js +0 -60
  441. package/esm2015/covalent-core.js +0 -10
  442. package/esm2015/dialogs/alert-dialog/alert-dialog.component.js +0 -47
  443. package/esm2015/dialogs/confirm-dialog/confirm-dialog.component.js +0 -59
  444. package/esm2015/dialogs/covalent-core-dialogs.js +0 -11
  445. package/esm2015/dialogs/dialog.component.js +0 -58
  446. package/esm2015/dialogs/dialogs.module.js +0 -57
  447. package/esm2015/dialogs/index.js +0 -7
  448. package/esm2015/dialogs/prompt-dialog/prompt-dialog.component.js +0 -83
  449. package/esm2015/dialogs/public-api.js +0 -13
  450. package/esm2015/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.js +0 -325
  451. package/esm2015/dialogs/services/dialog.service.js +0 -316
  452. package/esm2015/dialogs/window-dialog/window-dialog.component.js +0 -56
  453. package/esm2015/dynamic-menu/covalent-core-dynamic-menu.js +0 -11
  454. package/esm2015/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.js +0 -40
  455. package/esm2015/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.js +0 -35
  456. package/esm2015/dynamic-menu/dynamic-menu.component.js +0 -89
  457. package/esm2015/dynamic-menu/dynamic-menu.module.js +0 -26
  458. package/esm2015/dynamic-menu/index.js +0 -7
  459. package/esm2015/dynamic-menu/public_api.js +0 -9
  460. package/esm2015/file/covalent-core-file.js +0 -10
  461. package/esm2015/file/directives/file-drop.directive.js +0 -191
  462. package/esm2015/file/directives/file-select.directive.js +0 -98
  463. package/esm2015/file/file-input/file-input.component.js +0 -186
  464. package/esm2015/file/file-upload/file-upload.component.js +0 -237
  465. package/esm2015/file/file.module.js +0 -35
  466. package/esm2015/file/index.js +0 -7
  467. package/esm2015/file/public-api.js +0 -12
  468. package/esm2015/file/services/file.service.js +0 -109
  469. package/esm2015/index.js +0 -7
  470. package/esm2015/json-formatter/covalent-core-json-formatter.js +0 -10
  471. package/esm2015/json-formatter/index.js +0 -7
  472. package/esm2015/json-formatter/json-formatter.component.js +0 -338
  473. package/esm2015/json-formatter/json-formatter.module.js +0 -20
  474. package/esm2015/json-formatter/public-api.js +0 -8
  475. package/esm2015/layout/covalent-core-layout.js +0 -10
  476. package/esm2015/layout/index.js +0 -7
  477. package/esm2015/layout/layout-card-over/layout-card-over.component.js +0 -71
  478. package/esm2015/layout/layout-footer/layout-footer.component.js +0 -71
  479. package/esm2015/layout/layout-manage-list/layout-manage-list.component.js +0 -145
  480. package/esm2015/layout/layout-manage-list/layout-manage-list.directives.js +0 -132
  481. package/esm2015/layout/layout-nav/layout-nav.component.js +0 -100
  482. package/esm2015/layout/layout-nav-list/layout-nav-list.component.js +0 -220
  483. package/esm2015/layout/layout-nav-list/layout-nav-list.directives.js +0 -132
  484. package/esm2015/layout/layout-toggle.class.js +0 -188
  485. package/esm2015/layout/layout.component.js +0 -145
  486. package/esm2015/layout/layout.directives.js +0 -129
  487. package/esm2015/layout/layout.module.js +0 -64
  488. package/esm2015/layout/navigation-drawer/navigation-drawer.component.js +0 -280
  489. package/esm2015/layout/public-api.js +0 -18
  490. package/esm2015/menu/covalent-core-menu.js +0 -10
  491. package/esm2015/menu/index.js +0 -7
  492. package/esm2015/menu/menu.component.js +0 -16
  493. package/esm2015/menu/menu.module.js +0 -22
  494. package/esm2015/menu/public-api.js +0 -8
  495. package/esm2015/message/covalent-core-message.js +0 -10
  496. package/esm2015/message/index.js +0 -7
  497. package/esm2015/message/message.component.js +0 -307
  498. package/esm2015/message/message.module.js +0 -21
  499. package/esm2015/message/public-api.js +0 -8
  500. package/esm2015/search/covalent-core-search.js +0 -10
  501. package/esm2015/search/index.js +0 -7
  502. package/esm2015/search/public-api.js +0 -9
  503. package/esm2015/search/search-box/search-box.component.js +0 -270
  504. package/esm2015/search/search-input/search-input.component.js +0 -260
  505. package/esm2015/search/search.module.js +0 -23
  506. package/esm2015/side-sheet/covalent-core-side-sheet.js +0 -12
  507. package/esm2015/side-sheet/index.js +0 -7
  508. package/esm2015/side-sheet/public-api.js +0 -11
  509. package/esm2015/side-sheet/side-sheet-container.js +0 -402
  510. package/esm2015/side-sheet/side-sheet-ref.js +0 -50
  511. package/esm2015/side-sheet/side-sheet.animation.js +0 -20
  512. package/esm2015/side-sheet/side-sheet.config.js +0 -12
  513. package/esm2015/side-sheet/side-sheet.content-directives.js +0 -255
  514. package/esm2015/side-sheet/side-sheet.js +0 -360
  515. package/esm2015/side-sheet/side-sheet.module.js +0 -36
  516. package/esm2015/user-profile/covalent-core-user-profile.js +0 -10
  517. package/esm2015/user-profile/index.js +0 -7
  518. package/esm2015/user-profile/public_api.js +0 -9
  519. package/esm2015/user-profile/user-profile-menu/user-profile-menu.component.js +0 -35
  520. package/esm2015/user-profile/user-profile.component.js +0 -26
  521. package/esm2015/user-profile/user-profile.module.js +0 -25
  522. package/fesm2015/covalent-core-breadcrumbs.js +0 -448
  523. package/fesm2015/covalent-core-breadcrumbs.js.map +0 -1
  524. package/fesm2015/covalent-core-common.js.map +0 -1
  525. package/fesm2015/covalent-core-dialogs.js +0 -1001
  526. package/fesm2015/covalent-core-dialogs.js.map +0 -1
  527. package/fesm2015/covalent-core-dynamic-menu.js +0 -204
  528. package/fesm2015/covalent-core-dynamic-menu.js.map +0 -1
  529. package/fesm2015/covalent-core-file.js +0 -855
  530. package/fesm2015/covalent-core-file.js.map +0 -1
  531. package/fesm2015/covalent-core-json-formatter.js +0 -377
  532. package/fesm2015/covalent-core-json-formatter.js.map +0 -1
  533. package/fesm2015/covalent-core-layout.js +0 -1663
  534. package/fesm2015/covalent-core-layout.js.map +0 -1
  535. package/fesm2015/covalent-core-menu.js +0 -57
  536. package/fesm2015/covalent-core-menu.js.map +0 -1
  537. package/fesm2015/covalent-core-message.js +0 -347
  538. package/fesm2015/covalent-core-message.js.map +0 -1
  539. package/fesm2015/covalent-core-search.js +0 -564
  540. package/fesm2015/covalent-core-search.js.map +0 -1
  541. package/fesm2015/covalent-core-side-sheet.js +0 -1134
  542. package/fesm2015/covalent-core-side-sheet.js.map +0 -1
  543. package/fesm2015/covalent-core-user-profile.js +0 -103
  544. package/fesm2015/covalent-core-user-profile.js.map +0 -1
  545. package/fesm2015/covalent-core.js +0 -12
  546. package/fesm2015/covalent-core.js.map +0 -1
  547. package/file/covalent-core-file.metadata.json +0 -1
  548. package/file/file-input/file-input.component.scss +0 -20
  549. package/file/file-upload/file-upload.component.scss +0 -30
  550. package/file/index.d.ts +0 -1
  551. package/json-formatter/covalent-core-json-formatter.metadata.json +0 -1
  552. package/json-formatter/index.d.ts +0 -1
  553. package/json-formatter/json-formatter.component.scss +0 -61
  554. package/layout/covalent-core-layout.metadata.json +0 -1
  555. package/layout/index.d.ts +0 -1
  556. package/layout/layout-card-over/layout-card-over.component.scss +0 -42
  557. package/layout/layout-footer/layout-footer.component.scss +0 -4
  558. package/layout/layout-manage-list/layout-manage-list.component.scss +0 -78
  559. package/layout/layout-nav/README.md +0 -46
  560. package/layout/layout-nav/layout-nav.component.scss +0 -50
  561. package/layout/layout-nav-list/layout-nav-list.component.scss +0 -110
  562. package/layout/layout.component.scss +0 -20
  563. package/layout/navigation-drawer/navigation-drawer.component.scss +0 -73
  564. package/menu/covalent-core-menu.metadata.json +0 -1
  565. package/menu/index.d.ts +0 -1
  566. package/menu/menu.component.scss +0 -43
  567. package/message/covalent-core-message.metadata.json +0 -1
  568. package/message/index.d.ts +0 -1
  569. package/message/message.component.scss +0 -29
  570. package/schematics/README.md +0 -66
  571. package/schematics/collection.json +0 -11
  572. package/schematics/components.js +0 -111
  573. package/schematics/components.js.map +0 -1
  574. package/schematics/migration.json +0 -10
  575. package/schematics/ng-add/files/theme.scss +0 -64
  576. package/schematics/ng-add/index.js +0 -58
  577. package/schematics/ng-add/index.js.map +0 -1
  578. package/schematics/ng-add/schema.js +0 -3
  579. package/schematics/ng-add/schema.js.map +0 -1
  580. package/schematics/ng-add/schema.json +0 -81
  581. package/schematics/ng-update/index.js +0 -52
  582. package/schematics/ng-update/index.js.map +0 -1
  583. package/schematics/ng-update/target-version.js +0 -8
  584. package/schematics/ng-update/target-version.js.map +0 -1
  585. package/schematics/version-names.js +0 -6
  586. package/schematics/version-names.js.map +0 -1
  587. package/search/covalent-core-search.metadata.json +0 -1
  588. package/search/index.d.ts +0 -1
  589. package/search/search-box/README.md +0 -62
  590. package/search/search-box/search-box.component.scss +0 -32
  591. package/search/search-input/README.md +0 -65
  592. package/search/search-input/search-input.component.scss +0 -63
  593. package/side-sheet/covalent-core-side-sheet.metadata.json +0 -1
  594. package/side-sheet/index.d.ts +0 -1
  595. package/side-sheet/side-sheet.scss +0 -69
  596. package/theming/prebuilt/blue-grey-deep-orange.css +0 -2434
  597. package/theming/prebuilt/blue-grey-deep-orange.css.map +0 -1
  598. package/theming/prebuilt/blue-grey-deep-orange.scss +0 -13
  599. package/theming/prebuilt/blue-orange.css +0 -2434
  600. package/theming/prebuilt/blue-orange.css.map +0 -1
  601. package/theming/prebuilt/blue-orange.scss +0 -13
  602. package/theming/prebuilt/indigo-pink.css +0 -2434
  603. package/theming/prebuilt/indigo-pink.css.map +0 -1
  604. package/theming/prebuilt/indigo-pink.scss +0 -13
  605. package/theming/prebuilt/orange-light-blue.css +0 -2434
  606. package/theming/prebuilt/orange-light-blue.css.map +0 -1
  607. package/theming/prebuilt/orange-light-blue.scss +0 -13
  608. package/theming/prebuilt/teal-orange.css +0 -2434
  609. package/theming/prebuilt/teal-orange.css.map +0 -1
  610. package/theming/prebuilt/teal-orange.scss +0 -13
  611. package/user-profile/covalent-core-user-profile.metadata.json +0 -1
  612. package/user-profile/index.d.ts +0 -1
  613. package/user-profile/user-profile-menu/user-profile-menu.component.scss +0 -38
@@ -1,2487 +0,0 @@
1
- @import '../theme-functions';
2
- @import '../palette-light';
3
-
4
- @mixin td-colors-light() {
5
- // Text color
6
-
7
- // Inherit
8
- .tc-inherit {
9
- color: inherit !important;
10
- }
11
-
12
- // 50
13
- .tc-red-50 {
14
- color: mat-color($mat-red, 50) !important;
15
- }
16
- .tc-pink-50 {
17
- color: mat-color($mat-pink, 50) !important;
18
- }
19
- .tc-purple-50 {
20
- color: mat-color($mat-purple, 50) !important;
21
- }
22
- .tc-deep-purple-50 {
23
- color: mat-color($mat-deep-purple, 50) !important;
24
- }
25
- .tc-indigo-50 {
26
- color: mat-color($mat-indigo, 50) !important;
27
- }
28
- .tc-blue-50 {
29
- color: mat-color($mat-blue, 50) !important;
30
- }
31
- .tc-light-blue-50 {
32
- color: mat-color($mat-light-blue, 50) !important;
33
- }
34
- .tc-cyan-50 {
35
- color: mat-color($mat-cyan, 50) !important;
36
- }
37
- .tc-teal-50 {
38
- color: mat-color($mat-teal, 50) !important;
39
- }
40
- .tc-green-50 {
41
- color: mat-color($mat-green, 50) !important;
42
- }
43
- .tc-light-green-50 {
44
- color: mat-color($mat-light-green, 50) !important;
45
- }
46
- .tc-lime-50 {
47
- color: mat-color($mat-lime, 50) !important;
48
- }
49
- .tc-yellow-50 {
50
- color: mat-color($mat-yellow, 50) !important;
51
- }
52
- .tc-amber-50 {
53
- color: mat-color($mat-amber, 50) !important;
54
- }
55
- .tc-orange-50 {
56
- color: mat-color($mat-orange, 50) !important;
57
- }
58
- .tc-deep-orange-50 {
59
- color: mat-color($mat-deep-orange, 50) !important;
60
- }
61
- .tc-brown-50 {
62
- color: mat-color($mat-brown, 50) !important;
63
- }
64
- .tc-grey-50 {
65
- color: mat-color($mat-grey, 50) !important;
66
- }
67
- .tc-blue-grey-50 {
68
- color: mat-color($mat-blue-grey, 50) !important;
69
- }
70
-
71
- // 100
72
- .tc-red-100 {
73
- color: mat-color($mat-red, 100) !important;
74
- }
75
- .tc-pink-100 {
76
- color: mat-color($mat-pink, 100) !important;
77
- }
78
- .tc-purple-100 {
79
- color: mat-color($mat-purple, 100) !important;
80
- }
81
- .tc-deep-purple-100 {
82
- color: mat-color($mat-deep-purple, 100) !important;
83
- }
84
- .tc-indigo-100 {
85
- color: mat-color($mat-indigo, 100) !important;
86
- }
87
- .tc-blue-100 {
88
- color: mat-color($mat-blue, 100) !important;
89
- }
90
- .tc-light-blue-100 {
91
- color: mat-color($mat-light-blue, 100) !important;
92
- }
93
- .tc-cyan-100 {
94
- color: mat-color($mat-cyan, 100) !important;
95
- }
96
- .tc-teal-100 {
97
- color: mat-color($mat-teal, 100) !important;
98
- }
99
- .tc-green-100 {
100
- color: mat-color($mat-green, 100) !important;
101
- }
102
- .tc-light-green-100 {
103
- color: mat-color($mat-light-green, 100) !important;
104
- }
105
- .tc-lime-100 {
106
- color: mat-color($mat-lime, 100) !important;
107
- }
108
- .tc-yellow-100 {
109
- color: mat-color($mat-yellow, 100) !important;
110
- }
111
- .tc-amber-100 {
112
- color: mat-color($mat-amber, 100) !important;
113
- }
114
- .tc-orange-100 {
115
- color: mat-color($mat-orange, 100) !important;
116
- }
117
- .tc-deep-orange-100 {
118
- color: mat-color($mat-deep-orange, 100) !important;
119
- }
120
- .tc-brown-100 {
121
- color: mat-color($mat-brown, 100) !important;
122
- }
123
- .tc-grey-100 {
124
- color: mat-color($mat-grey, 100) !important;
125
- }
126
- .tc-blue-grey-100 {
127
- color: mat-color($mat-blue-grey, 100) !important;
128
- }
129
-
130
- // 200
131
- .tc-red-200 {
132
- color: mat-color($mat-red, 200) !important;
133
- }
134
- .tc-pink-200 {
135
- color: mat-color($mat-pink, 200) !important;
136
- }
137
- .tc-purple-200 {
138
- color: mat-color($mat-purple, 200) !important;
139
- }
140
- .tc-deep-purple-200 {
141
- color: mat-color($mat-deep-purple, 200) !important;
142
- }
143
- .tc-indigo-200 {
144
- color: mat-color($mat-indigo, 200) !important;
145
- }
146
- .tc-blue-200 {
147
- color: mat-color($mat-blue, 200) !important;
148
- }
149
- .tc-light-blue-200 {
150
- color: mat-color($mat-light-blue, 200) !important;
151
- }
152
- .tc-cyan-200 {
153
- color: mat-color($mat-cyan, 200) !important;
154
- }
155
- .tc-teal-200 {
156
- color: mat-color($mat-teal, 200) !important;
157
- }
158
- .tc-green-200 {
159
- color: mat-color($mat-green, 200) !important;
160
- }
161
- .tc-light-green-200 {
162
- color: mat-color($mat-light-green, 200) !important;
163
- }
164
- .tc-lime-200 {
165
- color: mat-color($mat-lime, 200) !important;
166
- }
167
- .tc-yellow-200 {
168
- color: mat-color($mat-yellow, 200) !important;
169
- }
170
- .tc-amber-200 {
171
- color: mat-color($mat-amber, 200) !important;
172
- }
173
- .tc-orange-200 {
174
- color: mat-color($mat-orange, 200) !important;
175
- }
176
- .tc-deep-orange-200 {
177
- color: mat-color($mat-deep-orange, 200) !important;
178
- }
179
- .tc-brown-200 {
180
- color: mat-color($mat-brown, 200) !important;
181
- }
182
- .tc-grey-200 {
183
- color: mat-color($mat-grey, 200) !important;
184
- }
185
- .tc-blue-grey-200 {
186
- color: mat-color($mat-blue-grey, 200) !important;
187
- }
188
-
189
- // 300
190
- .tc-red-300 {
191
- color: mat-color($mat-red, 300) !important;
192
- }
193
- .tc-pink-300 {
194
- color: mat-color($mat-pink, 300) !important;
195
- }
196
- .tc-purple-300 {
197
- color: mat-color($mat-purple, 300) !important;
198
- }
199
- .tc-deep-purple-300 {
200
- color: mat-color($mat-deep-purple, 300) !important;
201
- }
202
- .tc-indigo-300 {
203
- color: mat-color($mat-indigo, 300) !important;
204
- }
205
- .tc-blue-300 {
206
- color: mat-color($mat-blue, 300) !important;
207
- }
208
- .tc-light-blue-300 {
209
- color: mat-color($mat-light-blue, 300) !important;
210
- }
211
- .tc-cyan-300 {
212
- color: mat-color($mat-cyan, 300) !important;
213
- }
214
- .tc-teal-300 {
215
- color: mat-color($mat-teal, 300) !important;
216
- }
217
- .tc-green-300 {
218
- color: mat-color($mat-green, 300) !important;
219
- }
220
- .tc-light-green-300 {
221
- color: mat-color($mat-light-green, 300) !important;
222
- }
223
- .tc-lime-300 {
224
- color: mat-color($mat-lime, 300) !important;
225
- }
226
- .tc-yellow-300 {
227
- color: mat-color($mat-yellow, 300) !important;
228
- }
229
- .tc-amber-300 {
230
- color: mat-color($mat-amber, 300) !important;
231
- }
232
- .tc-orange-300 {
233
- color: mat-color($mat-orange, 300) !important;
234
- }
235
- .tc-deep-orange-300 {
236
- color: mat-color($mat-deep-orange, 300) !important;
237
- }
238
- .tc-brown-300 {
239
- color: mat-color($mat-brown, 300) !important;
240
- }
241
- .tc-grey-300 {
242
- color: mat-color($mat-grey, 300) !important;
243
- }
244
- .tc-blue-grey-300 {
245
- color: mat-color($mat-blue-grey, 300) !important;
246
- }
247
-
248
- // 400
249
- .tc-red-400 {
250
- color: mat-color($mat-red, 400) !important;
251
- }
252
- .tc-pink-400 {
253
- color: mat-color($mat-pink, 400) !important;
254
- }
255
- .tc-purple-400 {
256
- color: mat-color($mat-purple, 400) !important;
257
- }
258
- .tc-deep-purple-400 {
259
- color: mat-color($mat-deep-purple, 400) !important;
260
- }
261
- .tc-indigo-400 {
262
- color: mat-color($mat-indigo, 400) !important;
263
- }
264
- .tc-blue-400 {
265
- color: mat-color($mat-blue, 400) !important;
266
- }
267
- .tc-light-blue-400 {
268
- color: mat-color($mat-light-blue, 400) !important;
269
- }
270
- .tc-cyan-400 {
271
- color: mat-color($mat-cyan, 400) !important;
272
- }
273
- .tc-teal-400 {
274
- color: mat-color($mat-teal, 400) !important;
275
- }
276
- .tc-green-400 {
277
- color: mat-color($mat-green, 400) !important;
278
- }
279
- .tc-light-green-400 {
280
- color: mat-color($mat-light-green, 400) !important;
281
- }
282
- .tc-lime-400 {
283
- color: mat-color($mat-lime, 400) !important;
284
- }
285
- .tc-yellow-400 {
286
- color: mat-color($mat-yellow, 400) !important;
287
- }
288
- .tc-amber-400 {
289
- color: mat-color($mat-amber, 400) !important;
290
- }
291
- .tc-orange-400 {
292
- color: mat-color($mat-orange, 400) !important;
293
- }
294
- .tc-deep-orange-400 {
295
- color: mat-color($mat-deep-orange, 400) !important;
296
- }
297
- .tc-brown-400 {
298
- color: mat-color($mat-brown, 400) !important;
299
- }
300
- .tc-grey-400 {
301
- color: mat-color($mat-grey, 400) !important;
302
- }
303
- .tc-blue-grey-400 {
304
- color: mat-color($mat-blue-grey, 400) !important;
305
- }
306
-
307
- // 500
308
- .tc-red-500 {
309
- color: mat-color($mat-red, 500) !important;
310
- }
311
- .tc-pink-500 {
312
- color: mat-color($mat-pink, 500) !important;
313
- }
314
- .tc-purple-500 {
315
- color: mat-color($mat-purple, 500) !important;
316
- }
317
- .tc-deep-purple-500 {
318
- color: mat-color($mat-deep-purple, 500) !important;
319
- }
320
- .tc-indigo-500 {
321
- color: mat-color($mat-indigo, 500) !important;
322
- }
323
- .tc-blue-500 {
324
- color: mat-color($mat-blue, 500) !important;
325
- }
326
- .tc-light-blue-500 {
327
- color: mat-color($mat-light-blue, 500) !important;
328
- }
329
- .tc-cyan-500 {
330
- color: mat-color($mat-cyan, 500) !important;
331
- }
332
- .tc-teal-500 {
333
- color: mat-color($mat-teal, 500) !important;
334
- }
335
- .tc-green-500 {
336
- color: mat-color($mat-green, 500) !important;
337
- }
338
- .tc-light-green-500 {
339
- color: mat-color($mat-light-green, 500) !important;
340
- }
341
- .tc-lime-500 {
342
- color: mat-color($mat-lime, 500) !important;
343
- }
344
- .tc-yellow-500 {
345
- color: mat-color($mat-yellow, 500) !important;
346
- }
347
- .tc-amber-500 {
348
- color: mat-color($mat-amber, 500) !important;
349
- }
350
- .tc-orange-500 {
351
- color: mat-color($mat-orange, 500) !important;
352
- }
353
- .tc-deep-orange-500 {
354
- color: mat-color($mat-deep-orange, 500) !important;
355
- }
356
- .tc-brown-500 {
357
- color: mat-color($mat-brown, 500) !important;
358
- }
359
- .tc-grey-500 {
360
- color: mat-color($mat-grey, 500) !important;
361
- }
362
- .tc-blue-grey-500 {
363
- color: mat-color($mat-blue-grey, 500) !important;
364
- }
365
-
366
- // 600
367
- .tc-red-600 {
368
- color: mat-color($mat-red, 600) !important;
369
- }
370
- .tc-pink-600 {
371
- color: mat-color($mat-pink, 600) !important;
372
- }
373
- .tc-purple-600 {
374
- color: mat-color($mat-purple, 600) !important;
375
- }
376
- .tc-deep-purple-600 {
377
- color: mat-color($mat-deep-purple, 600) !important;
378
- }
379
- .tc-indigo-600 {
380
- color: mat-color($mat-indigo, 600) !important;
381
- }
382
- .tc-blue-600 {
383
- color: mat-color($mat-blue, 600) !important;
384
- }
385
- .tc-light-blue-600 {
386
- color: mat-color($mat-light-blue, 600) !important;
387
- }
388
- .tc-cyan-600 {
389
- color: mat-color($mat-cyan, 600) !important;
390
- }
391
- .tc-teal-600 {
392
- color: mat-color($mat-teal, 600) !important;
393
- }
394
- .tc-green-600 {
395
- color: mat-color($mat-green, 600) !important;
396
- }
397
- .tc-light-green-600 {
398
- color: mat-color($mat-light-green, 600) !important;
399
- }
400
- .tc-lime-600 {
401
- color: mat-color($mat-lime, 600) !important;
402
- }
403
- .tc-yellow-600 {
404
- color: mat-color($mat-yellow, 600) !important;
405
- }
406
- .tc-amber-600 {
407
- color: mat-color($mat-amber, 600) !important;
408
- }
409
- .tc-orange-600 {
410
- color: mat-color($mat-orange, 600) !important;
411
- }
412
- .tc-deep-orange-600 {
413
- color: mat-color($mat-deep-orange, 600) !important;
414
- }
415
- .tc-brown-600 {
416
- color: mat-color($mat-brown, 600) !important;
417
- }
418
- .tc-grey-600 {
419
- color: mat-color($mat-grey, 600) !important;
420
- }
421
- .tc-blue-grey-600 {
422
- color: mat-color($mat-blue-grey, 600) !important;
423
- }
424
-
425
- // 700
426
- .tc-red-700 {
427
- color: mat-color($mat-red, 700) !important;
428
- }
429
- .tc-pink-700 {
430
- color: mat-color($mat-pink, 700) !important;
431
- }
432
- .tc-purple-700 {
433
- color: mat-color($mat-purple, 700) !important;
434
- }
435
- .tc-deep-purple-700 {
436
- color: mat-color($mat-deep-purple, 700) !important;
437
- }
438
- .tc-indigo-700 {
439
- color: mat-color($mat-indigo, 700) !important;
440
- }
441
- .tc-blue-700 {
442
- color: mat-color($mat-blue, 700) !important;
443
- }
444
- .tc-light-blue-700 {
445
- color: mat-color($mat-light-blue, 700) !important;
446
- }
447
- .tc-cyan-700 {
448
- color: mat-color($mat-cyan, 700) !important;
449
- }
450
- .tc-teal-700 {
451
- color: mat-color($mat-teal, 700) !important;
452
- }
453
- .tc-green-700 {
454
- color: mat-color($mat-green, 700) !important;
455
- }
456
- .tc-light-green-700 {
457
- color: mat-color($mat-light-green, 700) !important;
458
- }
459
- .tc-lime-700 {
460
- color: mat-color($mat-lime, 700) !important;
461
- }
462
- .tc-yellow-700 {
463
- color: mat-color($mat-yellow, 700) !important;
464
- }
465
- .tc-amber-700 {
466
- color: mat-color($mat-amber, 700) !important;
467
- }
468
- .tc-orange-700 {
469
- color: mat-color($mat-orange, 700) !important;
470
- }
471
- .tc-deep-orange-700 {
472
- color: mat-color($mat-deep-orange, 700) !important;
473
- }
474
- .tc-brown-700 {
475
- color: mat-color($mat-brown, 700) !important;
476
- }
477
- .tc-grey-700 {
478
- color: mat-color($mat-grey, 700) !important;
479
- }
480
- .tc-blue-grey-700 {
481
- color: mat-color($mat-blue-grey, 700) !important;
482
- }
483
-
484
- // 800
485
- .tc-red-800 {
486
- color: mat-color($mat-red, 800) !important;
487
- }
488
- .tc-pink-800 {
489
- color: mat-color($mat-pink, 800) !important;
490
- }
491
- .tc-purple-800 {
492
- color: mat-color($mat-purple, 800) !important;
493
- }
494
- .tc-deep-purple-800 {
495
- color: mat-color($mat-deep-purple, 800) !important;
496
- }
497
- .tc-indigo-800 {
498
- color: mat-color($mat-indigo, 800) !important;
499
- }
500
- .tc-blue-800 {
501
- color: mat-color($mat-blue, 800) !important;
502
- }
503
- .tc-light-blue-800 {
504
- color: mat-color($mat-light-blue, 800) !important;
505
- }
506
- .tc-cyan-800 {
507
- color: mat-color($mat-cyan, 800) !important;
508
- }
509
- .tc-teal-800 {
510
- color: mat-color($mat-teal, 800) !important;
511
- }
512
- .tc-green-800 {
513
- color: mat-color($mat-green, 800) !important;
514
- }
515
- .tc-light-green-800 {
516
- color: mat-color($mat-light-green, 800) !important;
517
- }
518
- .tc-lime-800 {
519
- color: mat-color($mat-lime, 800) !important;
520
- }
521
- .tc-yellow-800 {
522
- color: mat-color($mat-yellow, 800) !important;
523
- }
524
- .tc-amber-800 {
525
- color: mat-color($mat-amber, 800) !important;
526
- }
527
- .tc-orange-800 {
528
- color: mat-color($mat-orange, 800) !important;
529
- }
530
- .tc-deep-orange-800 {
531
- color: mat-color($mat-deep-orange, 800) !important;
532
- }
533
- .tc-brown-800 {
534
- color: mat-color($mat-brown, 800) !important;
535
- }
536
- .tc-grey-800 {
537
- color: mat-color($mat-grey, 800) !important;
538
- }
539
- .tc-blue-grey-800 {
540
- color: mat-color($mat-blue-grey, 800) !important;
541
- }
542
-
543
- // 900
544
- .tc-red-900 {
545
- color: mat-color($mat-red, 900) !important;
546
- }
547
- .tc-pink-900 {
548
- color: mat-color($mat-pink, 900) !important;
549
- }
550
- .tc-purple-900 {
551
- color: mat-color($mat-purple, 900) !important;
552
- }
553
- .tc-deep-purple-900 {
554
- color: mat-color($mat-deep-purple, 900) !important;
555
- }
556
- .tc-indigo-900 {
557
- color: mat-color($mat-indigo, 900) !important;
558
- }
559
- .tc-blue-900 {
560
- color: mat-color($mat-blue, 900) !important;
561
- }
562
- .tc-light-blue-900 {
563
- color: mat-color($mat-light-blue, 900) !important;
564
- }
565
- .tc-cyan-900 {
566
- color: mat-color($mat-cyan, 900) !important;
567
- }
568
- .tc-teal-900 {
569
- color: mat-color($mat-teal, 900) !important;
570
- }
571
- .tc-green-900 {
572
- color: mat-color($mat-green, 900) !important;
573
- }
574
- .tc-light-green-900 {
575
- color: mat-color($mat-light-green, 900) !important;
576
- }
577
- .tc-lime-900 {
578
- color: mat-color($mat-lime, 900) !important;
579
- }
580
- .tc-yellow-900 {
581
- color: mat-color($mat-yellow, 900) !important;
582
- }
583
- .tc-amber-900 {
584
- color: mat-color($mat-amber, 900) !important;
585
- }
586
- .tc-orange-900 {
587
- color: mat-color($mat-orange, 900) !important;
588
- }
589
- .tc-deep-orange-900 {
590
- color: mat-color($mat-deep-orange, 900) !important;
591
- }
592
- .tc-brown-900 {
593
- color: mat-color($mat-brown, 900) !important;
594
- }
595
- .tc-grey-900 {
596
- color: mat-color($mat-grey, 900) !important;
597
- }
598
- .tc-blue-grey-900 {
599
- color: mat-color($mat-blue-grey, 900) !important;
600
- }
601
-
602
- // A100
603
- .tc-red-A100 {
604
- color: mat-color($mat-red, A100) !important;
605
- }
606
- .tc-pink-A100 {
607
- color: mat-color($mat-pink, A100) !important;
608
- }
609
- .tc-purple-A100 {
610
- color: mat-color($mat-purple, A100) !important;
611
- }
612
- .tc-deep-purple-A100 {
613
- color: mat-color($mat-deep-purple, A100) !important;
614
- }
615
- .tc-indigo-A100 {
616
- color: mat-color($mat-indigo, A100) !important;
617
- }
618
- .tc-blue-A100 {
619
- color: mat-color($mat-blue, A100) !important;
620
- }
621
- .tc-light-blue-A100 {
622
- color: mat-color($mat-light-blue, A100) !important;
623
- }
624
- .tc-cyan-A100 {
625
- color: mat-color($mat-cyan, A100) !important;
626
- }
627
- .tc-teal-A100 {
628
- color: mat-color($mat-teal, A100) !important;
629
- }
630
- .tc-green-A100 {
631
- color: mat-color($mat-green, A100) !important;
632
- }
633
- .tc-light-green-A100 {
634
- color: mat-color($mat-light-green, A100) !important;
635
- }
636
- .tc-lime-A100 {
637
- color: mat-color($mat-lime, A100) !important;
638
- }
639
- .tc-yellow-A100 {
640
- color: mat-color($mat-yellow, A100) !important;
641
- }
642
- .tc-amber-A100 {
643
- color: mat-color($mat-amber, A100) !important;
644
- }
645
- .tc-orange-A100 {
646
- color: mat-color($mat-orange, A100) !important;
647
- }
648
- .tc-deep-orange-A100 {
649
- color: mat-color($mat-deep-orange, A100) !important;
650
- }
651
-
652
- // A200
653
- .tc-red-A200 {
654
- color: mat-color($mat-red, A200) !important;
655
- }
656
- .tc-pink-A200 {
657
- color: mat-color($mat-pink, A200) !important;
658
- }
659
- .tc-purple-A200 {
660
- color: mat-color($mat-purple, A200) !important;
661
- }
662
- .tc-deep-purple-A200 {
663
- color: mat-color($mat-deep-purple, A200) !important;
664
- }
665
- .tc-indigo-A200 {
666
- color: mat-color($mat-indigo, A200) !important;
667
- }
668
- .tc-blue-A200 {
669
- color: mat-color($mat-blue, A200) !important;
670
- }
671
- .tc-light-blue-A200 {
672
- color: mat-color($mat-light-blue, A200) !important;
673
- }
674
- .tc-cyan-A200 {
675
- color: mat-color($mat-cyan, A200) !important;
676
- }
677
- .tc-teal-A200 {
678
- color: mat-color($mat-teal, A200) !important;
679
- }
680
- .tc-green-A200 {
681
- color: mat-color($mat-green, A200) !important;
682
- }
683
- .tc-light-green-A200 {
684
- color: mat-color($mat-light-green, A200) !important;
685
- }
686
- .tc-lime-A200 {
687
- color: mat-color($mat-lime, A200) !important;
688
- }
689
- .tc-yellow-A200 {
690
- color: mat-color($mat-yellow, A200) !important;
691
- }
692
- .tc-amber-A200 {
693
- color: mat-color($mat-amber, A200) !important;
694
- }
695
- .tc-orange-A200 {
696
- color: mat-color($mat-orange, A200) !important;
697
- }
698
- .tc-deep-orange-A200 {
699
- color: mat-color($mat-deep-orange, A200) !important;
700
- }
701
-
702
- // A400
703
- .tc-red-A400 {
704
- color: mat-color($mat-red, A400) !important;
705
- }
706
- .tc-pink-A400 {
707
- color: mat-color($mat-pink, A400) !important;
708
- }
709
- .tc-purple-A400 {
710
- color: mat-color($mat-purple, A400) !important;
711
- }
712
- .tc-deep-purple-A400 {
713
- color: mat-color($mat-deep-purple, A400) !important;
714
- }
715
- .tc-indigo-A400 {
716
- color: mat-color($mat-indigo, A400) !important;
717
- }
718
- .tc-blue-A400 {
719
- color: mat-color($mat-blue, A400) !important;
720
- }
721
- .tc-light-blue-A400 {
722
- color: mat-color($mat-light-blue, A400) !important;
723
- }
724
- .tc-cyan-A400 {
725
- color: mat-color($mat-cyan, A400) !important;
726
- }
727
- .tc-teal-A400 {
728
- color: mat-color($mat-teal, A400) !important;
729
- }
730
- .tc-green-A400 {
731
- color: mat-color($mat-green, A400) !important;
732
- }
733
- .tc-light-green-A400 {
734
- color: mat-color($mat-light-green, A400) !important;
735
- }
736
- .tc-lime-A400 {
737
- color: mat-color($mat-lime, A400) !important;
738
- }
739
- .tc-yellow-A400 {
740
- color: mat-color($mat-yellow, A400) !important;
741
- }
742
- .tc-amber-A400 {
743
- color: mat-color($mat-amber, A400) !important;
744
- }
745
- .tc-orange-A400 {
746
- color: mat-color($mat-orange, A400) !important;
747
- }
748
- .tc-deep-orange-A400 {
749
- color: mat-color($mat-deep-orange, A400) !important;
750
- }
751
-
752
- // A700
753
- .tc-red-A700 {
754
- color: mat-color($mat-red, A700) !important;
755
- }
756
- .tc-pink-A700 {
757
- color: mat-color($mat-pink, A700) !important;
758
- }
759
- .tc-purple-A700 {
760
- color: mat-color($mat-purple, A700) !important;
761
- }
762
- .tc-deep-purple-A700 {
763
- color: mat-color($mat-deep-purple, A700) !important;
764
- }
765
- .tc-indigo-A700 {
766
- color: mat-color($mat-indigo, A700) !important;
767
- }
768
- .tc-blue-A700 {
769
- color: mat-color($mat-blue, A700) !important;
770
- }
771
- .tc-light-blue-A700 {
772
- color: mat-color($mat-light-blue, A700) !important;
773
- }
774
- .tc-cyan-A700 {
775
- color: mat-color($mat-cyan, A700) !important;
776
- }
777
- .tc-teal-A700 {
778
- color: mat-color($mat-teal, A700) !important;
779
- }
780
- .tc-green-A700 {
781
- color: mat-color($mat-green, A700) !important;
782
- }
783
- .tc-light-green-A700 {
784
- color: mat-color($mat-light-green, A700) !important;
785
- }
786
- .tc-lime-A700 {
787
- color: mat-color($mat-lime, A700) !important;
788
- }
789
- .tc-yellow-A700 {
790
- color: mat-color($mat-yellow, A700) !important;
791
- }
792
- .tc-amber-A700 {
793
- color: mat-color($mat-amber, A700) !important;
794
- }
795
- .tc-orange-A700 {
796
- color: mat-color($mat-orange, A700) !important;
797
- }
798
- .tc-deep-orange-A700 {
799
- color: mat-color($mat-deep-orange, A700) !important;
800
- }
801
-
802
- // Black
803
- .tc-black {
804
- color: rgba(black, 87) !important;
805
- }
806
- .tc-black-1 {
807
- color: rgba(black, 54) !important;
808
- }
809
- .tc-black-2 {
810
- color: rgba(black, 38) !important;
811
- }
812
- .tc-black-3 {
813
- color: rgba(black, 0.12) !important;
814
- }
815
- .tc-black-4 {
816
- color: black !important;
817
- }
818
-
819
- // White
820
- .tc-white {
821
- color: rgba(white, 0.7) !important;
822
- }
823
- .tc-white-1 {
824
- color: rgba(white, 0.3) !important;
825
- }
826
- .tc-white-2 {
827
- color: rgba(white, 0.3) !important;
828
- }
829
- .tc-white-3 {
830
- color: rgba(white, 0.12) !important;
831
- }
832
- .tc-white-4 {
833
- color: white !important;
834
- }
835
-
836
- // Background color
837
-
838
- // 50
839
- .bgc-red-50 {
840
- background-color: mat-color($mat-red, 50) !important;
841
- }
842
- .bgc-pink-50 {
843
- background-color: mat-color($mat-pink, 50) !important;
844
- }
845
- .bgc-purple-50 {
846
- background-color: mat-color($mat-purple, 50) !important;
847
- }
848
- .bgc-deep-purple-50 {
849
- background-color: mat-color($mat-deep-purple, 50) !important;
850
- }
851
- .bgc-indigo-50 {
852
- background-color: mat-color($mat-indigo, 50) !important;
853
- }
854
- .bgc-blue-50 {
855
- background-color: mat-color($mat-blue, 50) !important;
856
- }
857
- .bgc-light-blue-50 {
858
- background-color: mat-color($mat-light-blue, 50) !important;
859
- }
860
- .bgc-cyan-50 {
861
- background-color: mat-color($mat-cyan, 50) !important;
862
- }
863
- .bgc-teal-50 {
864
- background-color: mat-color($mat-teal, 50) !important;
865
- }
866
- .bgc-green-50 {
867
- background-color: mat-color($mat-green, 50) !important;
868
- }
869
- .bgc-light-green-50 {
870
- background-color: mat-color($mat-light-green, 50) !important;
871
- }
872
- .bgc-lime-50 {
873
- background-color: mat-color($mat-lime, 50) !important;
874
- }
875
- .bgc-yellow-50 {
876
- background-color: mat-color($mat-yellow, 50) !important;
877
- }
878
- .bgc-amber-50 {
879
- background-color: mat-color($mat-amber, 50) !important;
880
- }
881
- .bgc-orange-50 {
882
- background-color: mat-color($mat-orange, 50) !important;
883
- }
884
- .bgc-deep-orange-50 {
885
- background-color: mat-color($mat-deep-orange, 50) !important;
886
- }
887
- .bgc-brown-50 {
888
- background-color: mat-color($mat-brown, 50) !important;
889
- }
890
- .bgc-grey-50 {
891
- background-color: mat-color($mat-grey, 50) !important;
892
- }
893
- .bgc-blue-grey-50 {
894
- background-color: mat-color($mat-blue-grey, 50) !important;
895
- }
896
-
897
- // 100
898
- .bgc-red-100 {
899
- background-color: mat-color($mat-red, 100) !important;
900
- }
901
- .bgc-pink-100 {
902
- background-color: mat-color($mat-pink, 100) !important;
903
- }
904
- .bgc-purple-100 {
905
- background-color: mat-color($mat-purple, 100) !important;
906
- }
907
- .bgc-deep-purple-100 {
908
- background-color: mat-color($mat-deep-purple, 100) !important;
909
- }
910
- .bgc-indigo-100 {
911
- background-color: mat-color($mat-indigo, 100) !important;
912
- }
913
- .bgc-blue-100 {
914
- background-color: mat-color($mat-blue, 100) !important;
915
- }
916
- .bgc-light-blue-100 {
917
- background-color: mat-color($mat-light-blue, 100) !important;
918
- }
919
- .bgc-cyan-100 {
920
- background-color: mat-color($mat-cyan, 100) !important;
921
- }
922
- .bgc-teal-100 {
923
- background-color: mat-color($mat-teal, 100) !important;
924
- }
925
- .bgc-green-100 {
926
- background-color: mat-color($mat-green, 100) !important;
927
- }
928
- .bgc-light-green-100 {
929
- background-color: mat-color($mat-light-green, 100) !important;
930
- }
931
- .bgc-lime-100 {
932
- background-color: mat-color($mat-lime, 100) !important;
933
- }
934
- .bgc-yellow-100 {
935
- background-color: mat-color($mat-yellow, 100) !important;
936
- }
937
- .bgc-amber-100 {
938
- background-color: mat-color($mat-amber, 100) !important;
939
- }
940
- .bgc-orange-100 {
941
- background-color: mat-color($mat-orange, 100) !important;
942
- }
943
- .bgc-deep-orange-100 {
944
- background-color: mat-color($mat-deep-orange, 100) !important;
945
- }
946
- .bgc-brown-100 {
947
- background-color: mat-color($mat-brown, 100) !important;
948
- }
949
- .bgc-grey-100 {
950
- background-color: mat-color($mat-grey, 100) !important;
951
- }
952
- .bgc-blue-grey-100 {
953
- background-color: mat-color($mat-blue-grey, 100) !important;
954
- }
955
-
956
- // 200
957
- .bgc-red-200 {
958
- background-color: mat-color($mat-red, 200) !important;
959
- }
960
- .bgc-pink-200 {
961
- background-color: mat-color($mat-pink, 200) !important;
962
- }
963
- .bgc-purple-200 {
964
- background-color: mat-color($mat-purple, 200) !important;
965
- }
966
- .bgc-deep-purple-200 {
967
- background-color: mat-color($mat-deep-purple, 200) !important;
968
- }
969
- .bgc-indigo-200 {
970
- background-color: mat-color($mat-indigo, 200) !important;
971
- }
972
- .bgc-blue-200 {
973
- background-color: mat-color($mat-blue, 200) !important;
974
- }
975
- .bgc-light-blue-200 {
976
- background-color: mat-color($mat-light-blue, 200) !important;
977
- }
978
- .bgc-cyan-200 {
979
- background-color: mat-color($mat-cyan, 200) !important;
980
- }
981
- .bgc-teal-200 {
982
- background-color: mat-color($mat-teal, 200) !important;
983
- }
984
- .bgc-green-200 {
985
- background-color: mat-color($mat-green, 200) !important;
986
- }
987
- .bgc-light-green-200 {
988
- background-color: mat-color($mat-light-green, 200) !important;
989
- }
990
- .bgc-lime-200 {
991
- background-color: mat-color($mat-lime, 200) !important;
992
- }
993
- .bgc-yellow-200 {
994
- background-color: mat-color($mat-yellow, 200) !important;
995
- }
996
- .bgc-amber-200 {
997
- background-color: mat-color($mat-amber, 200) !important;
998
- }
999
- .bgc-orange-200 {
1000
- background-color: mat-color($mat-orange, 200) !important;
1001
- }
1002
- .bgc-deep-orange-200 {
1003
- background-color: mat-color($mat-deep-orange, 200) !important;
1004
- }
1005
- .bgc-brown-200 {
1006
- background-color: mat-color($mat-brown, 200) !important;
1007
- }
1008
- .bgc-grey-200 {
1009
- background-color: mat-color($mat-grey, 200) !important;
1010
- }
1011
- .bgc-blue-grey-200 {
1012
- background-color: mat-color($mat-blue-grey, 200) !important;
1013
- }
1014
-
1015
- // 300
1016
- .bgc-red-300 {
1017
- background-color: mat-color($mat-red, 300) !important;
1018
- }
1019
- .bgc-pink-300 {
1020
- background-color: mat-color($mat-pink, 300) !important;
1021
- }
1022
- .bgc-purple-300 {
1023
- background-color: mat-color($mat-purple, 300) !important;
1024
- }
1025
- .bgc-deep-purple-300 {
1026
- background-color: mat-color($mat-deep-purple, 300) !important;
1027
- }
1028
- .bgc-indigo-300 {
1029
- background-color: mat-color($mat-indigo, 300) !important;
1030
- }
1031
- .bgc-blue-300 {
1032
- background-color: mat-color($mat-blue, 300) !important;
1033
- }
1034
- .bgc-light-blue-300 {
1035
- background-color: mat-color($mat-light-blue, 300) !important;
1036
- }
1037
- .bgc-cyan-300 {
1038
- background-color: mat-color($mat-cyan, 300) !important;
1039
- }
1040
- .bgc-teal-300 {
1041
- background-color: mat-color($mat-teal, 300) !important;
1042
- }
1043
- .bgc-green-300 {
1044
- background-color: mat-color($mat-green, 300) !important;
1045
- }
1046
- .bgc-light-green-300 {
1047
- background-color: mat-color($mat-light-green, 300) !important;
1048
- }
1049
- .bgc-lime-300 {
1050
- background-color: mat-color($mat-lime, 300) !important;
1051
- }
1052
- .bgc-yellow-300 {
1053
- background-color: mat-color($mat-yellow, 300) !important;
1054
- }
1055
- .bgc-amber-300 {
1056
- background-color: mat-color($mat-amber, 300) !important;
1057
- }
1058
- .bgc-orange-300 {
1059
- background-color: mat-color($mat-orange, 300) !important;
1060
- }
1061
- .bgc-deep-orange-300 {
1062
- background-color: mat-color($mat-deep-orange, 300) !important;
1063
- }
1064
- .bgc-brown-300 {
1065
- background-color: mat-color($mat-brown, 300) !important;
1066
- }
1067
- .bgc-grey-300 {
1068
- background-color: mat-color($mat-grey, 300) !important;
1069
- }
1070
- .bgc-blue-grey-300 {
1071
- background-color: mat-color($mat-blue-grey, 300) !important;
1072
- }
1073
-
1074
- // 400
1075
- .bgc-red-400 {
1076
- background-color: mat-color($mat-red, 400) !important;
1077
- }
1078
- .bgc-pink-400 {
1079
- background-color: mat-color($mat-pink, 400) !important;
1080
- }
1081
- .bgc-purple-400 {
1082
- background-color: mat-color($mat-purple, 400) !important;
1083
- }
1084
- .bgc-deep-purple-400 {
1085
- background-color: mat-color($mat-deep-purple, 400) !important;
1086
- }
1087
- .bgc-indigo-400 {
1088
- background-color: mat-color($mat-indigo, 400) !important;
1089
- }
1090
- .bgc-blue-400 {
1091
- background-color: mat-color($mat-blue, 400) !important;
1092
- }
1093
- .bgc-light-blue-400 {
1094
- background-color: mat-color($mat-light-blue, 400) !important;
1095
- }
1096
- .bgc-cyan-400 {
1097
- background-color: mat-color($mat-cyan, 400) !important;
1098
- }
1099
- .bgc-teal-400 {
1100
- background-color: mat-color($mat-teal, 400) !important;
1101
- }
1102
- .bgc-green-400 {
1103
- background-color: mat-color($mat-green, 400) !important;
1104
- }
1105
- .bgc-light-green-400 {
1106
- background-color: mat-color($mat-light-green, 400) !important;
1107
- }
1108
- .bgc-lime-400 {
1109
- background-color: mat-color($mat-lime, 400) !important;
1110
- }
1111
- .bgc-yellow-400 {
1112
- background-color: mat-color($mat-yellow, 400) !important;
1113
- }
1114
- .bgc-amber-400 {
1115
- background-color: mat-color($mat-amber, 400) !important;
1116
- }
1117
- .bgc-orange-400 {
1118
- background-color: mat-color($mat-orange, 400) !important;
1119
- }
1120
- .bgc-deep-orange-400 {
1121
- background-color: mat-color($mat-deep-orange, 400) !important;
1122
- }
1123
- .bgc-brown-400 {
1124
- background-color: mat-color($mat-brown, 400) !important;
1125
- }
1126
- .bgc-grey-400 {
1127
- background-color: mat-color($mat-grey, 400) !important;
1128
- }
1129
- .bgc-blue-grey-400 {
1130
- background-color: mat-color($mat-blue-grey, 400) !important;
1131
- }
1132
-
1133
- // 500
1134
- .bgc-red-500 {
1135
- background-color: mat-color($mat-red, 500) !important;
1136
- }
1137
- .bgc-pink-500 {
1138
- background-color: mat-color($mat-pink, 500) !important;
1139
- }
1140
- .bgc-purple-500 {
1141
- background-color: mat-color($mat-purple, 500) !important;
1142
- }
1143
- .bgc-deep-purple-500 {
1144
- background-color: mat-color($mat-deep-purple, 500) !important;
1145
- }
1146
- .bgc-indigo-500 {
1147
- background-color: mat-color($mat-indigo, 500) !important;
1148
- }
1149
- .bgc-blue-500 {
1150
- background-color: mat-color($mat-blue, 500) !important;
1151
- }
1152
- .bgc-light-blue-500 {
1153
- background-color: mat-color($mat-light-blue, 500) !important;
1154
- }
1155
- .bgc-cyan-500 {
1156
- background-color: mat-color($mat-cyan, 500) !important;
1157
- }
1158
- .bgc-teal-500 {
1159
- background-color: mat-color($mat-teal, 500) !important;
1160
- }
1161
- .bgc-green-500 {
1162
- background-color: mat-color($mat-green, 500) !important;
1163
- }
1164
- .bgc-light-green-500 {
1165
- background-color: mat-color($mat-light-green, 500) !important;
1166
- }
1167
- .bgc-lime-500 {
1168
- background-color: mat-color($mat-lime, 500) !important;
1169
- }
1170
- .bgc-yellow-500 {
1171
- background-color: mat-color($mat-yellow, 500) !important;
1172
- }
1173
- .bgc-amber-500 {
1174
- background-color: mat-color($mat-amber, 500) !important;
1175
- }
1176
- .bgc-orange-500 {
1177
- background-color: mat-color($mat-orange, 500) !important;
1178
- }
1179
- .bgc-deep-orange-500 {
1180
- background-color: mat-color($mat-deep-orange, 500) !important;
1181
- }
1182
- .bgc-brown-500 {
1183
- background-color: mat-color($mat-brown, 500) !important;
1184
- }
1185
- .bgc-grey-500 {
1186
- background-color: mat-color($mat-grey, 500) !important;
1187
- }
1188
- .bgc-blue-grey-500 {
1189
- background-color: mat-color($mat-blue-grey, 500) !important;
1190
- }
1191
-
1192
- // 600
1193
- .bgc-red-600 {
1194
- background-color: mat-color($mat-red, 600) !important;
1195
- }
1196
- .bgc-pink-600 {
1197
- background-color: mat-color($mat-pink, 600) !important;
1198
- }
1199
- .bgc-purple-600 {
1200
- background-color: mat-color($mat-purple, 600) !important;
1201
- }
1202
- .bgc-deep-purple-600 {
1203
- background-color: mat-color($mat-deep-purple, 600) !important;
1204
- }
1205
- .bgc-indigo-600 {
1206
- background-color: mat-color($mat-indigo, 600) !important;
1207
- }
1208
- .bgc-blue-600 {
1209
- background-color: mat-color($mat-blue, 600) !important;
1210
- }
1211
- .bgc-light-blue-600 {
1212
- background-color: mat-color($mat-light-blue, 600) !important;
1213
- }
1214
- .bgc-cyan-600 {
1215
- background-color: mat-color($mat-cyan, 600) !important;
1216
- }
1217
- .bgc-teal-600 {
1218
- background-color: mat-color($mat-teal, 600) !important;
1219
- }
1220
- .bgc-green-600 {
1221
- background-color: mat-color($mat-green, 600) !important;
1222
- }
1223
- .bgc-light-green-600 {
1224
- background-color: mat-color($mat-light-green, 600) !important;
1225
- }
1226
- .bgc-lime-600 {
1227
- background-color: mat-color($mat-lime, 600) !important;
1228
- }
1229
- .bgc-yellow-600 {
1230
- background-color: mat-color($mat-yellow, 600) !important;
1231
- }
1232
- .bgc-amber-600 {
1233
- background-color: mat-color($mat-amber, 600) !important;
1234
- }
1235
- .bgc-orange-600 {
1236
- background-color: mat-color($mat-orange, 600) !important;
1237
- }
1238
- .bgc-deep-orange-600 {
1239
- background-color: mat-color($mat-deep-orange, 600) !important;
1240
- }
1241
- .bgc-brown-600 {
1242
- background-color: mat-color($mat-brown, 600) !important;
1243
- }
1244
- .bgc-grey-600 {
1245
- background-color: mat-color($mat-grey, 600) !important;
1246
- }
1247
- .bgc-blue-grey-600 {
1248
- background-color: mat-color($mat-blue-grey, 600) !important;
1249
- }
1250
-
1251
- // 700
1252
- .bgc-red-700 {
1253
- background-color: mat-color($mat-red, 700) !important;
1254
- }
1255
- .bgc-pink-700 {
1256
- background-color: mat-color($mat-pink, 700) !important;
1257
- }
1258
- .bgc-purple-700 {
1259
- background-color: mat-color($mat-purple, 700) !important;
1260
- }
1261
- .bgc-deep-purple-700 {
1262
- background-color: mat-color($mat-deep-purple, 700) !important;
1263
- }
1264
- .bgc-indigo-700 {
1265
- background-color: mat-color($mat-indigo, 700) !important;
1266
- }
1267
- .bgc-blue-700 {
1268
- background-color: mat-color($mat-blue, 700) !important;
1269
- }
1270
- .bgc-light-blue-700 {
1271
- background-color: mat-color($mat-light-blue, 700) !important;
1272
- }
1273
- .bgc-cyan-700 {
1274
- background-color: mat-color($mat-cyan, 700) !important;
1275
- }
1276
- .bgc-teal-700 {
1277
- background-color: mat-color($mat-teal, 700) !important;
1278
- }
1279
- .bgc-green-700 {
1280
- background-color: mat-color($mat-green, 700) !important;
1281
- }
1282
- .bgc-light-green-700 {
1283
- background-color: mat-color($mat-light-green, 700) !important;
1284
- }
1285
- .bgc-lime-700 {
1286
- background-color: mat-color($mat-lime, 700) !important;
1287
- }
1288
- .bgc-yellow-700 {
1289
- background-color: mat-color($mat-yellow, 700) !important;
1290
- }
1291
- .bgc-amber-700 {
1292
- background-color: mat-color($mat-amber, 700) !important;
1293
- }
1294
- .bgc-orange-700 {
1295
- background-color: mat-color($mat-orange, 700) !important;
1296
- }
1297
- .bgc-deep-orange-700 {
1298
- background-color: mat-color($mat-deep-orange, 700) !important;
1299
- }
1300
- .bgc-brown-700 {
1301
- background-color: mat-color($mat-brown, 700) !important;
1302
- }
1303
- .bgc-grey-700 {
1304
- background-color: mat-color($mat-grey, 700) !important;
1305
- }
1306
- .bgc-blue-grey-700 {
1307
- background-color: mat-color($mat-blue-grey, 700) !important;
1308
- }
1309
-
1310
- // 800
1311
- .bgc-red-800 {
1312
- background-color: mat-color($mat-red, 800) !important;
1313
- }
1314
- .bgc-pink-800 {
1315
- background-color: mat-color($mat-pink, 800) !important;
1316
- }
1317
- .bgc-purple-800 {
1318
- background-color: mat-color($mat-purple, 800) !important;
1319
- }
1320
- .bgc-deep-purple-800 {
1321
- background-color: mat-color($mat-deep-purple, 800) !important;
1322
- }
1323
- .bgc-indigo-800 {
1324
- background-color: mat-color($mat-indigo, 800) !important;
1325
- }
1326
- .bgc-blue-800 {
1327
- background-color: mat-color($mat-blue, 800) !important;
1328
- }
1329
- .bgc-light-blue-800 {
1330
- background-color: mat-color($mat-light-blue, 800) !important;
1331
- }
1332
- .bgc-cyan-800 {
1333
- background-color: mat-color($mat-cyan, 800) !important;
1334
- }
1335
- .bgc-teal-800 {
1336
- background-color: mat-color($mat-teal, 800) !important;
1337
- }
1338
- .bgc-green-800 {
1339
- background-color: mat-color($mat-green, 800) !important;
1340
- }
1341
- .bgc-light-green-800 {
1342
- background-color: mat-color($mat-light-green, 800) !important;
1343
- }
1344
- .bgc-lime-800 {
1345
- background-color: mat-color($mat-lime, 800) !important;
1346
- }
1347
- .bgc-yellow-800 {
1348
- background-color: mat-color($mat-yellow, 800) !important;
1349
- }
1350
- .bgc-amber-800 {
1351
- background-color: mat-color($mat-amber, 800) !important;
1352
- }
1353
- .bgc-orange-800 {
1354
- background-color: mat-color($mat-orange, 800) !important;
1355
- }
1356
- .bgc-deep-orange-800 {
1357
- background-color: mat-color($mat-deep-orange, 800) !important;
1358
- }
1359
- .bgc-brown-800 {
1360
- background-color: mat-color($mat-brown, 800) !important;
1361
- }
1362
- .bgc-grey-800 {
1363
- background-color: mat-color($mat-grey, 800) !important;
1364
- }
1365
- .bgc-blue-grey-800 {
1366
- background-color: mat-color($mat-blue-grey, 800) !important;
1367
- }
1368
-
1369
- // 900
1370
- .bgc-red-900 {
1371
- background-color: mat-color($mat-red, 900) !important;
1372
- }
1373
- .bgc-pink-900 {
1374
- background-color: mat-color($mat-pink, 900) !important;
1375
- }
1376
- .bgc-purple-900 {
1377
- background-color: mat-color($mat-purple, 900) !important;
1378
- }
1379
- .bgc-deep-purple-900 {
1380
- background-color: mat-color($mat-deep-purple, 900) !important;
1381
- }
1382
- .bgc-indigo-900 {
1383
- background-color: mat-color($mat-indigo, 900) !important;
1384
- }
1385
- .bgc-blue-900 {
1386
- background-color: mat-color($mat-blue, 900) !important;
1387
- }
1388
- .bgc-light-blue-900 {
1389
- background-color: mat-color($mat-light-blue, 900) !important;
1390
- }
1391
- .bgc-cyan-900 {
1392
- background-color: mat-color($mat-cyan, 900) !important;
1393
- }
1394
- .bgc-teal-900 {
1395
- background-color: mat-color($mat-teal, 900) !important;
1396
- }
1397
- .bgc-green-900 {
1398
- background-color: mat-color($mat-green, 900) !important;
1399
- }
1400
- .bgc-light-green-900 {
1401
- background-color: mat-color($mat-light-green, 900) !important;
1402
- }
1403
- .bgc-lime-900 {
1404
- background-color: mat-color($mat-lime, 900) !important;
1405
- }
1406
- .bgc-yellow-900 {
1407
- background-color: mat-color($mat-yellow, 900) !important;
1408
- }
1409
- .bgc-amber-900 {
1410
- background-color: mat-color($mat-amber, 900) !important;
1411
- }
1412
- .bgc-orange-900 {
1413
- background-color: mat-color($mat-orange, 900) !important;
1414
- }
1415
- .bgc-deep-orange-900 {
1416
- background-color: mat-color($mat-deep-orange, 900) !important;
1417
- }
1418
- .bgc-brown-900 {
1419
- background-color: mat-color($mat-brown, 900) !important;
1420
- }
1421
- .bgc-grey-900 {
1422
- background-color: mat-color($mat-grey, 900) !important;
1423
- }
1424
- .bgc-blue-grey-900 {
1425
- background-color: mat-color($mat-blue-grey, 900) !important;
1426
- }
1427
-
1428
- // A100
1429
- .bgc-red-A100 {
1430
- background-color: mat-color($mat-red, A100) !important;
1431
- }
1432
- .bgc-pink-A100 {
1433
- background-color: mat-color($mat-pink, A100) !important;
1434
- }
1435
- .bgc-purple-A100 {
1436
- background-color: mat-color($mat-purple, A100) !important;
1437
- }
1438
- .bgc-deep-purple-A100 {
1439
- background-color: mat-color($mat-deep-purple, A100) !important;
1440
- }
1441
- .bgc-indigo-A100 {
1442
- background-color: mat-color($mat-indigo, A100) !important;
1443
- }
1444
- .bgc-blue-A100 {
1445
- background-color: mat-color($mat-blue, A100) !important;
1446
- }
1447
- .bgc-light-blue-A100 {
1448
- background-color: mat-color($mat-light-blue, A100) !important;
1449
- }
1450
- .bgc-cyan-A100 {
1451
- background-color: mat-color($mat-cyan, A100) !important;
1452
- }
1453
- .bgc-teal-A100 {
1454
- background-color: mat-color($mat-teal, A100) !important;
1455
- }
1456
- .bgc-green-A100 {
1457
- background-color: mat-color($mat-green, A100) !important;
1458
- }
1459
- .bgc-light-green-A100 {
1460
- background-color: mat-color($mat-light-green, A100) !important;
1461
- }
1462
- .bgc-lime-A100 {
1463
- background-color: mat-color($mat-lime, A100) !important;
1464
- }
1465
- .bgc-yellow-A100 {
1466
- background-color: mat-color($mat-yellow, A100) !important;
1467
- }
1468
- .bgc-amber-A100 {
1469
- background-color: mat-color($mat-amber, A100) !important;
1470
- }
1471
- .bgc-orange-A100 {
1472
- background-color: mat-color($mat-orange, A100) !important;
1473
- }
1474
- .bgc-deep-orange-A100 {
1475
- background-color: mat-color($mat-deep-orange, A100) !important;
1476
- }
1477
-
1478
- // A200
1479
- .bgc-red-A200 {
1480
- background-color: mat-color($mat-red, A200) !important;
1481
- }
1482
- .bgc-pink-A200 {
1483
- background-color: mat-color($mat-pink, A200) !important;
1484
- }
1485
- .bgc-purple-A200 {
1486
- background-color: mat-color($mat-purple, A200) !important;
1487
- }
1488
- .bgc-deep-purple-A200 {
1489
- background-color: mat-color($mat-deep-purple, A200) !important;
1490
- }
1491
- .bgc-indigo-A200 {
1492
- background-color: mat-color($mat-indigo, A200) !important;
1493
- }
1494
- .bgc-blue-A200 {
1495
- background-color: mat-color($mat-blue, A200) !important;
1496
- }
1497
- .bgc-light-blue-A200 {
1498
- background-color: mat-color($mat-light-blue, A200) !important;
1499
- }
1500
- .bgc-cyan-A200 {
1501
- background-color: mat-color($mat-cyan, A200) !important;
1502
- }
1503
- .bgc-teal-A200 {
1504
- background-color: mat-color($mat-teal, A200) !important;
1505
- }
1506
- .bgc-green-A200 {
1507
- background-color: mat-color($mat-green, A200) !important;
1508
- }
1509
- .bgc-light-green-A200 {
1510
- background-color: mat-color($mat-light-green, A200) !important;
1511
- }
1512
- .bgc-lime-A200 {
1513
- background-color: mat-color($mat-lime, A200) !important;
1514
- }
1515
- .bgc-yellow-A200 {
1516
- background-color: mat-color($mat-yellow, A200) !important;
1517
- }
1518
- .bgc-amber-A200 {
1519
- background-color: mat-color($mat-amber, A200) !important;
1520
- }
1521
- .bgc-orange-A200 {
1522
- background-color: mat-color($mat-orange, A200) !important;
1523
- }
1524
- .bgc-deep-orange-A200 {
1525
- background-color: mat-color($mat-deep-orange, A200) !important;
1526
- }
1527
-
1528
- // A400
1529
- .bgc-red-A400 {
1530
- background-color: mat-color($mat-red, A400) !important;
1531
- }
1532
- .bgc-pink-A400 {
1533
- background-color: mat-color($mat-pink, A400) !important;
1534
- }
1535
- .bgc-purple-A400 {
1536
- background-color: mat-color($mat-purple, A400) !important;
1537
- }
1538
- .bgc-deep-purple-A400 {
1539
- background-color: mat-color($mat-deep-purple, A400) !important;
1540
- }
1541
- .bgc-indigo-A400 {
1542
- background-color: mat-color($mat-indigo, A400) !important;
1543
- }
1544
- .bgc-blue-A400 {
1545
- background-color: mat-color($mat-blue, A400) !important;
1546
- }
1547
- .bgc-light-blue-A400 {
1548
- background-color: mat-color($mat-light-blue, A400) !important;
1549
- }
1550
- .bgc-cyan-A400 {
1551
- background-color: mat-color($mat-cyan, A400) !important;
1552
- }
1553
- .bgc-teal-A400 {
1554
- background-color: mat-color($mat-teal, A400) !important;
1555
- }
1556
- .bgc-green-A400 {
1557
- background-color: mat-color($mat-green, A400) !important;
1558
- }
1559
- .bgc-light-green-A400 {
1560
- background-color: mat-color($mat-light-green, A400) !important;
1561
- }
1562
- .bgc-lime-A400 {
1563
- background-color: mat-color($mat-lime, A400) !important;
1564
- }
1565
- .bgc-yellow-A400 {
1566
- background-color: mat-color($mat-yellow, A400) !important;
1567
- }
1568
- .bgc-amber-A400 {
1569
- background-color: mat-color($mat-amber, A400) !important;
1570
- }
1571
- .bgc-orange-A400 {
1572
- background-color: mat-color($mat-orange, A400) !important;
1573
- }
1574
- .bgc-deep-orange-A400 {
1575
- background-color: mat-color($mat-deep-orange, A400) !important;
1576
- }
1577
-
1578
- // A700
1579
- .bgc-red-A700 {
1580
- background-color: mat-color($mat-red, A700) !important;
1581
- }
1582
- .bgc-pink-A700 {
1583
- background-color: mat-color($mat-pink, A700) !important;
1584
- }
1585
- .bgc-purple-A700 {
1586
- background-color: mat-color($mat-purple, A700) !important;
1587
- }
1588
- .bgc-deep-purple-A700 {
1589
- background-color: mat-color($mat-deep-purple, A700) !important;
1590
- }
1591
- .bgc-indigo-A700 {
1592
- background-color: mat-color($mat-indigo, A700) !important;
1593
- }
1594
- .bgc-blue-A700 {
1595
- background-color: mat-color($mat-blue, A700) !important;
1596
- }
1597
- .bgc-light-blue-A700 {
1598
- background-color: mat-color($mat-light-blue, A700) !important;
1599
- }
1600
- .bgc-cyan-A700 {
1601
- background-color: mat-color($mat-cyan, A700) !important;
1602
- }
1603
- .bgc-teal-A700 {
1604
- background-color: mat-color($mat-teal, A700) !important;
1605
- }
1606
- .bgc-green-A700 {
1607
- background-color: mat-color($mat-green, A700) !important;
1608
- }
1609
- .bgc-light-green-A700 {
1610
- background-color: mat-color($mat-light-green, A700) !important;
1611
- }
1612
- .bgc-lime-A700 {
1613
- background-color: mat-color($mat-lime, A700) !important;
1614
- }
1615
- .bgc-yellow-A700 {
1616
- background-color: mat-color($mat-yellow, A700) !important;
1617
- }
1618
- .bgc-amber-A700 {
1619
- background-color: mat-color($mat-amber, A700) !important;
1620
- }
1621
- .bgc-orange-A700 {
1622
- background-color: mat-color($mat-orange, A700) !important;
1623
- }
1624
- .bgc-deep-orange-A700 {
1625
- background-color: mat-color($mat-deep-orange, A700) !important;
1626
- }
1627
-
1628
- // Black
1629
- .bgc-black {
1630
- background-color: rgba(black, 87) !important;
1631
- }
1632
- .bgc-black-1 {
1633
- background-color: rgba(black, 54) !important;
1634
- }
1635
- .bgc-black-2 {
1636
- background-color: rgba(black, 38) !important;
1637
- }
1638
- .bgc-black-3 {
1639
- background-color: rgba(black, 0.12) !important;
1640
- }
1641
- .bgc-black-4 {
1642
- background-color: black !important;
1643
- }
1644
-
1645
- // White
1646
- .bgc-white {
1647
- background-color: rgba(white, 0.7) !important;
1648
- }
1649
- .bgc-white-1 {
1650
- background-color: rgba(white, 0.3) !important;
1651
- }
1652
- .bgc-white-2 {
1653
- background-color: rgba(white, 0.3) !important;
1654
- }
1655
- .bgc-white-3 {
1656
- background-color: rgba(white, 0.12) !important;
1657
- }
1658
- .bgc-white-4 {
1659
- background-color: white !important;
1660
- }
1661
-
1662
- // Fill color
1663
-
1664
- // 50
1665
- .fill-red-50 {
1666
- fill: mat-color($mat-red, 50) !important;
1667
- }
1668
- .fill-pink-50 {
1669
- fill: mat-color($mat-pink, 50) !important;
1670
- }
1671
- .fill-purple-50 {
1672
- fill: mat-color($mat-purple, 50) !important;
1673
- }
1674
- .fill-deep-purple-50 {
1675
- fill: mat-color($mat-deep-purple, 50) !important;
1676
- }
1677
- .fill-indigo-50 {
1678
- fill: mat-color($mat-indigo, 50) !important;
1679
- }
1680
- .fill-blue-50 {
1681
- fill: mat-color($mat-blue, 50) !important;
1682
- }
1683
- .fill-light-blue-50 {
1684
- fill: mat-color($mat-light-blue, 50) !important;
1685
- }
1686
- .fill-cyan-50 {
1687
- fill: mat-color($mat-cyan, 50) !important;
1688
- }
1689
- .fill-teal-50 {
1690
- fill: mat-color($mat-teal, 50) !important;
1691
- }
1692
- .fill-green-50 {
1693
- fill: mat-color($mat-green, 50) !important;
1694
- }
1695
- .fill-light-green-50 {
1696
- fill: mat-color($mat-light-green, 50) !important;
1697
- }
1698
- .fill-lime-50 {
1699
- fill: mat-color($mat-lime, 50) !important;
1700
- }
1701
- .fill-yellow-50 {
1702
- fill: mat-color($mat-yellow, 50) !important;
1703
- }
1704
- .fill-amber-50 {
1705
- fill: mat-color($mat-amber, 50) !important;
1706
- }
1707
- .fill-orange-50 {
1708
- fill: mat-color($mat-orange, 50) !important;
1709
- }
1710
- .fill-deep-orange-50 {
1711
- fill: mat-color($mat-deep-orange, 50) !important;
1712
- }
1713
- .fill-brown-50 {
1714
- fill: mat-color($mat-brown, 50) !important;
1715
- }
1716
- .fill-grey-50 {
1717
- fill: mat-color($mat-grey, 50) !important;
1718
- }
1719
- .fill-blue-grey-50 {
1720
- fill: mat-color($mat-blue-grey, 50) !important;
1721
- }
1722
-
1723
- // 100
1724
- .fill-red-100 {
1725
- fill: mat-color($mat-red, 100) !important;
1726
- }
1727
- .fill-pink-100 {
1728
- fill: mat-color($mat-pink, 100) !important;
1729
- }
1730
- .fill-purple-100 {
1731
- fill: mat-color($mat-purple, 100) !important;
1732
- }
1733
- .fill-deep-purple-100 {
1734
- fill: mat-color($mat-deep-purple, 100) !important;
1735
- }
1736
- .fill-indigo-100 {
1737
- fill: mat-color($mat-indigo, 100) !important;
1738
- }
1739
- .fill-blue-100 {
1740
- fill: mat-color($mat-blue, 100) !important;
1741
- }
1742
- .fill-light-blue-100 {
1743
- fill: mat-color($mat-light-blue, 100) !important;
1744
- }
1745
- .fill-cyan-100 {
1746
- fill: mat-color($mat-cyan, 100) !important;
1747
- }
1748
- .fill-teal-100 {
1749
- fill: mat-color($mat-teal, 100) !important;
1750
- }
1751
- .fill-green-100 {
1752
- fill: mat-color($mat-green, 100) !important;
1753
- }
1754
- .fill-light-green-100 {
1755
- fill: mat-color($mat-light-green, 100) !important;
1756
- }
1757
- .fill-lime-100 {
1758
- fill: mat-color($mat-lime, 100) !important;
1759
- }
1760
- .fill-yellow-100 {
1761
- fill: mat-color($mat-yellow, 100) !important;
1762
- }
1763
- .fill-amber-100 {
1764
- fill: mat-color($mat-amber, 100) !important;
1765
- }
1766
- .fill-orange-100 {
1767
- fill: mat-color($mat-orange, 100) !important;
1768
- }
1769
- .fill-deep-orange-100 {
1770
- fill: mat-color($mat-deep-orange, 100) !important;
1771
- }
1772
- .fill-brown-100 {
1773
- fill: mat-color($mat-brown, 100) !important;
1774
- }
1775
- .fill-grey-100 {
1776
- fill: mat-color($mat-grey, 100) !important;
1777
- }
1778
- .fill-blue-grey-100 {
1779
- fill: mat-color($mat-blue-grey, 100) !important;
1780
- }
1781
-
1782
- // 200
1783
- .fill-red-200 {
1784
- fill: mat-color($mat-red, 200) !important;
1785
- }
1786
- .fill-pink-200 {
1787
- fill: mat-color($mat-pink, 200) !important;
1788
- }
1789
- .fill-purple-200 {
1790
- fill: mat-color($mat-purple, 200) !important;
1791
- }
1792
- .fill-deep-purple-200 {
1793
- fill: mat-color($mat-deep-purple, 200) !important;
1794
- }
1795
- .fill-indigo-200 {
1796
- fill: mat-color($mat-indigo, 200) !important;
1797
- }
1798
- .fill-blue-200 {
1799
- fill: mat-color($mat-blue, 200) !important;
1800
- }
1801
- .fill-light-blue-200 {
1802
- fill: mat-color($mat-light-blue, 200) !important;
1803
- }
1804
- .fill-cyan-200 {
1805
- fill: mat-color($mat-cyan, 200) !important;
1806
- }
1807
- .fill-teal-200 {
1808
- fill: mat-color($mat-teal, 200) !important;
1809
- }
1810
- .fill-green-200 {
1811
- fill: mat-color($mat-green, 200) !important;
1812
- }
1813
- .fill-light-green-200 {
1814
- fill: mat-color($mat-light-green, 200) !important;
1815
- }
1816
- .fill-lime-200 {
1817
- fill: mat-color($mat-lime, 200) !important;
1818
- }
1819
- .fill-yellow-200 {
1820
- fill: mat-color($mat-yellow, 200) !important;
1821
- }
1822
- .fill-amber-200 {
1823
- fill: mat-color($mat-amber, 200) !important;
1824
- }
1825
- .fill-orange-200 {
1826
- fill: mat-color($mat-orange, 200) !important;
1827
- }
1828
- .fill-deep-orange-200 {
1829
- fill: mat-color($mat-deep-orange, 200) !important;
1830
- }
1831
- .fill-brown-200 {
1832
- fill: mat-color($mat-brown, 200) !important;
1833
- }
1834
- .fill-grey-200 {
1835
- fill: mat-color($mat-grey, 200) !important;
1836
- }
1837
- .fill-blue-grey-200 {
1838
- fill: mat-color($mat-blue-grey, 200) !important;
1839
- }
1840
-
1841
- // 300
1842
- .fill-red-300 {
1843
- fill: mat-color($mat-red, 300) !important;
1844
- }
1845
- .fill-pink-300 {
1846
- fill: mat-color($mat-pink, 300) !important;
1847
- }
1848
- .fill-purple-300 {
1849
- fill: mat-color($mat-purple, 300) !important;
1850
- }
1851
- .fill-deep-purple-300 {
1852
- fill: mat-color($mat-deep-purple, 300) !important;
1853
- }
1854
- .fill-indigo-300 {
1855
- fill: mat-color($mat-indigo, 300) !important;
1856
- }
1857
- .fill-blue-300 {
1858
- fill: mat-color($mat-blue, 300) !important;
1859
- }
1860
- .fill-light-blue-300 {
1861
- fill: mat-color($mat-light-blue, 300) !important;
1862
- }
1863
- .fill-cyan-300 {
1864
- fill: mat-color($mat-cyan, 300) !important;
1865
- }
1866
- .fill-teal-300 {
1867
- fill: mat-color($mat-teal, 300) !important;
1868
- }
1869
- .fill-green-300 {
1870
- fill: mat-color($mat-green, 300) !important;
1871
- }
1872
- .fill-light-green-300 {
1873
- fill: mat-color($mat-light-green, 300) !important;
1874
- }
1875
- .fill-lime-300 {
1876
- fill: mat-color($mat-lime, 300) !important;
1877
- }
1878
- .fill-yellow-300 {
1879
- fill: mat-color($mat-yellow, 300) !important;
1880
- }
1881
- .fill-amber-300 {
1882
- fill: mat-color($mat-amber, 300) !important;
1883
- }
1884
- .fill-orange-300 {
1885
- fill: mat-color($mat-orange, 300) !important;
1886
- }
1887
- .fill-deep-orange-300 {
1888
- fill: mat-color($mat-deep-orange, 300) !important;
1889
- }
1890
- .fill-brown-300 {
1891
- fill: mat-color($mat-brown, 300) !important;
1892
- }
1893
- .fill-grey-300 {
1894
- fill: mat-color($mat-grey, 300) !important;
1895
- }
1896
- .fill-blue-grey-300 {
1897
- fill: mat-color($mat-blue-grey, 300) !important;
1898
- }
1899
-
1900
- // 400
1901
- .fill-red-400 {
1902
- fill: mat-color($mat-red, 400) !important;
1903
- }
1904
- .fill-pink-400 {
1905
- fill: mat-color($mat-pink, 400) !important;
1906
- }
1907
- .fill-purple-400 {
1908
- fill: mat-color($mat-purple, 400) !important;
1909
- }
1910
- .fill-deep-purple-400 {
1911
- fill: mat-color($mat-deep-purple, 400) !important;
1912
- }
1913
- .fill-indigo-400 {
1914
- fill: mat-color($mat-indigo, 400) !important;
1915
- }
1916
- .fill-blue-400 {
1917
- fill: mat-color($mat-blue, 400) !important;
1918
- }
1919
- .fill-light-blue-400 {
1920
- fill: mat-color($mat-light-blue, 400) !important;
1921
- }
1922
- .fill-cyan-400 {
1923
- fill: mat-color($mat-cyan, 400) !important;
1924
- }
1925
- .fill-teal-400 {
1926
- fill: mat-color($mat-teal, 400) !important;
1927
- }
1928
- .fill-green-400 {
1929
- fill: mat-color($mat-green, 400) !important;
1930
- }
1931
- .fill-light-green-400 {
1932
- fill: mat-color($mat-light-green, 400) !important;
1933
- }
1934
- .fill-lime-400 {
1935
- fill: mat-color($mat-lime, 400) !important;
1936
- }
1937
- .fill-yellow-400 {
1938
- fill: mat-color($mat-yellow, 400) !important;
1939
- }
1940
- .fill-amber-400 {
1941
- fill: mat-color($mat-amber, 400) !important;
1942
- }
1943
- .fill-orange-400 {
1944
- fill: mat-color($mat-orange, 400) !important;
1945
- }
1946
- .fill-deep-orange-400 {
1947
- fill: mat-color($mat-deep-orange, 400) !important;
1948
- }
1949
- .fill-brown-400 {
1950
- fill: mat-color($mat-brown, 400) !important;
1951
- }
1952
- .fill-grey-400 {
1953
- fill: mat-color($mat-grey, 400) !important;
1954
- }
1955
- .fill-blue-grey-400 {
1956
- fill: mat-color($mat-blue-grey, 400) !important;
1957
- }
1958
-
1959
- // 500
1960
- .fill-red-500 {
1961
- fill: mat-color($mat-red, 500) !important;
1962
- }
1963
- .fill-pink-500 {
1964
- fill: mat-color($mat-pink, 500) !important;
1965
- }
1966
- .fill-purple-500 {
1967
- fill: mat-color($mat-purple, 500) !important;
1968
- }
1969
- .fill-deep-purple-500 {
1970
- fill: mat-color($mat-deep-purple, 500) !important;
1971
- }
1972
- .fill-indigo-500 {
1973
- fill: mat-color($mat-indigo, 500) !important;
1974
- }
1975
- .fill-blue-500 {
1976
- fill: mat-color($mat-blue, 500) !important;
1977
- }
1978
- .fill-light-blue-500 {
1979
- fill: mat-color($mat-light-blue, 500) !important;
1980
- }
1981
- .fill-cyan-500 {
1982
- fill: mat-color($mat-cyan, 500) !important;
1983
- }
1984
- .fill-teal-500 {
1985
- fill: mat-color($mat-teal, 500) !important;
1986
- }
1987
- .fill-green-500 {
1988
- fill: mat-color($mat-green, 500) !important;
1989
- }
1990
- .fill-light-green-500 {
1991
- fill: mat-color($mat-light-green, 500) !important;
1992
- }
1993
- .fill-lime-500 {
1994
- fill: mat-color($mat-lime, 500) !important;
1995
- }
1996
- .fill-yellow-500 {
1997
- fill: mat-color($mat-yellow, 500) !important;
1998
- }
1999
- .fill-amber-500 {
2000
- fill: mat-color($mat-amber, 500) !important;
2001
- }
2002
- .fill-orange-500 {
2003
- fill: mat-color($mat-orange, 500) !important;
2004
- }
2005
- .fill-deep-orange-500 {
2006
- fill: mat-color($mat-deep-orange, 500) !important;
2007
- }
2008
- .fill-brown-500 {
2009
- fill: mat-color($mat-brown, 500) !important;
2010
- }
2011
- .fill-grey-500 {
2012
- fill: mat-color($mat-grey, 500) !important;
2013
- }
2014
- .fill-blue-grey-500 {
2015
- fill: mat-color($mat-blue-grey, 500) !important;
2016
- }
2017
-
2018
- // 600
2019
- .fill-red-600 {
2020
- fill: mat-color($mat-red, 600) !important;
2021
- }
2022
- .fill-pink-600 {
2023
- fill: mat-color($mat-pink, 600) !important;
2024
- }
2025
- .fill-purple-600 {
2026
- fill: mat-color($mat-purple, 600) !important;
2027
- }
2028
- .fill-deep-purple-600 {
2029
- fill: mat-color($mat-deep-purple, 600) !important;
2030
- }
2031
- .fill-indigo-600 {
2032
- fill: mat-color($mat-indigo, 600) !important;
2033
- }
2034
- .fill-blue-600 {
2035
- fill: mat-color($mat-blue, 600) !important;
2036
- }
2037
- .fill-light-blue-600 {
2038
- fill: mat-color($mat-light-blue, 600) !important;
2039
- }
2040
- .fill-cyan-600 {
2041
- fill: mat-color($mat-cyan, 600) !important;
2042
- }
2043
- .fill-teal-600 {
2044
- fill: mat-color($mat-teal, 600) !important;
2045
- }
2046
- .fill-green-600 {
2047
- fill: mat-color($mat-green, 600) !important;
2048
- }
2049
- .fill-light-green-600 {
2050
- fill: mat-color($mat-light-green, 600) !important;
2051
- }
2052
- .fill-lime-600 {
2053
- fill: mat-color($mat-lime, 600) !important;
2054
- }
2055
- .fill-yellow-600 {
2056
- fill: mat-color($mat-yellow, 600) !important;
2057
- }
2058
- .fill-amber-600 {
2059
- fill: mat-color($mat-amber, 600) !important;
2060
- }
2061
- .fill-orange-600 {
2062
- fill: mat-color($mat-orange, 600) !important;
2063
- }
2064
- .fill-deep-orange-600 {
2065
- fill: mat-color($mat-deep-orange, 600) !important;
2066
- }
2067
- .fill-brown-600 {
2068
- fill: mat-color($mat-brown, 600) !important;
2069
- }
2070
- .fill-grey-600 {
2071
- fill: mat-color($mat-grey, 600) !important;
2072
- }
2073
- .fill-blue-grey-600 {
2074
- fill: mat-color($mat-blue-grey, 600) !important;
2075
- }
2076
-
2077
- // 700
2078
- .fill-red-700 {
2079
- fill: mat-color($mat-red, 700) !important;
2080
- }
2081
- .fill-pink-700 {
2082
- fill: mat-color($mat-pink, 700) !important;
2083
- }
2084
- .fill-purple-700 {
2085
- fill: mat-color($mat-purple, 700) !important;
2086
- }
2087
- .fill-deep-purple-700 {
2088
- fill: mat-color($mat-deep-purple, 700) !important;
2089
- }
2090
- .fill-indigo-700 {
2091
- fill: mat-color($mat-indigo, 700) !important;
2092
- }
2093
- .fill-blue-700 {
2094
- fill: mat-color($mat-blue, 700) !important;
2095
- }
2096
- .fill-light-blue-700 {
2097
- fill: mat-color($mat-light-blue, 700) !important;
2098
- }
2099
- .fill-cyan-700 {
2100
- fill: mat-color($mat-cyan, 700) !important;
2101
- }
2102
- .fill-teal-700 {
2103
- fill: mat-color($mat-teal, 700) !important;
2104
- }
2105
- .fill-green-700 {
2106
- fill: mat-color($mat-green, 700) !important;
2107
- }
2108
- .fill-light-green-700 {
2109
- fill: mat-color($mat-light-green, 700) !important;
2110
- }
2111
- .fill-lime-700 {
2112
- fill: mat-color($mat-lime, 700) !important;
2113
- }
2114
- .fill-yellow-700 {
2115
- fill: mat-color($mat-yellow, 700) !important;
2116
- }
2117
- .fill-amber-700 {
2118
- fill: mat-color($mat-amber, 700) !important;
2119
- }
2120
- .fill-orange-700 {
2121
- fill: mat-color($mat-orange, 700) !important;
2122
- }
2123
- .fill-deep-orange-700 {
2124
- fill: mat-color($mat-deep-orange, 700) !important;
2125
- }
2126
- .fill-brown-700 {
2127
- fill: mat-color($mat-brown, 700) !important;
2128
- }
2129
- .fill-grey-700 {
2130
- fill: mat-color($mat-grey, 700) !important;
2131
- }
2132
- .fill-blue-grey-700 {
2133
- fill: mat-color($mat-blue-grey, 700) !important;
2134
- }
2135
-
2136
- // 800
2137
- .fill-red-800 {
2138
- fill: mat-color($mat-red, 800) !important;
2139
- }
2140
- .fill-pink-800 {
2141
- fill: mat-color($mat-pink, 800) !important;
2142
- }
2143
- .fill-purple-800 {
2144
- fill: mat-color($mat-purple, 800) !important;
2145
- }
2146
- .fill-deep-purple-800 {
2147
- fill: mat-color($mat-deep-purple, 800) !important;
2148
- }
2149
- .fill-indigo-800 {
2150
- fill: mat-color($mat-indigo, 800) !important;
2151
- }
2152
- .fill-blue-800 {
2153
- fill: mat-color($mat-blue, 800) !important;
2154
- }
2155
- .fill-light-blue-800 {
2156
- fill: mat-color($mat-light-blue, 800) !important;
2157
- }
2158
- .fill-cyan-800 {
2159
- fill: mat-color($mat-cyan, 800) !important;
2160
- }
2161
- .fill-teal-800 {
2162
- fill: mat-color($mat-teal, 800) !important;
2163
- }
2164
- .fill-green-800 {
2165
- fill: mat-color($mat-green, 800) !important;
2166
- }
2167
- .fill-light-green-800 {
2168
- fill: mat-color($mat-light-green, 800) !important;
2169
- }
2170
- .fill-lime-800 {
2171
- fill: mat-color($mat-lime, 800) !important;
2172
- }
2173
- .fill-yellow-800 {
2174
- fill: mat-color($mat-yellow, 800) !important;
2175
- }
2176
- .fill-amber-800 {
2177
- fill: mat-color($mat-amber, 800) !important;
2178
- }
2179
- .fill-orange-800 {
2180
- fill: mat-color($mat-orange, 800) !important;
2181
- }
2182
- .fill-deep-orange-800 {
2183
- fill: mat-color($mat-deep-orange, 800) !important;
2184
- }
2185
- .fill-brown-800 {
2186
- fill: mat-color($mat-brown, 800) !important;
2187
- }
2188
- .fill-grey-800 {
2189
- fill: mat-color($mat-grey, 800) !important;
2190
- }
2191
- .fill-blue-grey-800 {
2192
- fill: mat-color($mat-blue-grey, 800) !important;
2193
- }
2194
-
2195
- // 900
2196
- .fill-red-900 {
2197
- fill: mat-color($mat-red, 900) !important;
2198
- }
2199
- .fill-pink-900 {
2200
- fill: mat-color($mat-pink, 900) !important;
2201
- }
2202
- .fill-purple-900 {
2203
- fill: mat-color($mat-purple, 900) !important;
2204
- }
2205
- .fill-deep-purple-900 {
2206
- fill: mat-color($mat-deep-purple, 900) !important;
2207
- }
2208
- .fill-indigo-900 {
2209
- fill: mat-color($mat-indigo, 900) !important;
2210
- }
2211
- .fill-blue-900 {
2212
- fill: mat-color($mat-blue, 900) !important;
2213
- }
2214
- .fill-light-blue-900 {
2215
- fill: mat-color($mat-light-blue, 900) !important;
2216
- }
2217
- .fill-cyan-900 {
2218
- fill: mat-color($mat-cyan, 900) !important;
2219
- }
2220
- .fill-teal-900 {
2221
- fill: mat-color($mat-teal, 900) !important;
2222
- }
2223
- .fill-green-900 {
2224
- fill: mat-color($mat-green, 900) !important;
2225
- }
2226
- .fill-light-green-900 {
2227
- fill: mat-color($mat-light-green, 900) !important;
2228
- }
2229
- .fill-lime-900 {
2230
- fill: mat-color($mat-lime, 900) !important;
2231
- }
2232
- .fill-yellow-900 {
2233
- fill: mat-color($mat-yellow, 900) !important;
2234
- }
2235
- .fill-amber-900 {
2236
- fill: mat-color($mat-amber, 900) !important;
2237
- }
2238
- .fill-orange-900 {
2239
- fill: mat-color($mat-orange, 900) !important;
2240
- }
2241
- .fill-deep-orange-900 {
2242
- fill: mat-color($mat-deep-orange, 900) !important;
2243
- }
2244
- .fill-brown-900 {
2245
- fill: mat-color($mat-brown, 900) !important;
2246
- }
2247
- .fill-grey-900 {
2248
- fill: mat-color($mat-grey, 900) !important;
2249
- }
2250
- .fill-blue-grey-900 {
2251
- fill: mat-color($mat-blue-grey, 900) !important;
2252
- }
2253
-
2254
- // A100
2255
- .fill-red-A100 {
2256
- fill: mat-color($mat-red, A100) !important;
2257
- }
2258
- .fill-pink-A100 {
2259
- fill: mat-color($mat-pink, A100) !important;
2260
- }
2261
- .fill-purple-A100 {
2262
- fill: mat-color($mat-purple, A100) !important;
2263
- }
2264
- .fill-deep-purple-A100 {
2265
- fill: mat-color($mat-deep-purple, A100) !important;
2266
- }
2267
- .fill-indigo-A100 {
2268
- fill: mat-color($mat-indigo, A100) !important;
2269
- }
2270
- .fill-blue-A100 {
2271
- fill: mat-color($mat-blue, A100) !important;
2272
- }
2273
- .fill-light-blue-A100 {
2274
- fill: mat-color($mat-light-blue, A100) !important;
2275
- }
2276
- .fill-cyan-A100 {
2277
- fill: mat-color($mat-cyan, A100) !important;
2278
- }
2279
- .fill-teal-A100 {
2280
- fill: mat-color($mat-teal, A100) !important;
2281
- }
2282
- .fill-green-A100 {
2283
- fill: mat-color($mat-green, A100) !important;
2284
- }
2285
- .fill-light-green-A100 {
2286
- fill: mat-color($mat-light-green, A100) !important;
2287
- }
2288
- .fill-lime-A100 {
2289
- fill: mat-color($mat-lime, A100) !important;
2290
- }
2291
- .fill-yellow-A100 {
2292
- fill: mat-color($mat-yellow, A100) !important;
2293
- }
2294
- .fill-amber-A100 {
2295
- fill: mat-color($mat-amber, A100) !important;
2296
- }
2297
- .fill-orange-A100 {
2298
- fill: mat-color($mat-orange, A100) !important;
2299
- }
2300
- .fill-deep-orange-A100 {
2301
- fill: mat-color($mat-deep-orange, A100) !important;
2302
- }
2303
-
2304
- // A200
2305
- .fill-red-A200 {
2306
- fill: mat-color($mat-red, A200) !important;
2307
- }
2308
- .fill-pink-A200 {
2309
- fill: mat-color($mat-pink, A200) !important;
2310
- }
2311
- .fill-purple-A200 {
2312
- fill: mat-color($mat-purple, A200) !important;
2313
- }
2314
- .fill-deep-purple-A200 {
2315
- fill: mat-color($mat-deep-purple, A200) !important;
2316
- }
2317
- .fill-indigo-A200 {
2318
- fill: mat-color($mat-indigo, A200) !important;
2319
- }
2320
- .fill-blue-A200 {
2321
- fill: mat-color($mat-blue, A200) !important;
2322
- }
2323
- .fill-light-blue-A200 {
2324
- fill: mat-color($mat-light-blue, A200) !important;
2325
- }
2326
- .fill-cyan-A200 {
2327
- fill: mat-color($mat-cyan, A200) !important;
2328
- }
2329
- .fill-teal-A200 {
2330
- fill: mat-color($mat-teal, A200) !important;
2331
- }
2332
- .fill-green-A200 {
2333
- fill: mat-color($mat-green, A200) !important;
2334
- }
2335
- .fill-light-green-A200 {
2336
- fill: mat-color($mat-light-green, A200) !important;
2337
- }
2338
- .fill-lime-A200 {
2339
- fill: mat-color($mat-lime, A200) !important;
2340
- }
2341
- .fill-yellow-A200 {
2342
- fill: mat-color($mat-yellow, A200) !important;
2343
- }
2344
- .fill-amber-A200 {
2345
- fill: mat-color($mat-amber, A200) !important;
2346
- }
2347
- .fill-orange-A200 {
2348
- fill: mat-color($mat-orange, A200) !important;
2349
- }
2350
- .fill-deep-orange-A200 {
2351
- fill: mat-color($mat-deep-orange, A200) !important;
2352
- }
2353
-
2354
- // A400
2355
- .fill-red-A400 {
2356
- fill: mat-color($mat-red, A400) !important;
2357
- }
2358
- .fill-pink-A400 {
2359
- fill: mat-color($mat-pink, A400) !important;
2360
- }
2361
- .fill-purple-A400 {
2362
- fill: mat-color($mat-purple, A400) !important;
2363
- }
2364
- .fill-deep-purple-A400 {
2365
- fill: mat-color($mat-deep-purple, A400) !important;
2366
- }
2367
- .fill-indigo-A400 {
2368
- fill: mat-color($mat-indigo, A400) !important;
2369
- }
2370
- .fill-blue-A400 {
2371
- fill: mat-color($mat-blue, A400) !important;
2372
- }
2373
- .fill-light-blue-A400 {
2374
- fill: mat-color($mat-light-blue, A400) !important;
2375
- }
2376
- .fill-cyan-A400 {
2377
- fill: mat-color($mat-cyan, A400) !important;
2378
- }
2379
- .fill-teal-A400 {
2380
- fill: mat-color($mat-teal, A400) !important;
2381
- }
2382
- .fill-green-A400 {
2383
- fill: mat-color($mat-green, A400) !important;
2384
- }
2385
- .fill-light-green-A400 {
2386
- fill: mat-color($mat-light-green, A400) !important;
2387
- }
2388
- .fill-lime-A400 {
2389
- fill: mat-color($mat-lime, A400) !important;
2390
- }
2391
- .fill-yellow-A400 {
2392
- fill: mat-color($mat-yellow, A400) !important;
2393
- }
2394
- .fill-amber-A400 {
2395
- fill: mat-color($mat-amber, A400) !important;
2396
- }
2397
- .fill-orange-A400 {
2398
- fill: mat-color($mat-orange, A400) !important;
2399
- }
2400
- .fill-deep-orange-A400 {
2401
- fill: mat-color($mat-deep-orange, A400) !important;
2402
- }
2403
-
2404
- // A700
2405
- .fill-red-A700 {
2406
- fill: mat-color($mat-red, A700) !important;
2407
- }
2408
- .fill-pink-A700 {
2409
- fill: mat-color($mat-pink, A700) !important;
2410
- }
2411
- .fill-purple-A700 {
2412
- fill: mat-color($mat-purple, A700) !important;
2413
- }
2414
- .fill-deep-purple-A700 {
2415
- fill: mat-color($mat-deep-purple, A700) !important;
2416
- }
2417
- .fill-indigo-A700 {
2418
- fill: mat-color($mat-indigo, A700) !important;
2419
- }
2420
- .fill-blue-A700 {
2421
- fill: mat-color($mat-blue, A700) !important;
2422
- }
2423
- .fill-light-blue-A700 {
2424
- fill: mat-color($mat-light-blue, A700) !important;
2425
- }
2426
- .fill-cyan-A700 {
2427
- fill: mat-color($mat-cyan, A700) !important;
2428
- }
2429
- .fill-teal-A700 {
2430
- fill: mat-color($mat-teal, A700) !important;
2431
- }
2432
- .fill-green-A700 {
2433
- fill: mat-color($mat-green, A700) !important;
2434
- }
2435
- .fill-light-green-A700 {
2436
- fill: mat-color($mat-light-green, A700) !important;
2437
- }
2438
- .fill-lime-A700 {
2439
- fill: mat-color($mat-lime, A700) !important;
2440
- }
2441
- .fill-yellow-A700 {
2442
- fill: mat-color($mat-yellow, A700) !important;
2443
- }
2444
- .fill-amber-A700 {
2445
- fill: mat-color($mat-amber, A700) !important;
2446
- }
2447
- .fill-orange-A700 {
2448
- fill: mat-color($mat-orange, A700) !important;
2449
- }
2450
- .fill-deep-orange-A700 {
2451
- fill: mat-color($mat-deep-orange, A700) !important;
2452
- }
2453
-
2454
- // Black
2455
- .fill-black {
2456
- fill: rgba(black, 87) !important;
2457
- }
2458
- .fill-black-1 {
2459
- fill: rgba(black, 54) !important;
2460
- }
2461
- .fill-black-2 {
2462
- fill: rgba(black, 38) !important;
2463
- }
2464
- .fill-black-3 {
2465
- fill: rgba(black, 0.12) !important;
2466
- }
2467
- .fill-black-4 {
2468
- fill: black !important;
2469
- }
2470
-
2471
- // White
2472
- .fill-white {
2473
- fill: rgba(white, 0.7) !important;
2474
- }
2475
- .fill-white-1 {
2476
- fill: rgba(white, 0.3) !important;
2477
- }
2478
- .fill-white-2 {
2479
- fill: rgba(white, 0.3) !important;
2480
- }
2481
- .fill-white-3 {
2482
- fill: rgba(white, 0.12) !important;
2483
- }
2484
- .fill-white-4 {
2485
- fill: white !important;
2486
- }
2487
- }