// Custom Theming for Angular Material // For more information: https://material.angular.io/guide/theming @use 'sass:map'; @use '@angular/material' as mat; // Plus imports for other components in your app. @import "src/app/themes/light-theme"; @import "src/app/themes/dark-theme"; // Include the common styles for Angular Material. We include this here so that you only // have to load a single css file for Angular Material in your app. // Be sure that you only ever include this mixin once! @include mat.core(); // Include theme styles for core and each component used in your app. // Alternatively, you can import and @include the theme mixins for each component // that you are using. @include mat.all-component-themes($light-theme); .darkMode { @include mat.all-component-colors($dark-theme); } /* You can add global styles to this file, and also import other style files */ html, body { height: 100%; } body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; } html { overflow-y: scroll; } .formatted-snackbar { // add support for formatting (newlines) white-space: pre-wrap; }