Harmony.js 619 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. define("dojox/charting/themes/Harmony", ["../Theme", "./common"], function(Theme, themes){
  2. themes.Harmony=new Theme({
  3. colors: [
  4. "#497c91",
  5. "#59a0bd",
  6. "#9dc7d9",
  7. "#c7e0e9",
  8. "#7b78a4",
  9. "#8d88c7",
  10. "#ada9d6",
  11. "#c9c6e4",
  12. "#768b4e",
  13. "#677e13",
  14. "#a8c179",
  15. "#c0d0a0",
  16. "#b7b35c",
  17. "#e8e667",
  18. "#eeea99",
  19. "#f0eebb",
  20. "#b39c53",
  21. "#e9c756",
  22. "#ebcf81",
  23. "#efdeb0",
  24. "#956649",
  25. "#b17044",
  26. "#c28b69",
  27. "#cfb09b",
  28. "#815454",
  29. "#a05a5a",
  30. "#c99999",
  31. "#ddc0c0",
  32. "#868686",
  33. "#a5a5a5",
  34. "#bebebe",
  35. "#d8d8d8"
  36. ]
  37. });
  38. return themes.Harmony;
  39. });