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

@ -1,6 +1,13 @@
@use "sass:color";
@use "sass:string";
// Display color as RGB
@function display-rgb($color) {
@return unquote("rgb(" + red($color) + ", " + green($color) + ", " + blue($color) + ")");
@return string.unquote(
"rgb(" + color.channel($color, "red", $space: rgb) + ", " +
color.channel($color, "green", $space: rgb) + ", " +
color.channel($color, "blue", $space: rgb) + ")"
);
}
// Generate a shadow layer