Sha256: d6dfe8b06e88416adf3eb494328c303b80377d240e3ee57375c9b15fad726b43
Contents?: true
Size: 670 Bytes
Versions: 22
Compression:
Stored size: 670 Bytes
Contents
@use '@angular/material' as mat; @include mat.core(); // Define a dark theme $dark-theme: mat.define-dark-theme(( color: ( primary: mat.define-palette(mat.$blue-palette), accent: mat.define-palette(mat.$blue-grey-palette), ), // Only include `typography` and `density` in the default dark theme. typography: mat.define-typography-config(), density: 0, )); // Define a light theme $light-theme: mat.define-light-theme(( color: ( primary: mat.define-palette(mat.$indigo-palette), accent: mat.define-palette(mat.$pink-palette), ), )); // Apply the dark theme by default @include mat.core-theme($dark-theme); @include mat.button-theme($dark-theme);
Version data entries
22 entries across 22 versions & 1 rubygems