home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TOOL_INC.ZIP / ANSICOLR.DCL < prev    next >
Encoding:
Text File  |  1988-01-29  |  486 b   |  21 lines

  1.  
  2. {color selection constants}
  3. type
  4.    color_string = string[10];
  5.  
  6.  
  7. {default colors}
  8. const
  9.    ansi_RED:     color_string = '1;31';
  10.    ansi_GREEN:   color_string = '1;32';
  11.    ansi_YELLOW:  color_string = '1;33';
  12.    ansi_BLUE:    color_string = '1;34';
  13.    ansi_MAGENTA: color_string = '1;35';
  14.    ansi_CYAN:    color_string = '1;36';
  15.    ansi_WHITE:   color_string = '1;37';
  16.    ansi_GRAY:    color_string = '0;37';
  17.  
  18. var
  19.    graphics:  boolean;  {is graphics mode active?}
  20.  
  21.