Skip to content

Instantly share code, notes, and snippets.

@csswizardry
Created October 21, 2014 18:30
Show Gist options
  • Save csswizardry/cd9aef2c0d4ea84a4123 to your computer and use it in GitHub Desktop.
Save csswizardry/cd9aef2c0d4ea84a4123 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.6)
// Compass (v1.0.1)
// ----
// _colors.scss
// Literal names
$color-brand: #BADA55;
$color-red: #c00;
// Reassigned names
$color-links: $color-brand;
$color-btn-background: $color-red;
// _links.scss
a {
color: $color-links;
}
// _box.scss
.box {
color: $color-btn-background;
}
a {
color: #BADA55;
}
.box {
color: #c00;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment