erikjung
7/17/2012 - 7:33 PM

List functions with SASS

List functions with SASS

@function colors($base) {
  @return darken($base, 10%) $base lighten($base, 10%);
}

body {
  color: nth(colors(#ff0000), 1);
}