added more useful colors and some patterns

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17889 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2006-06-21 10:34:37 +00:00
parent 362cd293d6
commit 667973ad58
1 changed files with 18 additions and 0 deletions

View File

@ -11,8 +11,26 @@
const rgb_color kBlack = { 0, 0, 0, 255 };
const rgb_color kWhite = { 255, 255, 255, 255 };
const rgb_color kRed = { 255, 0, 0, 255 };
const rgb_color kGreen = { 0, 255, 0, 255 };
const rgb_color kBlue = { 0, 0, 255, 255 };
const rgb_color kOrange = { 255, 217, 121, 255 };
const rgb_color kLightOrange = { 255, 217, 138, 255 };
const rgb_color kDarkOrange = { 255, 145, 71, 255 };
const rgb_color kAlphaLow = { 0xbb, 0xbb, 0xbb, 0xff };
const rgb_color kAlphaHigh = { 0xe0, 0xe0, 0xe0, 0xff };
// tweak view settings
const rgb_color kStripesHigh = { 112, 112, 112, 255 };
const rgb_color kStripesLow = { 104, 104, 104, 255 };
const pattern kStripes = { { 0xc7, 0x8f, 0x1f, 0x3e, 0x7c, 0xf8, 0xf1, 0xe3 } };
const pattern kDotted = { { 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa } };
const pattern kDottedBigger = { { 0x33, 0x33, 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc } };
#endif // UI_DEFINES_H