Colori semitrasparenti

fill

// height=110 lines=auto
function setup() {
    background( 220 );
    rect( 5,30, 90,40 );
    fill( 255, 230, 0, 120 );
    ellipse( 50,50, 70,70 );
}