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