source: Dev/trunk/src/client/dojox/charting/themes/Desert.js

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 366 bytes
Line 
1define(["../SimpleTheme", "./common"], function(SimpleTheme, themes){
2        // notes: colors generated by moving in 30 degree increments around the hue circle,
3        //              at 90% saturation, using a B value of 75 (HSB model).
4        themes.Desert = new SimpleTheme({
5                colors: [
6                        "#ffebd5",
7                        "#806544",
8                        "#fdc888",
9                        "#80766b",
10                        "#cda26e"
11                ]
12        });
13        return themes.Desert;
14});
Note: See TracBrowser for help on using the repository browser.