
<h3>color_cmyka() function</h3>
Returns a string representation of a color based on its cyan, magenta, yellow, black and alpha (transparency) components

<p><h4>Syntax</h4>
     color_cmyka(<i>cyan, magenta, yellow, black, alpha</i>)</p>

<p><h4>Arguments</h4>
<!-- List args for functions here-->
<i>  cyan</i> &rarr; the cyan component of the color, as a percentage integer value from 0 to 100.<br>
<i>  magenta</i> &rarr; the magenta component of the color, as a percentage integer value from 0 to 100.<br>
<i>  yellow</i> &rarr; the yellow component of the color, as a percentage integer value from 0 to 100.<br>
<i>  black</i> &rarr; the black component of the color, as a percentage integer value from 0 to 100.<br>
<i>  alpha</i> &rarr; the alpha component as an integer value from 0 (completely transparent) to 255 (opaque).<br>

<p><h4>Example</h4>
<!-- Show example of function.-->
     color_cmyka(100,50,0,10,200) &rarr; '0,115,230,200'</p>
