@use '@angular/material' as mat;
@use './palette';
@use '../typography/typography' as typo;

$light-theme: mat.m2-define-light-theme(
  (
    color: (
      primary: mat.m2-define-palette(palette.$primary-light-palette),
      accent: mat.m2-define-palette(palette.$secondary-light-palette)
    ),
    typography: typo.$typography-config,
    is-dark: false
  )
);

$dark-theme: mat.m2-define-dark-theme(
  (
    color: (
      primary: mat.m2-define-palette(palette.$primary-dark-palette),
      accent: mat.m2-define-palette(palette.$secondary-dark-palette)
    ),
    typography: typo.$typography-config,
    is-dark: true
  )
);
