Skip to content

Instantly share code, notes, and snippets.

@devbyray
Last active August 29, 2015 14:12
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 devbyray/2c43e429eab9c8dcd42c to your computer and use it in GitHub Desktop.
Save devbyray/2c43e429eab9c8dcd42c to your computer and use it in GitHub Desktop.
Sass variables
.element {
color: #ffffff;
background-color: #000000;
border: 1px solid grey;
}
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$black: #000000;
$white: #ffffff;
$grey: grey;
.element {
color: $white;
background-color: $black;
border: 1px solid $grey;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment