这个方法很巧妙,可以很简单的调整颜色差距,从实现有层次感的色彩。
比如: buttons.sass
$base-color: #AD141E;
border: 1px solid darken($base-color, 20%);
text-shadow: 0 -1px 0 darken($base-color, 10%);
@include box-shadow(inset 0 1px 0 lighten($base-color, 20%));
具体看原文: http://robots.thoughtbot.com/post/12974565313/controlling-color-with-sass-color-functions