Guest User

CRT color constants

a guest
Nov 23rd, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.49 KB | None | 0 0
  1. const
  2.  
  3. { Foreground and background color constants }
  4.   Black         = 0;
  5.   Blue          = 1;
  6.   Green         = 2;
  7.   Cyan          = 3;
  8.   Red           = 4;
  9.   Magenta       = 5;
  10.   Brown         = 6;
  11.   LightGray     = 7;
  12.  
  13. { Foreground color constants }
  14.   DarkGray      = 8;
  15.   LightBlue     = 9;
  16.   LightGreen    = 10;
  17.   LightCyan     = 11;
  18.   LightRed      = 12;
  19.   LightMagenta  = 13;
  20.   Yellow        = 14;
  21.   White         = 15;
  22.  
  23. { Add-in for blinking }
  24.   Blink         = 128;
Advertisement
Add Comment
Please, Sign In to add comment