123456789101112131415161718192021222324252627282930 |
- "use strict";
- /**
- * @license
- * Copyright Google LLC All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.dev/license
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.createCustomTheme = createCustomTheme;
- /** Create custom theme for the given application configuration. */
- function createCustomTheme(name = 'app') {
- return `
- // Custom Theming for Angular Material
- // For more information: https://material.angular.dev/guide/theming
- @use '@angular/material' as mat;
- html {
- @include mat.theme((
- color: (
- theme-type: light,
- primary: mat.$azure-palette,
- tertiary: mat.$blue-palette,
- ),
- typography: Roboto,
- density: 0,
- ));
- }`;
- }
- //# sourceMappingURL=create-custom-theme.js.map
|