fpc/tests/ts010003.pp
1998-03-25 11:33:02 +00:00

56 lines
826 B
ObjectPascal

uses
crt;
begin
textcolor(blue);
writeln('blue');
textcolor(green);
writeln('green');
textcolor(cyan);
writeln('cyan');
textcolor(red);
writeln('red');
textcolor(magenta);
writeln('magenta');
textcolor(brown);
writeln('brown');
textcolor(lightgray);
writeln('lightgray');
textcolor(darkgray);
writeln('darkgray');
textcolor(lightblue);
writeln('lightblue');
textcolor(lightgreen);
writeln('lightgreen');
textcolor(lightcyan);
writeln('lightcyan');
textcolor(lightred);
writeln('lightred');
textcolor(lightmagenta);
writeln('lightmagenta');
textcolor(yellow);
writeln('yellow');
textcolor(white);
writeln('white');
textcolor(white+blink);
writeln('white blinking');
textcolor(lightgray);
writeln;
end.