Starting from (say) #ff0011 I would like to graduating scale the background-color for each element div I have in page.
The result should be something like:
<div class="div-1"></div> // background-color:#ff0011;
<div class="div-2"></div> // background-color:#ff0011 -0.2% saturation;
<div class="div-3"></div> // background-color:#ff0011 -0.3% saturation;
<div class="div-4"></div> // background-color:#ff0011 -0.4% saturation;
<div class="div-5"></div> // background-color:#ff0011 -0.5% saturation;
Hope the example is clear, I really don't know where to start on doing this so any link tutorials will be really appreciated.
EDIT: i'm talking about graduating DESATURATE colors
