Material Theme Builder
@import '~@angular/material/theming';
@include mat-core();

$theme-accent: (
  100: #ffc6d9,
  200: #ffa0c0,
  300: #ff79a7,
  400: #ff5d94,
  50: #ffe8f0,
  500: #ff4081,
  600: #ff3a79,
  700: #ff326e,
  800: #ff2a64,
  900: #ff1c51,
  A100: #ffffff,
  A200: #ffeef4,
  A400: #ffbbd1,
  A700: #ffa1bf,
  contrast: (
    50 : #000000,
    100 : #000000,
    200 : #000000,
    300 : #ffffff,
    400 : #ffffff,
    500 : #ffffff,
    600 : #ffffff,
    700 : #ffffff,
    800 : #ffffff,
    900 : #ffffff,
    A100 : #000000,
    A200 : #ffffff,
    A400 : #ffffff,
    A700 : #ffffff,
  )
);

$theme-primary: (
  100: #c5cbe9,
  200: #9fa8da,
  300: #7985cb,
  400: #5c6bc0,
  50: #e8eaf6,
  500: #3f51b5,
  600: #394aae,
  700: #3140a5,
  800: #29379d,
  900: #1b278d,
  A100: #ced5ff,
  A200: #9baaff,
  A400: #687eff,
  A700: #4e68ff,
  contrast: (
    50 : #000000,
    100 : #000000,
    200 : #000000,
    300 : #ffffff,
    400 : #ffffff,
    500 : #ffffff,
    600 : #ffffff,
    700 : #ffffff,
    800 : #ffffff,
    900 : #ffffff,
    A100 : #000000,
    A200 : #ffffff,
    A400 : #ffffff,
    A700 : #ffffff,
  )
);

$theme-warn: (
  100: #fcc7c3,
  200: #faa19b,
  300: #f77b72,
  400: #f65f54,
  50: #fee8e7,
  500: #f44336,
  600: #f33d30,
  700: #f13429,
  800: #ef2c22,
  900: #ec1e16,
  A100: #ffffff,
  A200: #ffdbd8,
  A400: #ffaba5,
  A700: #ff938b,
  contrast: (
    50 : #000000,
    100 : #000000,
    200 : #000000,
    300 : #ffffff,
    400 : #ffffff,
    500 : #ffffff,
    600 : #ffffff,
    700 : #ffffff,
    800 : #ffffff,
    900 : #ffffff,
    A100 : #000000,
    A200 : #ffffff,
    A400 : #ffffff,
    A700 : #ffffff,
  )
);

$theme-primary-palette: mat-palette($theme-primary);
$theme-accent-palette:  mat-palette($theme-accent, 500, 900, A100);
$theme-warn-palette:    mat-palette($theme-warn);

$theme: mat-light-theme($theme-primary-palette, $theme-accent-palette, $theme-warn-palette);

@include angular-material-theme($theme);