grav-theme-libretic/scss/vendor/color-schemer/color-schemer/_cmyk.scss

14 lines
412 B
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;
}