@import '~@angular/material/_theming.scss';

@mixin _mat-toolbar-color($palette) {
  background: mat-color($palette);
  color: mat-color($palette, default-contrast);
}

@mixin ai-toolbar-theme($theme) {
  $black: map-get($theme, black);
  $white: map-get($theme, white);

  .mat-toolbar {
    &.mat-black {
      color: $white;
    }
  }
}
