From 0f3a1db19049fbef5ba23d2c0b70d9930aa9b649 Mon Sep 17 00:00:00 2001 From: rolux Date: Wed, 31 Oct 2012 23:14:09 +0000 Subject: [PATCH] statistics dialog: fix classic theme colors --- static/js/pandora/statisticsDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/pandora/statisticsDialog.js b/static/js/pandora/statisticsDialog.js index 80a6bcc9..007bcc01 100644 --- a/static/js/pandora/statisticsDialog.js +++ b/static/js/pandora/statisticsDialog.js @@ -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); }