xref: /haiku/src/apps/processcontroller/Colors.h (revision 3cb015b1ee509d69c643506e8ff573808c86dcfc)
1 /*
2 	ProcessController
3 	(c) 2000, Georges-Edouard Berenger, All Rights Reserved.
4 	Copyright (C) 2004 beunited.org
5 
6 	This library is free software; you can redistribute it and/or
7 	modify it under the terms of the GNU Lesser General Public
8 	License as published by the Free Software Foundation; either
9 	version 2.1 of the License, or (at your option) any later version.
10 
11 	This library is distributed in the hope that it will be useful,
12 	but WITHOUT ANY WARRANTY; without even the implied warranty of
13 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 	Lesser General Public License for more details.
15 
16 	You should have received a copy of the GNU Lesser General Public
17 	License along with this library; if not, write to the Free Software
18 	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20 //Useful until be gets around to making these sorts of things
21 //globals akin to be_plain_font, etc.
22 
23 #ifndef _COLORS_H_
24 #define _COLORS_H_
25 
26 #include <GraphicsDefs.h>
27 
28 //	ui_color(B_PANEL_BACKGROUND_COLOR)
29 //	ui_color(B_MENU_BACKGROUND_COLOR)
30 //	ui_color(B_WINDOW_TAB_COLOR)
31 //	ui_color(B_KEYBOARD_NAVIGATION_COLOR)
32 //	ui_color(B_DESKTOP_COLOR)
33 //	tint_color(ui_color(B_PANEL_BACKGROUND_COLOR), B_DARKEN_1_TINT)
34 
35 //Other colors
36 const rgb_color kBlack =					{0,  0,  0,		255};
37 const rgb_color kWhite =					{255,255,255,	255};
38 const rgb_color kRed =						{255,0,  0,		255};
39 const rgb_color kGreen =					{0,  203,0,		255};
40 const rgb_color kLightGreen =				{90, 240,90,	255};
41 const rgb_color kBlue =						{49, 61, 225,	255};
42 const rgb_color kLightBlue =				{64, 162,255,	255};
43 const rgb_color kPurple =					{144,64, 221,	255};
44 const rgb_color kLightPurple =				{166,74, 255,	255};
45 const rgb_color kLavender =					{193,122,255,	255};
46 const rgb_color kYellow =					{255,203,0,		255};
47 const rgb_color kOrange =					{255,163,0,		255};
48 const rgb_color kFlesh =					{255,231,186,	255};
49 const rgb_color kTan =						{208,182,121,	255};
50 const rgb_color kBrown =					{154,110,45,	255};
51 const rgb_color kLightMetallicBlue =		{143,166,240,	255};
52 const rgb_color kMedMetallicBlue =			{75, 96, 154,	255};
53 const rgb_color kDarkMetallicBlue =			{78, 89, 126,	255};
54 
55 const rgb_color kGebHighlight =				{152, 152, 203,	255};
56 const rgb_color kBordeaux =					{80, 0, 0,		255};
57 
58 #endif // _COLORS_H_
59