
<h3>color_rgb() function</h3>
Returns a string representation of a color based on its red, green, and blue components

<p><h4>Syntax</h4>
     color_rgb(<i>red, green, blue</i>)</p>

<p><h4>Arguments</h4>
<!-- List args for functions here-->
<i>  red</i> &rarr; the red component as an integer value from 0 to 255.<br>
<i>  green</i> &rarr; the green component as an integer value from 0 to 255.<br>
<i>  blue</i> &rarr; the blue component as an integer value from 0 to 255.<br>

<p><h4>Example</h4>
<!-- Show example of function.-->
     color_rgb(255,127,0) &rarr; '#ff7f00'</p>
