home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 199.lha / GimmeLib / color.h < prev    next >
C/C++ Source or Header  |  1988-12-27  |  684b  |  37 lines

  1. #ifndef GIMMELIB_COLOR_H
  2. #define GIMMELIB_COLOR_H
  3.  
  4. #define DFLT_MAX_COLORS    16
  5.  
  6. #ifdef I_AM_COLOR
  7. static USHORT gimColorTable[DFLT_MAX_COLORS] = {
  8.     0x002, 0xaaa, 0x900, 0x039,
  9.     0x2c2, 0xbb0, 0x0ff, 0xf0f,
  10.     0x620, 0xe50, 0x9f1, 0xeb0,
  11.     0x92f, 0x55f, 0x0f8, 0xeee
  12.   };
  13. #endif I_AM_COLOR
  14.  
  15. #define GIM_BACKGROUND    0
  16.  
  17. #define GIM_BLACK    0
  18. #define GIM_WHITE    1
  19. #define GIM_RED     2
  20. #define GIM_BLUE    3
  21.  
  22. #define GIM_GREEN    4
  23. #define GIM_YELLOW    5
  24. #define GIM_CYAN    6
  25. #define GIM_MAGENTA    7
  26.  
  27. #define GIM_DRED    8
  28. #define GIM_ORANGE    9
  29. #define GIM_LGREEN    10
  30. #define GIM_MUSTARD    11
  31. #define GIM_PURPLE    12
  32. #define GIM_LBLUE    13
  33. #define GIM_MINT    14
  34. #define GIM_LWHITE    15
  35.  
  36. #endif !GIMMELIB_COLOR_H
  37.