@use '@angular/material' as mat;
@use '../definition' as mtx;
@use '../color-api-backwards-compatibility';
@use '../all-theme';

$config: (
  color: (
    theme-type: dark,
    primary: mat.$magenta-palette,
    tertiary: mat.$violet-palette,
  ),
  density: (
    scale: 0,
  )
);

$theme: mat.private-deep-merge-all(
  mat.define-theme($config),
  mtx.define-theme($config),
);

html {
  @include all-theme.all-component-themes($theme);
}

@include color-api-backwards-compatibility.color-variants-backwards-compatibility($theme);
