summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/charting/themes/Midwest.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo/dojox/charting/themes/Midwest.js')
-rw-r--r--js/dojo/dojox/charting/themes/Midwest.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/dojo/dojox/charting/themes/Midwest.js b/js/dojo/dojox/charting/themes/Midwest.js
new file mode 100644
index 0000000..4fcb9f7
--- /dev/null
+++ b/js/dojo/dojox/charting/themes/Midwest.js
@@ -0,0 +1,15 @@
+//>>built
+define("dojox/charting/themes/Midwest", ["../Theme", "./common"], function(Theme, themes){
+
+ themes.Midwest=new Theme({
+ colors: [
+ "#927b51",
+ "#a89166",
+ "#80c31c",
+ "#bcdd5a",
+ "#aebc21"
+ ]
+ });
+
+ return themes.Midwest;
+});