Shrooms.js 563 B

12345678910111213141516171819202122
  1. define("dojox/charting/themes/Shrooms", ["../Theme", "./common"], function(Theme, themes){
  2. // notes: colors generated by moving in 30 degree increments around the hue circle,
  3. // at 90% saturation, using a B value of 75 (HSB model).
  4. themes.Shrooms = new Theme({
  5. colors: [
  6. "#bf1313", // 0
  7. "#69bf13", // 90
  8. "#13bfbf", // 180
  9. "#6913bf", // 270
  10. "#bf6913", // 30
  11. "#13bf13", // 120
  12. "#1369bf", // 210
  13. "#bf13bf", // 300
  14. "#bfbf13", // 60
  15. "#13bf69", // 150
  16. "#1313bf", // 240
  17. "#bf1369" // 330
  18. ]
  19. });
  20. return themes.Shrooms;
  21. });