@use '@angular/material' as mat;
@use '@angular/cdk' as cdk;

cdk.$overlay-container-z-index: 10;

@include mat.core();

// Define the theme.
$candy-app-primary: mat.define-palette(mat.$indigo-palette);
$candy-app-accent:  mat.define-palette(mat.$pink-palette, A200, A100, A400);
$candy-app-theme:   mat.define-light-theme($candy-app-primary, $candy-app-accent);

// Include the theme styles for only specified components.
@include mat.core-theme($candy-app-theme);


