Desert.js 797 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.Desert"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
  7. dojo._hasResource["dojox.charting.themes.Desert"] = true;
  8. dojo.provide("dojox.charting.themes.Desert");
  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.Desert=new dxc.Theme({
  15. colors: [
  16. "#ffebd5",
  17. "#806544",
  18. "#fdc888",
  19. "#80766b",
  20. "#cda26e"
  21. ]
  22. });
  23. })();
  24. }