I've found a half-dozen functions online for determining the luminance of a color in Sass. They are all almost identical, but none of them are working - all throwing the same error:
invalid operands for multiplication
This is the function I am currently using:
@function luminance($color){
$rgba: red($color), green($color), blue($color);
$rgba2: ();
@for $i from 1 through 3 {
$rgb: nth($rgba, $i);
$rgb: $rgb / 255;
$rgb: if($rgb < .03928, $rgb / 12.92, pow(($rgb + .055) / 1.055, 2.4));
$rgba2: append($rgba2, $rgb);
}
@return (.2126 * nth($rgba2, 1) + .7152 * nth($rgba2, 2) + 0.0722 * nth($rgba2, 3))*100;
}
The error is referring to the last line in that function. All of the other functions I have tried (which work the same basic way) throw the same error.
Math is now part of the build-in Sass modules