This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@function shade($color, $percent) { | |
@return mix(black, $color, $percent); | |
} | |
@function tint($color, $percent) { | |
@return mix(white, $color, $percent); | |
} | |
@function mono-palette($color, $mix: null) { | |
@if $mix == tint1 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
$baseFontSize: 16; | |
@function stripUnit ($num) { | |
@return $num / ($num * 0 + 1); | |
} |
NewerOlder