Skip to content

Instantly share code, notes, and snippets.

@nicbarajas
Created March 20, 2015 22:14
Show Gist options
  • Save nicbarajas/8c43b18d2609bc6a34a8 to your computer and use it in GitHub Desktop.
Save nicbarajas/8c43b18d2609bc6a34a8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div id="box">Hello!</div>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$black: #000;
@function gray($value) {
@return lighten($black, $value);
}
#box {
width: 200px;
height: 200px;
color: gray(92);
background-color: gray(20);
border-color: gray(26.5);
}
#box {
width: 200px;
height: 200px;
color: #ebebeb;
background-color: #333333;
border-color: #444444;
}
<div id="box">Hello!</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment