xxxxxxxxxx
function setup() {
createCanvas(400, 400);
}
function draw() {
background(5,5,5);
fill(255, 250, 250)
circle(200,200,300)
//inside circle
fill(5,5,5)
circle(200,200,50)
//title
fill(59, 126, 219)
textSize(30)
strokeWeight(2)
stroke(250, 225, 35)
text('CAYENDO', 130, 140);
// //artist name + publishers
fill(5,5,5)
textSize(10)
text('FRANK OCEAN', 80, 180)
fill(5,5,5)
textSize(10)
text('A SIDE', 90, 220)
fill(5,5,5)
textSize(10)
text('STUDIO', 90, 230)
fill(5,5,5)
textSize(10)
text('ALL RIGHT RESERVED, COPYRIGHT 2019', 100, 280)
fill(5,5,5)
textSize(10)
text('PUBLISHED BY blonded ON 10/19/2019', 110, 290)
//paragraph
//I choose this album because I love Frank Ocean. I'm also a huge fan of Sade, and in this song Frank Ocean borrows some lyrics from Sade's song Love is Stronger than Pride. It's a song that I've known since my childhood and when I first heard this song, I was shocked and elated to say the least. This song is one of my favorite Frank Ocean songs and that's why I choose to recreate the ablum cover.
}