Skip to content

Instantly share code, notes, and snippets.

@csswizardry
Created August 26, 2015 13:45
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 csswizardry/1712e61355494676f9ff to your computer and use it in GitHub Desktop.
Save csswizardry/1712e61355494676f9ff to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class=foo>
Hello world
</div>
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
// _settings.palette.scss
$color-brand: #BADA55;
$color-shadow: darken($color-brand, 10%);
$color-foo: $color-shadow;
$font-weight-foo: normal;
// _components.foo.scss
.foo {
font-weight: $font-weight-foo;
color: $color-foo;
}
.foo {
font-weight: normal;
color: #a8cf2d;
}
<div class=foo>
Hello world
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment