summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/charting/themes/Wetland.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo/dojox/charting/themes/Wetland.js')
-rw-r--r--js/dojo/dojox/charting/themes/Wetland.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/dojo/dojox/charting/themes/Wetland.js b/js/dojo/dojox/charting/themes/Wetland.js
new file mode 100644
index 0000000..8fc0529
--- /dev/null
+++ b/js/dojo/dojox/charting/themes/Wetland.js
@@ -0,0 +1,15 @@
+//>>built
+define("dojox/charting/themes/Wetland", ["../Theme", "./common"], function(Theme, themes){
+
+ themes.Wetland = new Theme({
+ colors: [
+ "#bfbc64",
+ "#737130",
+ "#73373b",
+ "#7dafca",
+ "#8d3c42"
+ ]
+ });
+
+ return themes.Wetland;
+});