Skip to content

Instantly share code, notes, and snippets.

@ericjames
Created October 9, 2017 19:39
Show Gist options
  • Save ericjames/a6c191de63655980ac61b4cebc0833af to your computer and use it in GitHub Desktop.
Save ericjames/a6c191de63655980ac61b4cebc0833af to your computer and use it in GitHub Desktop.
SASS Mixin for Color and Background
@mixin setColor($property, $varName, $color) {
@if $property == 'text' {
color: $color;
color: var($varName, $color);
}
@if $property == 'background' {
background: $color;
background: var($varName, $color);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment