mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
17 lines
858 B
SCSS
17 lines
858 B
SCSS
|
// Define the palettes for your theme using the Material Design palettes available in palette.scss
|
||
|
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
|
||
|
// hue. Available color palettes: https://material.io/design/color/
|
||
|
$theme-light-primary: mat-palette($mat-indigo);
|
||
|
$theme-light-accent: mat-palette($mat-pink, A200, A100, A400);
|
||
|
|
||
|
// The warn palette is optional (defaults to red).
|
||
|
$theme-light-warn: mat-palette($mat-red);
|
||
|
|
||
|
// Create the theme object (a Sass map containing all of the palettes).
|
||
|
$theme-light: mat-light-theme($theme-light-primary, $theme-light-accent, $theme-light-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 angular-material-theme($theme-light);
|