1/*
2 * Copyright 2006-2007, Haiku.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Stephan A��mus <superstippi@gmx.de>
7 */
8
9#ifndef UI_DEFINES_H
10#define UI_DEFINES_H
11
12const rgb_color kBlack			= {   0,   0,   0, 255 };
13const rgb_color kWhite			= { 255, 255, 255, 255 };
14
15const rgb_color kRed			= { 255, 0, 0, 255 };
16const rgb_color kGreen			= { 0, 255, 0, 255 };
17const rgb_color kBlue			= { 0, 0, 255, 255 };
18
19const rgb_color kOrange			= { 255, 217, 121, 255 };
20const rgb_color kLightOrange	= { 255, 217, 138, 255 };
21const rgb_color kDarkOrange		= { 255, 145,  71, 255 };
22
23const rgb_color kAlphaLow		= { 0xbb, 0xbb, 0xbb, 0xff };
24const rgb_color kAlphaHigh		= { 0xe0, 0xe0, 0xe0, 0xff };
25
26	// tweak view settings
27const rgb_color kStripesHigh	= { 112, 112, 112, 255 };
28const rgb_color kStripesLow		= { 104, 104, 104, 255 };
29
30
31const pattern kStripes			= { { 0xc7, 0x8f, 0x1f, 0x3e, 0x7c, 0xf8, 0xf1, 0xe3 } };
32const pattern kDotted			= { { 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa } };
33const pattern kDottedBigger		= { { 0x33, 0x33, 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc } };
34const pattern kDottedBig		= { { 0x0f, 0x0f, 0x0f, 0x0f, 0xf0, 0xf0, 0xf0, 0xf0 } };
35
36
37#endif // UI_DEFINES_H
38