@use 'sass:map'; @use "~@angular/material" as mat; @use 'src/app/app.component-theme' as app; @use 'app/components/shared/file/file-multiview/file-grid/file-grid-entry/file-grid-entry.component-theme' as file-grid-entry; @use 'app/components/shared/sidebar/file-search/file-search.component-theme' as file-search; @use "app/components/shared/file/file-multiview/file-gallery/file-gallery-entry/file-gallery-entry.component-theme" as gallery-entry; @include mat.core(); $theme: mat.define-dark-theme(( color: ( primary: mat.define-palette(mat.$purple-palette, 700, 500, 800), accent: mat.define-palette(mat.$green-palette, A200, A100, A400), warn: mat.define-palette(mat.$red-palette), background: mat.define-palette(mat.$blue-grey-palette) ), typography: mat.define-typography-config( $font-family: 'Noto Sans', ) )); @include mat.all-component-themes($theme); @include app.theme($theme); @include file-grid-entry.theme($theme); @include file-search.theme($theme); @include gallery-entry.theme($theme);