@use 'sass:map';
@use '~@angular/material' as mat;
@use '~@mtna/core-angular' as mtna;

@mixin color($theme) {
  rds-c-data-dictionary-table {
    @include mtna.ghost-table-theme($theme);
    @include mtna.resizable-table-theme($theme);
  }
}

@mixin typography($theme) {
}

@mixin theme($theme) {
  $config: mat.get-color-config($theme);
  @if $config != null {
    @include color($theme);
  }

  $typography-config: mat.get-typography-config($theme);
  @if $typography-config != null {
    @include typography($theme);
  }
}
