Change
Color Clock is a clock with a background color derived from the current time. So far I've implemented two ways of doing this: time to hex and hue wheel
Time to hex
The current time is flattened into a six-character string and appended to a pound sign in order to be used as a hex color value. 13:43:06 becomes #134306.
Hue wheel
Each hour (0-23) is mapped to a section of the hue wheel (0-359).
Gradient mode
Makes a pretty gradient by adding a second color that is a bit further (30 degrees) in the hue wheel.
Made by mechamech