Skip to content

Instantly share code, notes, and snippets.

@camerond
Created November 1, 2013 15:43
Show Gist options
  • Save camerond/7267325 to your computer and use it in GitHub Desktop.
Save camerond/7267325 to your computer and use it in GitHub Desktop.
Color spectrum from grey through to pink (weather radar style), from .h0 to .h100
$colors: #a0a0a0, #4fb848, #d2be11, #e51b24, #f749fa
@for $i from 0 through 3
@for $j from 0 through 25
.h#{25*$i+$j}
background: mix(nth($colors, $i+2), nth($colors, $i+1), (($j/25) * 100))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment