You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
996 B
26 lines
996 B
// Define the palettes for your theme using the Material Design palettes available in palette.scss
|
|
@use '@angular/material' as mat;
|
|
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
|
|
// hue. Available color palettes: https://material.io/design/color/
|
|
$theme-dark-primary: mat.define-palette(mat.$indigo-palette);
|
|
$theme-dark-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
|
|
// The warn palette is optional (defaults to red).
|
|
$theme-dark-warn: mat.define-palette(mat.$red-palette);
|
|
|
|
// Create the theme object (a Sass map containing all of the palettes).
|
|
$theme-dark: mat.define-dark-theme(
|
|
(
|
|
color: (
|
|
primary: $theme-dark-primary,
|
|
accent: $theme-dark-accent,
|
|
warn: $theme-dark-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-dark);
|