Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2012-05-12 14:36:27 +0400
committerMarc Delisle <marc@infomarc.info>2012-05-12 14:36:27 +0400
commitaa5551b2dbaed6b140c58fcd6e5701855b671494 (patch)
tree75ac6deded8a4f998ada9ec4cfe1f6e27346b6b4 /js
parentc75225f447178278378c7f96714857f354233b6c (diff)
Use Tango color palette for series colors
Diffstat (limited to 'js')
-rw-r--r--js/functions.js23
1 files changed, 22 insertions, 1 deletions
diff --git a/js/functions.js b/js/functions.js
index 59043c5369..13ce2a0cef 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1738,7 +1738,28 @@ function PMA_createProfilingChartJqplot(target, data)
legend: {
show: true,
location: 'e'
- }
+ },
+ // from http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines#Color_Palette
+ seriesColors: [
+ '#fce94f',
+ '#fcaf3e',
+ '#e9b96e',
+ '#8ae234',
+ '#729fcf',
+ '#ad7fa8',
+ '#ef2929',
+ '#eeeeec',
+ '#888a85',
+ '#c4a000',
+ '#ce5c00',
+ '#8f5902',
+ '#4e9a06',
+ '#204a87',
+ '#5c3566',
+ '#a40000',
+ '#babdb6',
+ '#2e3436'
+ ]
}
);
}