@use '@angular/material' as mat;
@use '../all-theme';

// Define a theme.
$primary: mat.m2-define-palette(mat.$m2-deep-purple-palette);
$accent:  mat.m2-define-palette(mat.$m2-amber-palette, A200, A100, A400);

$theme: mat.m2-define-light-theme(
  (
    color: (
      primary: $primary,
      accent: $accent,
    ),
    typography: mat.m2-define-typography-config(),
    density: 0,
  )
);

// Include all theme styles for the components.
@include all-theme.all-component-themes($theme);
