surpressimg sass warnings

This commit is contained in:
Yohn 2024-11-10 11:27:44 -05:00
parent 4825b265c7
commit a085c20d2f
247 changed files with 9469 additions and 10096 deletions

View file

@ -24,7 +24,9 @@
@function brightness($color) {
$color-brightness: round(
math.div(
(color.red($color) * 299) + (color.green($color) * 587) + (color.blue($color) * 114),
(color.channel($color, "red", $space: rgb) * 299) +
(color.channel($color, "green", $space: rgb) * 587) +
(color.channel($color, "blue", $space: rgb) * 114),
1000
)
);