Grasslands.js 394 B

12345678910111213141516
  1. define("dojox/charting/themes/Grasslands", ["../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.Grasslands=new Theme({
  5. colors: [
  6. "#70803a",
  7. "#dde574",
  8. "#788062",
  9. "#b1cc5d",
  10. "#eff2c2"
  11. ]
  12. });
  13. return themes.Grasslands;
  14. });