List functions with SASS
@function colors($base) { @return darken($base, 10%) $base lighten($base, 10%); } body { color: nth(colors(#ff0000), 1); }