Language:
Русский
English
NormVid.PAS
▀▀▀▀▀▀▀▀▀▀▀▀▀▀
{ Example for NormVideo, TextBackGround,
and TextColor }
uses Crt;
begin
{ Green characters on black}
TextColor(Green);
TextBackground(Black);
WriteLn('Hey there!');
{ Blinking light-red characters }
{ on gray }
TextColor(LightRed+Blink);
TextBackground(LightGray);
WriteLn('Hi there!');
{ Yellow characters on blue }
TextColor(14); { Yellow = 14 }
TextBackground(Blue);
WriteLn('Ho there!');
NormVideo; { Original attribute }
WriteLn('Back to normal...');
end.