Skip to content

Instantly share code, notes, and snippets.

@nicolechung
Created August 18, 2014 17:45
Show Gist options
  • Save nicolechung/d6753771e1d4f0975824 to your computer and use it in GitHub Desktop.
Save nicolechung/d6753771e1d4f0975824 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v2.0.0)
// ----
/* Bad: Using hex code instead of a colour variable */
.foo {
background-color: #f4f4f4;
}
/* Good: using a color variable */
$myvariable: #f4f4f4;
.bar {
background-color: $myvariable;
}
/* Bad: Using hex code instead of a colour variable */
.foo {
background-color: #f4f4f4; }
/* Good: using a color variable */
.bar {
background-color: #f4f4f4; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment