Created
March 7, 2021 16:37
-
-
Save zastrow/9eb6934a72572d91c665f8d50d105b7a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simplified version of color schemes. Options are `light` or `dark` | |
@mixin color-mode($value: light) { | |
@media (prefers-color-scheme: $value) { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment