Skip to content

Instantly share code, notes, and snippets.

@ahaywood
Created March 23, 2017 15:43
Show Gist options
  • Save ahaywood/7e49c8243b7fc628d13e96cae0573fc4 to your computer and use it in GitHub Desktop.
Save ahaywood/7e49c8243b7fc628d13e96cae0573fc4 to your computer and use it in GitHub Desktop.
Sass Conditionals
$white-theme: true !default;
@if $white-theme {
@debug “we’re using the #{$white-theme}”;
background: white;
text: black;
} @else {
@debug “we’re using the #{$black-theme}”;
background: black;
text: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment