-
-
Save ulope/3892661 to your computer and use it in GitHub Desktop.
Works with this changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$colors: rgb(202,0,32), rgb(244,165,130), rgb(247,247,247), rgb(146,197,222), rgb(5,113,176); | |
@mixin choropleth($bucket) { | |
.RdBu .q#{$bucket}-5 { | |
$base-fill: nth($colors, $bucket); | |
fill: $base-fill; | |
&:hover { | |
fill: darken($base-fill, 10%); | |
} | |
} | |
} | |
@include choropleth(1); | |
@include choropleth(2); | |
@include choropleth(3); | |
@include choropleth(4); | |
@include choropleth(5); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment