// Example: slow color cycle
// Smooth fades between colors with different speeds.
//
// Format: #RRGGBB, duration_ms
// duration_ms = time to fade FROM the previous color TO this one.

#FF0000,    0   // snap to red immediately
#00FF00, 3000   // 3 second fade to green
#0000FF,    0   // snap to blue
#FF00FF, 2000   // 2 second fade to purple
#FF8000, 1000   // 1 second fade to orange
#000000, 5000   // 5 second slow fade to off
