Open In App

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:

Return Value: It returns the resulting color value.



Example 1:




function setup() { 
      
    // Create Canvas of given size 
    createCanvas(400, 300); 
  
  
function draw() { 
      
    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:




function setup() { 
      
    // Create Canvas of given size 
    createCanvas(400, 300); 
  
function draw() { 
      
    // 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


Article Tags :