It is quite simple to add a color to the color page in order to change it in the UI.
This commit does so for the color of links when hovering over them.
Here are the steps:
Make sure that whatever color you use is defined in somewhere in your CSS, and that the 6-digit color code you use is only defined for the item in question
Modify your color.inc file as in this patch
If you want it to show up in one of the fieldsets, modify the initial function in theme-settings.php like in the patch (I had to have @hosef show me this part)
Update STARTERKIT, if desired
As a caveat, I made no effort to have the hover color fit the theme. I was more interested in having it contrast, so that it showed up well, and to that end, I simply coped the color code for links and moved the last two characters to the beginning, i.e., #0073bd became #bd0073.
Fixes #39
It is quite simple to add a color to the color page in order to change it in the UI.
This commit does so for the color of links when hovering over them.
Here are the steps:
As a caveat, I made no effort to have the hover color fit the theme. I was more interested in having it contrast, so that it showed up well, and to that end, I simply coped the color code for links and moved the last two characters to the beginning, i.e.,
#0073bd
became#bd0073
.