Skip to content

Instantly share code, notes, and snippets.

@MikeGillihan
Created February 11, 2014 20:07
Show Gist options
  • Save MikeGillihan/8943054 to your computer and use it in GitHub Desktop.
Save MikeGillihan/8943054 to your computer and use it in GitHub Desktop.
Color Wheel Mixin
// COLOR WHEEL
@mixin colorwheel($color: $colorBrand,$colors: 6,$spectrum: 180deg,$offset: 30deg) {
@for $i from 0 to $colors {
&:nth-child(#{$i}) {
background: adjust-hue($color, $offset + $spectrum / $colors * $i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment