Skip to content

Instantly share code, notes, and snippets.

@erickjones
Last active August 29, 2015 14:24
Show Gist options
  • Save erickjones/a2bda152cd3875fee1f0 to your computer and use it in GitHub Desktop.
Save erickjones/a2bda152cd3875fee1f0 to your computer and use it in GitHub Desktop.
SCSS Using Variables #1
// - - - - - VARIABLES - - - - - //
// Create a variable with $
$primary-color: tomato;
// Use your newborn variable
h1 {
color: $primary-color;
}
a {
color: $primary-color;
text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment