Added Notifications 12

This commit is contained in:
Yohn 2024-11-10 11:53:24 -05:00
parent 2c8e70a149
commit 84ed38efc9
240 changed files with 4885 additions and 119 deletions

View file

@ -1,6 +1,7 @@
@use "sass:color";
@use "sass:math";
@use "sass:map";
@use "sass:string";
@use "settings";
// Determines if the foreground needs to be light or dark
@ -54,5 +55,5 @@
// 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) + ")");
}