From a6cae235c03085718567b3e9525cbf5d50a07e9c Mon Sep 17 00:00:00 2001 From: Andrew Seguin Date: Wed, 28 May 2025 05:35:35 -0600 Subject: [PATCH] fix(material/toolbar): use system surface for neutral background --- src/material/toolbar/_m2-toolbar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/material/toolbar/_m2-toolbar.scss b/src/material/toolbar/_m2-toolbar.scss index 4d9acf2d4aa0..64ae0dc9c02c 100644 --- a/src/material/toolbar/_m2-toolbar.scss +++ b/src/material/toolbar/_m2-toolbar.scss @@ -11,7 +11,7 @@ // Tokens that can be configured through Angular Material's color theming API. @function get-color-tokens($theme) { @return private-get-color-palette-color-tokens( - $background-color: inspection.get-theme-color($theme, background, app-bar), + $background-color: inspection.get-theme-color($theme, system, surface), $text-color: inspection.get-theme-color($theme, system, on-surface), ); }