Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created March 7, 2021 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zastrow/9eb6934a72572d91c665f8d50d105b7a to your computer and use it in GitHub Desktop.
Save zastrow/9eb6934a72572d91c665f8d50d105b7a to your computer and use it in GitHub Desktop.
// 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