Would be nice if there was an option to dynamically rotate the color palette to one of the available ones, randomly, let's say once per day.
This would require converting the current date to a seemingly random index in the available colors list.
Something in the lines idx = hash(dayInYear) % len(colorOptions)
Feature request from user:
This would require converting the current date to a seemingly random index in the available colors list. Something in the lines
idx = hash(dayInYear) % len(colorOptions)