16 lines
253 B
JavaScript
16 lines
253 B
JavaScript
//>>built
|
|
define("dojox/charting/themes/Wetland", ["../Theme", "./common"], function(Theme, themes){
|
|
|
|
themes.Wetland = new Theme({
|
|
colors: [
|
|
"#bfbc64",
|
|
"#737130",
|
|
"#73373b",
|
|
"#7dafca",
|
|
"#8d3c42"
|
|
]
|
|
});
|
|
|
|
return themes.Wetland;
|
|
});
|