Skip to content

Instantly share code, notes, and snippets.

@kenwheeler
Created November 18, 2014 22:20
Show Gist options
  • Save kenwheeler/c2916429cc46efe93157 to your computer and use it in GitHub Desktop.
Save kenwheeler/c2916429cc46efe93157 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="red"></div>
<div class="orange"></div>
<div class="yellow"></div>
<div class="green"></div>
<div class="purple"></div>
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
$colorStart: #ff0000;
$red: $colorStart;
div {
height: 60px;
width: 60px;
}
.red {
background: $red;
}
div {
height: 60px;
width: 60px;
}
.red {
background: #ff0000;
}
<div class="red"></div>
<div class="orange"></div>
<div class="yellow"></div>
<div class="green"></div>
<div class="purple"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment