Skip to content

Instantly share code, notes, and snippets.

@kuon
Created January 29, 2017 11:50
Show Gist options
  • Save kuon/fe1fcd74313f1847d1e3e61cdcafe211 to your computer and use it in GitHub Desktop.
Save kuon/fe1fcd74313f1847d1e3e61cdcafe211 to your computer and use it in GitHub Desktop.
Stepped gradient
$g: transparent;
$steps: 10;
@for $i from 1 to $steps {
$g: append($g, fade-out($bg-color, 1 / $i) percentage($i / $steps), comma);
$g: append($g, fade-out($bg-color, 1 / $i) percentage(($i + 0.6) / $steps), comma);
}
$g: append($g, $bg-color);
background: linear-gradient(to bottom, $g);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment