summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/charting/themes/Minty.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo/dojox/charting/themes/Minty.js')
-rw-r--r--js/dojo/dojox/charting/themes/Minty.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/dojo/dojox/charting/themes/Minty.js b/js/dojo/dojox/charting/themes/Minty.js
new file mode 100644
index 0000000..50c7e4f
--- /dev/null
+++ b/js/dojo/dojox/charting/themes/Minty.js
@@ -0,0 +1,15 @@
+//>>built
+define("dojox/charting/themes/Minty", ["../Theme", "./common"], function(Theme, themes){
+
+ themes.Minty=new Theme({
+ colors: [
+ "#80ccbb",
+ "#539e8b",
+ "#335f54",
+ "#8dd1c2",
+ "#68c5ad"
+ ]
+ });
+
+ return themes.Minty;
+});