home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / LCU.ZIP / COLORS.PAS next >
Encoding:
Pascal/Delphi Source File  |  1993-01-04  |  432 b   |  21 lines

  1. {$R-}    {Range checking off}
  2. {$B-}    {Boolean complete evaluation off}
  3. {$S-}    {Stack checking off}
  4. {$N-}    {No numeric coprocessor}
  5. {$I-}    {IO Checking Off}
  6. {$D-}
  7. {$T-}
  8.  
  9. unit Colors;
  10. {JW Sparks, last modified 6/30/88}
  11.  
  12. interface
  13. uses crt;
  14. const
  15.    Background            = Blue;
  16.    ForeGround            = White;
  17.    Emphasized            = Yellow;
  18.    Warning               = LightRed;
  19.  
  20. Implementation
  21. end.