Add Godot priorities page (#955)

Co-authored-by: Emi <2206700+coppolaemilio@users.noreply.github.com>
This commit is contained in:
Adam Scott
2024-12-02 15:44:47 -05:00
committed by GitHub
parent c0da3f39d9
commit 6f0e01cbc9
82 changed files with 2889 additions and 684 deletions

View File

@@ -1,3 +1,6 @@
//
// Functions
//
@function offset-hue($color, $offset, $i: 1) {
@return adjust-hue($color, $offset * $i);
}
@@ -51,3 +54,18 @@
@function r-get-mobile($value) {
@return map-get($value, "mobile");
}
//
// Mixins
//
@mixin is-dark() {
@media screen and (prefers-color-scheme: dark) {
@content;
}
}
@mixin is-light() {
@media screen and (prefers-color-scheme: light) {
@content;
}
}