@use 'components/buttons'as buttons;
@use 'components/inputs'as inputs;
@use 'components/tabs'as tabs;
@use './material-symbols'as matSymbols;

@mixin deja-material-theme($theme) {

    #dpi {
        @include buttons.buttons-theme($theme);
        @include inputs.inputs-theme($theme);
        @include tabs.tabs-theme($theme);
    }

    .mat-icon {
        font-family: matSymbols.$fontFamily;
    }

    .filled {
        font-variation-settings: "FILL"1;
    }
}
