p5.js color() Function

The color() function is used to create color and store it into variables. The parameters of color function are RGB or HSB value depending on the current colorMode() function. The default mode of color() function is RGB value from 0 to 255. Therefore, the function color(255, 204, 0) will return a bright yellow color.
Syntax:
color(gray, alpha) color(v1, v2, v3, alpha) color(value) color(values) color(color)
Parameters:
- gray: It is used to set the gray value between white and black.
- alpha: It is used to set the transparency of the drawing.
- v1: It is used to set the red or hue value relative to current color range.
- v2: It is used to set the green or saturation value relative to current color range.
- v3: It is used to set the blue or brightness value relative to current color range.
- value: It is used to set the value of color string.
- values: It is an array containing the red, green, blue and alpha value.
- color: It is used to set the stroke color.
Return Value: It returns the resulting color value.
Example 1:
| functionsetup() {       Â    // Create Canvas of given size      createCanvas(400, 300);   Â}   Âfunctiondraw() {       Â    background(220);      Â    // Use color() function     let c = color('green');  Â    // Use fill() function to fill color     fill(c);    Â    // Draw a circle      circle(200, 150, 150);     Â}   | 
Output:
Example 2:
| functionsetup() {       Â    // Create Canvas of given size      createCanvas(400, 300);  }   Âfunctiondraw() {       Â    // Set the background color      background(220);       Â    // Use color() function     let c = color(0, 155, 0);      Â    // Use fill() function to fill color     fill(c)    Â    // Draw a line      rect(50, 50, 250, 150);   Â}   | 
Output:
Reference: https://p5js.org/reference/#/p5/color
 
				 
					



