16 lines
251 B
JavaScript
16 lines
251 B
JavaScript
//>>built
|
|
define("dojox/charting/themes/Midwest", ["../Theme", "./common"], function(Theme, themes){
|
|
|
|
themes.Midwest=new Theme({
|
|
colors: [
|
|
"#927b51",
|
|
"#a89166",
|
|
"#80c31c",
|
|
"#bcdd5a",
|
|
"#aebc21"
|
|
]
|
|
});
|
|
|
|
return themes.Midwest;
|
|
});
|