14 lines
243 B
JavaScript
14 lines
243 B
JavaScript
|
//>>built
|
||
|
define("dojox/charting/themes/Algae", ["../Theme", "./common"], function(Theme, themes){
|
||
|
themes.Algae = new Theme({
|
||
|
colors: [
|
||
|
"#57808f",
|
||
|
"#506885",
|
||
|
"#4f7878",
|
||
|
"#558f7f",
|
||
|
"#508567"
|
||
|
]
|
||
|
});
|
||
|
return themes.Algae;
|
||
|
});
|