Desert.js 381 B

12345678910111213141516
  1. define("dojox/charting/themes/Desert", ["../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.Desert=new Theme({
  5. colors: [
  6. "#ffebd5",
  7. "#806544",
  8. "#fdc888",
  9. "#80766b",
  10. "#cda26e"
  11. ]
  12. });
  13. return themes.Desert;
  14. });