statistics dialog: fix classic theme colors

This commit is contained in:
rolux 2012-10-31 23:14:09 +00:00
parent 429dd37701
commit 0f3a1db190

View file

@ -606,7 +606,7 @@ pandora.ui.statisticsDialog = function() {
function getColor(color) {
var hsl = Ox.hsl(color);
hsl[2] = 0.4;
hsl[2] = Math.max(hsl[2] - 0.1, 0);
return Ox.rgb(hsl);
}