r24958: This is the final text, and the final version. I'll send the release
[jelmer/samba4-debian.git] / webapps / qooxdoo-0.6.5-sdk / frontend / framework / source / class / qx / theme / color / WindowsLunaBlue.js
1 /* ************************************************************************
2
3    qooxdoo - the new era of web development
4
5    http://qooxdoo.org
6
7    Copyright:
8      2004-2007 1&1 Internet AG, Germany, http://www.1and1.org
9
10    License:
11      LGPL: http://www.gnu.org/licenses/lgpl.html
12      EPL: http://www.eclipse.org/org/documents/epl-v10.php
13      See the LICENSE file in the project's top-level directory for details.
14
15    Authors:
16      * Sebastian Werner (wpbasti)
17      * Andreas Ecker (ecker)
18
19 ************************************************************************ */
20
21 /* ************************************************************************
22
23 #module(theme_color)
24
25 ************************************************************************ */
26
27 /**
28  * Windows luna blue color theme
29  */
30 qx.OO.defineClass("qx.theme.color.WindowsLunaBlue", qx.renderer.theme.ColorTheme,
31 function() {
32   qx.renderer.theme.ColorTheme.call(this, "Windows Luna Blue");
33 });
34
35
36
37
38 /*
39 ---------------------------------------------------------------------------
40   DEFINE COLORS
41 ---------------------------------------------------------------------------
42 */
43
44 qx.Proto._colors = qx.lang.Object.carefullyMergeWith({
45   activeborder : [ 212,208,200 ],
46   activecaption : [ 0,84,227 ],
47   appworkspace : [ 128,128,128 ],
48   background : [ 0,78,152 ],
49   buttonface : [ 236,233,216 ],
50   buttonhighlight : [ 255,255,255 ],
51   buttonshadow : [ 172,168,153 ],
52   buttontext : [ 0,0,0 ],
53   captiontext : [ 255,255,255 ],
54   graytext : [ 172,168,153 ],
55   highlight : [ 49,106,197 ],
56   highlighttext : [ 255,255,255 ],
57   inactiveborder : [ 212,208,200 ],
58   inactivecaption : [ 122,150,223 ],
59   inactivecaptiontext : [ 216,228,248 ],
60   infobackground : [ 255,255,225 ],
61   infotext : [ 0,0,0 ],
62   menu : [ 255,255,255 ],
63   menutext : [ 0,0,0 ],
64   scrollbar : [ 212,208,200 ],
65   threeddarkshadow : [ 113,111,100 ],
66   threedface : [ 236,233,216 ],
67   threedhighlight : [ 255,255,255 ],
68   threedlightshadow : [ 241,239,226 ],
69   threedshadow : [ 172,168,153 ],
70   window : [ 255,255,255 ],
71   windowframe : [ 0,0,0 ],
72   windowtext : [ 0,0,0 ]
73 }, qx.Super.prototype._colors);
74
75
76
77
78
79
80 /*
81 ---------------------------------------------------------------------------
82   DEFER SINGLETON INSTANCE
83 ---------------------------------------------------------------------------
84 */
85
86 /**
87  * Singleton Instance Getter
88  */
89 qx.Class.getInstance = qx.lang.Function.returnInstance;
90
91
92
93
94
95 /*
96 ---------------------------------------------------------------------------
97   REGISTER TO MANAGER
98 ---------------------------------------------------------------------------
99 */
100
101 qx.manager.object.ColorManager.getInstance().registerColorTheme(qx.Class);