dev@275: @import '~@angular/material/theming'; dev@275: // Plus imports for other components in your app. dev@275: dev@275: // Include the common styles for Angular Material. We include this here so that you only dev@275: // have to load a single css file for Angular Material in your app. dev@275: // Be sure that you only ever include this mixin once! dev@275: @include mat-core(); dev@275: dev@278: // Generated with http://mcg.mbitson.com - seeded with base colour of #0868ac dev@278: // The contrast colours are taken from $mat-indigo dev@278: $md-ugly-blue: map-merge($mat-indigo, ( dev@278: 50 : #e1edf5, dev@278: 100 : #b5d2e6, dev@278: 200 : #84b4d6, dev@278: 300 : #5295c5, dev@278: 400 : #2d7fb8, dev@278: 500 : #0868ac, dev@278: 600 : #0760a5, dev@278: 700 : #06559b, dev@278: 800 : #044b92, dev@278: 900 : #023a82, dev@278: A100 : #afccff, dev@278: A200 : #7cabff, dev@278: A400 : #498bff, dev@278: A700 : #307bff, dev@278: )); dev@278: dev@275: // Define the palettes for your theme using the Material Design palettes available in palette.scss dev@275: // (imported above). For each palette, you can optionally specify a default, lighter, and darker dev@275: // hue. dev@278: $candy-app-primary: mat-palette($md-ugly-blue); dev@275: $candy-app-accent: mat-palette($mat-pink, A200, A100, A400); dev@275: dev@275: // The warn palette is optional (defaults to red). dev@275: $candy-app-warn: mat-palette($mat-red); dev@275: dev@275: // Create the theme object (a Sass map containing all of the palettes). dev@275: $candy-app-theme: mat-light-theme($candy-app-primary, $candy-app-accent, $candy-app-warn); dev@275: dev@275: // Include theme styles for core and each component used in your app. dev@275: // Alternatively, you can import and @include the theme mixins for each component dev@275: // that you are using. dev@275: @include angular-material-theme($candy-app-theme);