I"m using JQuery Progress-Bar and want to change the single color indicating progress to make it variable? Green to a lighter Green as you get closer to 100% .
Currenly- empty space is colored with White and filled space colored with Green.
$(progressBarID).progressbar({
value: 60
})
.children('.ui-progressbar-value')
.html("<span>" + completedValue + "</span>")
.css({ display: "block", "text-align": "center", "background": progressBarColor });