14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
|
//>>built
|
||
|
define("dojox/charting/themes/Bahamation", ["../Theme", "./common"], function(Theme, themes){
|
||
|
themes.Bahamation=new Theme({
|
||
|
colors: [
|
||
|
"#3f9998",
|
||
|
"#3fc0c3",
|
||
|
"#70c058",
|
||
|
"#ef446f",
|
||
|
"#c663a6"
|
||
|
]
|
||
|
});
|
||
|
return themes.Bahamation;
|
||
|
});
|