mirror of
https://github.com/picocss/pico.git
synced 2025-04-27 19:46:14 -04:00
Added Notifications 12
This commit is contained in:
parent
2c8e70a149
commit
84ed38efc9
240 changed files with 4885 additions and 119 deletions
|
@ -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) + ")");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue