Stimfit @PACKAGE_VERSION@
Loading...
Searching...
No Matches
colors.h
Go to the documentation of this file.
1//****************************************************************************************
2//
3// Copyright (c) 1993-1997 Axon Instruments.
4// All rights reserved.
5//
6//****************************************************************************************
7// HEADER: COLORS.H
8// PURPOSE: Contains RGB definitions for VGA solid colors.
9
10#ifndef __COLORS_H__
11#define __COLORS_H__
12
13#ifndef RGB
14#define RGB(r,g,b) ((DWORD)(((BYTE)(r)|((WORD)(g)<<8))|(((DWORD)(BYTE)(b))<<16)))
15#endif
16
17// // MS name
18#ifndef RGB_BLACK
19
20#define RGB_WHITE RGB(255,255,255) // White
21#define RGB_VLTGRAY RGB(224,224,224)
22#define RGB_LTGRAY RGB(192,192,192) // Silver
23#define RGB_DKGRAY RGB(128,128,128) // Gray
24#define RGB_VDKGRAY RGB(96,96,96)
25#define RGB_BLACK RGB(0,0,0) // Black
26
27#define RGB_VLTYELLOW RGB(255,255,192) //
28#define RGB_LTYELLOW RGB(255,255,128) //
29#define RGB_YELLOW RGB(255,255,0) // Yellow
30#define RGB_ORANGE RGB(255,128,0) // ????
31#define RGB_DKYELLOW RGB(128,128,0) // Olive?
32
33#define RGB_BLUE RGB(0,0,255) // Blue
34#define RGB_LTBLUE RGB(0,255,255) // Cyan
35#define RGB_DKBLUE RGB(0,0,128) // Navy
36#define RGB_BLUEGRAY RGB(0,128,128) // Teal
37
38#define RGB_AQUAMARINE RGB(64,128,128) //
39#define RGB_PURPLE RGB(64,0,128) //
40
41#define RGB_DKRED RGB(128,0,0) // Maroon
42#define RGB_MAUVE RGB(128,0,128) // Purple
43#define RGB_RED RGB(255,0,0) // Red
44#define RGB_PINK RGB(255,0,128) // ????
45#define RGB_LTPINK RGB(255,0,255) // Magenta or Fuschia
46
47#define RGB_GREEN RGB(0,255,0) // Lime
48#define RGB_DKGREEN RGB(0,128,0) // MS-Green
49
50#endif // RGB_BLACK
51
52#endif /* __COLORS_H__ */