home *** CD-ROM | disk | FTP | other *** search
- {$R-} {Range checking off}
- {$B-} {Boolean complete evaluation off}
- {$S-} {Stack checking off}
- {$N-} {No numeric coprocessor}
- {$I-} {IO Checking Off}
- {$D-}
- {$T-}
-
- unit Colors;
- {JW Sparks, last modified 6/30/88}
-
- interface
- uses crt;
- const
- Background = Blue;
- ForeGround = White;
- Emphasized = Yellow;
- Warning = LightRed;
-
- Implementation
- end.