Replace deprecated use of division operator wiith call to math.div

This commit is contained in:
Ben Anderson 2024-06-11 15:35:53 +12:00
parent 4236077572
commit b252b86cfa
No known key found for this signature in database

View File

@ -184,10 +184,10 @@
@function bulmaColorBrightness($n) {
$color-brightness: round(
((red($n) * 299) + (green($n) * 587) + (blue($n) * 114)) / 1000
math.div((red($n) * 299) + (green($n) * 587) + (blue($n) * 114), 1000)
);
$light-color: round(
((red(#ffffff) * 299) + (green(#ffffff) * 587) + (blue(#ffffff) * 114)) / 1000
math.div((red(#ffffff) * 299) + (green(#ffffff) * 587) + (blue(#ffffff) * 114), 1000)
);
@if abs($color-brightness) < math.div($light-color, 2) {