Skip to content

Instantly share code, notes, and snippets.

@mrowa44
Last active August 10, 2016 13:30
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 mrowa44/cb9e1ec621a35bd28d894e13f864cc06 to your computer and use it in GitHub Desktop.
Save mrowa44/cb9e1ec621a35bd28d894e13f864cc06 to your computer and use it in GitHub Desktop.
@mixin theme($prop, $darkcolor, $lightcolor) {
.Dark & {
#{$prop}: #{$darkcolor};
}
.Light & {
#{$prop}: #{$lightcolor};
}
}
// @include theme('background-color', #333, white)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment