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 12 const rgb_color kBlack = { 0, 0, 0, 255 }; 13 const rgb_color kWhite = { 255, 255, 255, 255 }; 14 15 const rgb_color kRed = { 255, 0, 0, 255 }; 16 const rgb_color kGreen = { 0, 255, 0, 255 }; 17 const rgb_color kBlue = { 0, 0, 255, 255 }; 18 19 const rgb_color kOrange = { 255, 217, 121, 255 }; 20 const rgb_color kLightOrange = { 255, 217, 138, 255 }; 21 const rgb_color kDarkOrange = { 255, 145, 71, 255 }; 22 23 const rgb_color kAlphaLow = { 0xbb, 0xbb, 0xbb, 0xff }; 24 const rgb_color kAlphaHigh = { 0xe0, 0xe0, 0xe0, 0xff }; 25 26 // tweak view settings 27 const rgb_color kStripesHigh = { 112, 112, 112, 255 }; 28 const rgb_color kStripesLow = { 104, 104, 104, 255 }; 29 30 31 const pattern kStripes = { { 0xc7, 0x8f, 0x1f, 0x3e, 0x7c, 0xf8, 0xf1, 0xe3 } }; 32 const pattern kDotted = { { 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa } }; 33 const pattern kDottedBigger = { { 0x33, 0x33, 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc } }; 34 const pattern kDottedBig = { { 0x0f, 0x0f, 0x0f, 0x0f, 0xf0, 0xf0, 0xf0, 0xf0 } }; 35 36 37 #endif // UI_DEFINES_H 38