Shrooms.js 979 B

1234567891011121314151617181920212223242526272829303132333435
  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.Shrooms"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
  7. dojo._hasResource["dojox.charting.themes.Shrooms"] = true;
  8. dojo.provide("dojox.charting.themes.Shrooms");
  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.Shrooms=new dxc.Theme({
  15. colors: [
  16. "#bf1313", // 0
  17. "#69bf13", // 90
  18. "#13bfbf", // 180
  19. "#6913bf", // 270
  20. "#bf6913", // 30
  21. "#13bf13", // 120
  22. "#1369bf", // 210
  23. "#bf13bf", // 300
  24. "#bfbf13", // 60
  25. "#13bf69", // 150
  26. "#1313bf", // 240
  27. "#bf1369" // 330
  28. ]
  29. });
  30. })();
  31. }