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