From e07b9707ce89fbcbd6e700dffa9482c6a982acbc Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Fri, 26 Apr 2024 10:27:15 +0200 Subject: [PATCH] fix(material/core): export all available M3 palettes Fixes that the `$spring-green-palette` wasn't being exported. Fixes #28924. --- guides/material-3.md | 1 + src/material/_index.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/guides/material-3.md b/guides/material-3.md index 6dba646d8da5..54cdde820339 100644 --- a/guides/material-3.md +++ b/guides/material-3.md @@ -70,6 +70,7 @@ used with the `primary` and `tertiary` options: - `$magenta-palette` - `$orange-palette` - `$chartreuse-palette` +- `$spring-green-palette` - `$azure-palette` - `$violet-palette` - `$rose-palette` diff --git a/src/material/_index.scss b/src/material/_index.scss index 962cd3343504..c94bc0c80f9d 100644 --- a/src/material/_index.scss +++ b/src/material/_index.scss @@ -8,7 +8,7 @@ define-density; @forward './core/theming/palettes' show $red-palette, $green-palette, $blue-palette, $yellow-palette, $cyan-palette, $magenta-palette, $orange-palette, - $chartreuse-palette, $azure-palette, $violet-palette, $rose-palette; + $chartreuse-palette, $spring-green-palette, $azure-palette, $violet-palette, $rose-palette; @forward './core/theming/color-api-backwards-compatibility' show color-variants-backwards-compatibility;