[AAE-17674] Solve deprecation warning in the theme creation (#9247)

This commit is contained in:
Eugenio Romano
2024-01-16 18:05:31 +01:00
committed by GitHub
parent 2922f8f620
commit bbd41715b0

View File

@@ -5,7 +5,7 @@
@function multiply($fore, $back) { @function multiply($fore, $back) {
$red: math.div(color.red($back) * color.red($fore), 255); $red: math.div(color.red($back) * color.red($fore), 255);
$green: math.div(color.green($back) * color.green($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); @return rgb($red, $green, $blue);
} }