PurpleRain.js 813 B

12345678910111213141516171819202122232425262728
  1. /*
  2. Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
  3. Available via Academic Free License >= 2.1 OR the modified BSD license.
  4. see: http://dojotoolkit.org/license for details
  5. */
  6. if(!dojo._hasResource["dojox.charting.themes.PurpleRain"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
  7. dojo._hasResource["dojox.charting.themes.PurpleRain"] = true;
  8. dojo.provide("dojox.charting.themes.PurpleRain");
  9. dojo.require("dojox.charting.Theme");
  10. (function(){
  11. // notes: colors generated by moving in 30 degree increments around the hue circle,
  12. // at 90% saturation, using a B value of 75 (HSB model).
  13. var dxc=dojox.charting;
  14. dxc.themes.PurpleRain=new dxc.Theme({
  15. colors: [
  16. "#4879bc",
  17. "#ef446f",
  18. "#3f58a7",
  19. "#8254a2",
  20. "#4956a6"
  21. ]
  22. });
  23. })();
  24. }