You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
449 B
SCSS

$colors: #73a857, #3f2e7a, #bdbb99, #77b1a9, #fb6964, #9b59b6, #2c3e50, #27ae60,
#f39c12, #16a085;
$darkerColors: ();
$superLightColors: ();
@for $i from 1 through length($colors) {
$color: nth($colors, $i);
$darkerColors: append($darkerColors, darken($color, 10%));
$superLightColors: append($superLightColors, fade-out($color, 0.9));
}
:export {
colors: $colors;
darkerColors: $darkerColors;
superLightColors: $superLightColors;
}