Files
edx-platform/common/static/sass/bourbon/functions/_tint-shade.scss
Andy Armstrong 268bea9e62 Make the course content page responsive
LEARNER-2754
2017-11-01 17:34:04 -04:00

10 lines
232 B
SCSS

// Add percentage of white to a color
@function tint($color, $percent) {
@return mix(white, $color, $percent);
}
// Add percentage of black to a color
@function shade($color, $percent) {
@return mix(black, $color, $percent);
}