Skip to content

Instantly share code, notes, and snippets.

@kenwheeler
Created October 4, 2014 13:38
Show Gist options
  • Save kenwheeler/aaa64049d8cf700481d1 to your computer and use it in GitHub Desktop.
Save kenwheeler/aaa64049d8cf700481d1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
$primaryColor: #eeccff;
body {
$primaryColor: #ccc !global;
background: $primaryColor;
}
p {
color: $primaryColor;
}
// When compiled, our paragraph selector's color is #ccc
body {
background: #ccc;
}
p {
color: #ccc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment