// Custom Theming for Angular Material // For more information: https://material.angular.io/guide/theming @import '~@angular/material/theming'; // Plus imports for other components in your app. // 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(); // importing the themes from our theme files @import "./themes/standard-theme"; @import "./themes/green-theme"; // 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. // for own components, i.e. non material component we like to use the same style/palettes .standard-theme { @include angular-material-theme($standard-theme); h1 { color: mat-color($standard-theme-primary)} } .green-theme { @include angular-material-theme($green-theme); h1 { color: mat-color($green-theme-primary)} } /* 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; } .flex-spacer { flex: 1 1 auto; }