source: Dev/branches/rest-dojo-ui/client/dojox/charting/themes/PurpleRain.js @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 358 bytes
Line 
1define(["../Theme", "./common"], function(Theme, themes){
2       
3        //      notes: colors generated by moving in 30 degree increments around the hue circle,
4        //              at 90% saturation, using a B value of 75 (HSB model).
5        themes.PurpleRain=new Theme({
6                colors: [
7                        "#4879bc",
8                        "#ef446f",
9                        "#3f58a7",
10                        "#8254a2",
11                        "#4956a6"
12                ]
13        });
14       
15        return themes.PurpleRain;
16});
Note: See TracBrowser for help on using the repository browser.