From bbd41715b04294a8357d042da5a62885bf2cd214 Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Tue, 16 Jan 2024 18:05:31 +0100 Subject: [PATCH] [AAE-17674] Solve deprecation warning in the theme creation (#9247) --- lib/core/custom-theme/theme/custom-palette-creator.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/custom-theme/theme/custom-palette-creator.scss b/lib/core/custom-theme/theme/custom-palette-creator.scss index 54730f2fca1..b86bfe8f787 100644 --- a/lib/core/custom-theme/theme/custom-palette-creator.scss +++ b/lib/core/custom-theme/theme/custom-palette-creator.scss @@ -5,7 +5,7 @@ @function multiply($fore, $back) { $red: math.div(color.red($back) * color.red($fore), 255); $green: math.div(color.green($back) * color.green($fore), 255); - $blue: math.div(color.blue($back) * color.blue($fore), 255) + $blue: math.div(color.blue($back) * color.blue($fore), 255); @return rgb($red, $green, $blue); }