@use '@angular/material' as mat;
@mixin sc-document-categories-theme($theme) {
  $primary: map-get($theme, primary);
  $background: map-get($theme, background);
  $foreground: map-get($theme, foreground);

  .l-doc-categories {
    &__doc {
      border-color: mat.get-color-from-palette($foreground, divider) !important;
      background-color: mat.get-color-from-palette($background, background);
    }

    &__list {  
      .secondary-text {
        color: mat.get-color-from-palette($foreground, secondary-text);
      }
    }
  }
}
