16 lines
253 B
JavaScript
16 lines
253 B
JavaScript
//>>built
|
|
define("dojox/charting/themes/BlueDusk", ["../Theme", "./common"], function(Theme, themes){
|
|
|
|
themes.BlueDusk=new Theme({
|
|
colors: [
|
|
"#292e76",
|
|
"#3e56a6",
|
|
"#10143f",
|
|
"#33449c",
|
|
"#798dcd"
|
|
]
|
|
});
|
|
|
|
return themes.BlueDusk;
|
|
});
|