Skip to content

Instantly share code, notes, and snippets.

@afknapping
Created August 18, 2015 03:16
Show Gist options
  • Save afknapping/548324ba2a69e40b0c36 to your computer and use it in GitHub Desktop.
Save afknapping/548324ba2a69e40b0c36 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="swatch swatch01">example text</div>
<div class="swatch swatch02">example text</div>
// ----
// libsass (v3.2.5)
// ----
$basecolor: #2ECC40;
$lightest: lighten($basecolor, 30);
.swatch01 {
background-color: $basecolor;
}
.swatch02 {
background-color: $lightest;
}
.swatch {
width: 5em;
height: 4em;
padding: 0.5em;
color: white;
}
.swatch01 {
background-color: #2ECC40;
}
.swatch02 {
background-color: #a8ebaf;
}
.swatch {
width: 5em;
height: 4em;
padding: 0.5em;
color: white;
}
<div class="swatch swatch01">example text</div>
<div class="swatch swatch02">example text</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment