PHP Classes

File: public/asset/vendor/select2/docs/themes/learn2/scss/vendor/color-schemer/color-schemer/_cmyk.scss

Recommend this page to a friend!
  Classes of fathurrahman   mnTemplate   public/asset/vendor/select2/docs/themes/learn2/scss/vendor/color-schemer/color-schemer/_cmyk.scss   Download  
File: public/asset/vendor/select2/docs/themes/learn2/scss/vendor/color-schemer/color-schemer/_cmyk.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: mnTemplate
Route HTTP requests to callback functions
Author: By
Last change:
Date: 1 year ago
Size: 412 bytes
 

Contents

Class file image Download
@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; }