From f2a174f68a385fd6164cf1ea77926cb52330898b Mon Sep 17 00:00:00 2001 From: Eduard Gorte Date: Wed, 18 Dec 2024 13:56:02 +0300 Subject: [PATCH] docs(material/theming): fix typo in custom theme guide --- src/material/schematics/ng-generate/theme-color/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/material/schematics/ng-generate/theme-color/README.md b/src/material/schematics/ng-generate/theme-color/README.md index 354f2a2538c0..1a9330d05e60 100644 --- a/src/material/schematics/ng-generate/theme-color/README.md +++ b/src/material/schematics/ng-generate/theme-color/README.md @@ -63,14 +63,14 @@ provided to the `theme` mixin within your theme file to use the custom colors. @use './path/to/_theme-colors' as my-theme; // location of generated file html { - @include mat.theme( + @include mat.theme(( color: ( primary: my-theme.$primary-palette, tertiary: my-theme.$tertiary-palette, ), typography: Roboto, density: 0, - ) + )); } ```