IndigoNation.js 400 B

12345678910111213141516
  1. define("dojox/charting/themes/IndigoNation", ["../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.IndigoNation=new Theme({
  5. colors: [
  6. "#93a4d0",
  7. "#3b4152",
  8. "#687291",
  9. "#9faed9",
  10. "#8290b8"
  11. ]
  12. });
  13. return themes.IndigoNation;
  14. });