statistics dialog: fix classic theme colors
This commit is contained in:
parent
429dd37701
commit
0f3a1db190
1 changed files with 1 additions and 1 deletions
|
@ -606,7 +606,7 @@ pandora.ui.statisticsDialog = function() {
|
||||||
|
|
||||||
function getColor(color) {
|
function getColor(color) {
|
||||||
var hsl = Ox.hsl(color);
|
var hsl = Ox.hsl(color);
|
||||||
hsl[2] = 0.4;
|
hsl[2] = Math.max(hsl[2] - 0.1, 0);
|
||||||
return Ox.rgb(hsl);
|
return Ox.rgb(hsl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue