カラーセレクターを使用して一部の要素を変更しています
function(color) {
$("#post h1").css("color",color.toHexString());
$("#footer").css("background",color.toHexString());
$("#navigation a:hover").css("background",color.toHexString());
}
#post h1
とは正常に#foooter
動作しますが、どうすれば を変更でき#navigation a:hover
ますか?