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

@mixin color($theme) {
  $config: mat.get-color-config($theme);

  rds-c-tabulation-display-options {
    .mat-button-toggle-group .mat-button-toggle.mat-button-toggle-appearance-standard:not(.mat-button-toggle-checked) {
      background-color: transparent;
    }
  }
}

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