Skip to content

Instantly share code, notes, and snippets.

@TexRx
Created October 25, 2013 08:31
Show Gist options
  • Save TexRx/7151387 to your computer and use it in GitHub Desktop.
Save TexRx/7151387 to your computer and use it in GitHub Desktop.
// Sass v3.2.5
@mixin bg-color($bgcolor, $darken) {
background: $bgcolor;
&:hover {
background: darken($bgcolor, $darken);
}
}
.button {
@include bg-color(#123456, 10%)
}
.button {
background: #123456;
}
.button:hover {
background: #091a2c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment