The designer came up with a rather strange idea or a color wheel (with 36 colors).
I need to write a function that returns the color one , but based on date .
How the site works
Based on the current date (you see German dates in the image below), the site should have this background color.
So, January 1st, the first color (blue or whatever you might call it) should be the background on the main page. After 10 days, the next color. Therefore, within one year, all 36 colors must be shorted in wheel order.
I think, until the intermediate programmer can help me, I donβt know how to do it.

But it gets a little complicated
The designer wants each page of the website to have a different color. So, imagine that the site has 10 pages (Home, About, Independently, Gallery), each page should have one of the βnearestβ 10 colors.
Wow, even I can't stand it when I explain it.
So, I want to create a function that returns a random color from a pool of 10 colors that are based on the current date.
So, on January 1st, I want the following colors to be placed in an array and randomly select one of these colors.
function colorWheel($alpha) {
Any idea how to do this?