16 lines
263 B
JavaScript
16 lines
263 B
JavaScript
//>>built
|
|
define("dojox/charting/themes/WatersEdge", ["../Theme", "./common"], function(Theme, themes){
|
|
|
|
themes.WatersEdge = new Theme({
|
|
colors: [
|
|
"#437cc0",
|
|
"#6256a5",
|
|
"#4552a3",
|
|
"#43c4f2",
|
|
"#4b66b0"
|
|
]
|
|
});
|
|
|
|
return themes.WatersEdge;
|
|
});
|