CubanShirts.js 817 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.CubanShirts"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
  7. dojo._hasResource["dojox.charting.themes.CubanShirts"] = true;
  8. dojo.provide("dojox.charting.themes.CubanShirts");
  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.CubanShirts=new dxc.Theme({
  15. colors: [
  16. "#d42d2a",
  17. "#004f80",
  18. "#989736",
  19. "#2085c7",
  20. "#7f7f33"
  21. ]
  22. });
  23. })();
  24. }