12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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.
|