Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save clintfisher/3dd6d8efa0e3d24873c5 to your computer and use it in GitHub Desktop.
Save clintfisher/3dd6d8efa0e3d24873c5 to your computer and use it in GitHub Desktop.
<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