Skip to content

Instantly share code, notes, and snippets.

@dangayle
Created April 27, 2011 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dangayle/945419 to your computer and use it in GitHub Desktop.
Save dangayle/945419 to your computer and use it in GitHub Desktop.
sass color mixins?
$mid:#66CCFF;
@mixin colors($mid){
$lightest:lighten($mid, 50%);
$lighter:lighten($mid, 29%);
$light:lighten($mid, 25%);
$midder:darken($mid, 25%);
$dark:darken($mid, 40%);
$darkest:darken($mid, 60%);
$select:complement($dark);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment