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

@mixin color($theme) {
  $config: mat.get-color-config($theme);
  $foreground: map.get($config, foreground);
  $background: map.get($config, background);

  rds-c-tabulation-sort-options {
    .mat-caption {
      color: mat.get-color-from-palette($foreground, text);
    }
    .mat-icon-button:not([disabled]) {
      border-color: mat.get-color-from-palette($foreground, divider);
      &:hover {
        background: map-get($background, hover);
      }
    }
  }
}

@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);
  }
}
