Skip to content

Commit

Permalink
[AAE-17674] Solve deprecation warning in the theme creation (#9247)
Browse files Browse the repository at this point in the history
  • Loading branch information
eromano authored Jan 16, 2024
1 parent 2922f8f commit bbd4171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/custom-theme/theme/custom-palette-creator.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit bbd4171

Please sign in to comment.