|
|
|
@ -9,9 +9,17 @@ $theme-contrast-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
|
|
|
$theme-contrast-warn: mat.define-palette(mat.$red-palette);
|
|
|
|
|
|
|
|
|
|
// Create the theme object (a Sass map containing all of the palettes).
|
|
|
|
|
$theme-contrast: mat.define-light-theme($theme-contrast-primary, $theme-contrast-accent, $theme-contrast-warn);
|
|
|
|
|
$theme-contrast: mat.define-light-theme(
|
|
|
|
|
(
|
|
|
|
|
color: (
|
|
|
|
|
primary: $theme-contrast-primary,
|
|
|
|
|
accent: $theme-contrast-accent,
|
|
|
|
|
warn: $theme-contrast-warn,
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// 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($theme-contrast);
|
|
|
|
|
// @include mat.all-component-themes($theme-contrast);
|
|
|
|
|