Skip to content

Instantly share code, notes, and snippets.

@fikrirasyid
Created February 8, 2015 00:28
Show Gist options
  • Save fikrirasyid/780896bdab9772f03278 to your computer and use it in GitHub Desktop.
Save fikrirasyid/780896bdab9772f03278 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
$color: #F44336;
$darken: darken( $color, 10% );
$lighten: lighten( $color, 10% );
.box{
background: $color;
background: $darken;
background: $lighten;
}
.box {
background: #F44336;
background: #ea1c0d;
background: #f77066;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment