summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/charting/themes/RoyalPurples.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo/dojox/charting/themes/RoyalPurples.js')
-rw-r--r--js/dojo/dojox/charting/themes/RoyalPurples.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/dojo/dojox/charting/themes/RoyalPurples.js b/js/dojo/dojox/charting/themes/RoyalPurples.js
new file mode 100644
index 0000000..f652e48
--- /dev/null
+++ b/js/dojo/dojox/charting/themes/RoyalPurples.js
@@ -0,0 +1,15 @@
+//>>built
+define("dojox/charting/themes/RoyalPurples", ["../Theme", "./common"], function(Theme, themes){
+
+ themes.RoyalPurples=new Theme({
+ colors: [
+ "#473980",
+ "#685aa7",
+ "#7970b3",
+ "#231c3f",
+ "#7267ae"
+ ]
+ });
+
+ return themes.RoyalPurples;
+});