Skip to content

Instantly share code, notes, and snippets.

@felixmosh
Created December 29, 2014 16:35
Show Gist options
  • Save felixmosh/1d490dd275a535f60945 to your computer and use it in GitHub Desktop.
Save felixmosh/1d490dd275a535f60945 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="org">
org
</div>
<div class="mine">
mine
</div>
<div class="target">
target
</div>
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$org: #f14d4d;
$target: #be3f3f;
$mine: darken(adjust-saturation($org, -35%), 13%);
.org {
background-color: $org;
height: 40px;
}
.mine {
background-color: $mine;
height: 40px;
}
.target {
background-color: $target;
height: 40px;
}
.org {
background-color: #f14d4d;
height: 40px;
}
.mine {
background-color: #bd3e3e;
height: 40px;
}
.target {
background-color: #be3f3f;
height: 40px;
}
<div class="org">
org
</div>
<div class="mine">
mine
</div>
<div class="target">
target
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment