| Current Path : /home/zieirix/www/media/gantry5/engines/nucleus/scss/vendor/color-schemer/color-schemer/ |
| Current File : /home/zieirix/www/media/gantry5/engines/nucleus/scss/vendor/color-schemer/color-schemer/_cmyk.scss |
@function cmyk($cyan, $magenta, $yellow, $black) {
// Get the color values out of white
$cyan : mix(cyan , white, $cyan );
$magenta : mix(magenta, white, $magenta);
$yellow : mix(yellow , white, $yellow );
$black : mix(black , white, $black );
// Subtract the colors from white
$color: white - invert($cyan) - invert($magenta) - invert($yellow) - invert($black);
@return $color;
}