Skip to content

Instantly share code, notes, and snippets.

@KatieK2
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save KatieK2/8852972 to your computer and use it in GitHub Desktop.

Select an option

Save KatieK2/8852972 to your computer and use it in GitHub Desktop.
Demonstrates how differing color values are compiled when `compressed`. Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
$red: red;
$FF0000: #FF0000;
$fuchsia: fuchsia;
$f0f: #f0f;
.red {
color: $red;
}
.FF0000 {
color: $FF0000;
}
.fuchsia {
color: $fuchsia;
}
.f0f {
color: $f0f;
}
// red. Note that for example fuchsia will be beaten by #f0f.
.red{color:red}.FF0000{color:red}.fuchsia{color:#f0f}.f0f{color:#f0f}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment