diff options
Diffstat (limited to 'js/dojo/dojox/charting/themes/Distinctive.js')
| -rw-r--r-- | js/dojo/dojox/charting/themes/Distinctive.js | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/js/dojo/dojox/charting/themes/Distinctive.js b/js/dojo/dojox/charting/themes/Distinctive.js new file mode 100644 index 0000000..fefaf31 --- /dev/null +++ b/js/dojo/dojox/charting/themes/Distinctive.js @@ -0,0 +1,43 @@ +//>>built +define("dojox/charting/themes/Distinctive", ["../Theme", "./common"], function(Theme, themes){ + + themes.Distinctive=new Theme({ + colors: [ + "#497c91", + "#ada9d6", + "#768b4e", + "#eeea99", + "#b39c53", + "#c28b69", + "#815454", + "#bebebe", + "#59a0bd", + "#c9c6e4", + "#677e13", + "#f0eebb", + "#e9c756", + "#cfb09b", + "#a05a5a", + "#d8d8d8", + "#9dc7d9", + "#7b78a4", + "#a8c179", + "#b7b35c", + "#ebcf81", + "#956649", + "#c99999", + "#868686", + "#c7e0e9", + "#8d88c7", + "#c0d0a0", + "#e8e667", + "#efdeb0", + "#b17044", + "#ddc0c0", + "#a5a5a5" + + ] + }); + + return themes.Distinctive; +}); |
