Skip to content

Instantly share code, notes, and snippets.

@Tricky1975
Created November 23, 2024 16:02
Show Gist options
  • Save Tricky1975/ab0266a91702b27ae18b7f4763640b05 to your computer and use it in GitHub Desktop.
Save Tricky1975/ab0266a91702b27ae18b7f4763640b05 to your computer and use it in GitHub Desktop.
Quick DOS program (in Turbo Pascal) to get the 15 colors of the DOS console.
Program Colors;
Uses Crt;
Var Ak:Integer;
Begin
For Ak:=0 to 15 Do Begin
TextColor(Ak);
Write(#219);
Write(#219);
Write(ak:4);
TextColor(7);
WriteLn(ak:4)
End
End.
@Tricky1975
Copy link
Author

The result will be something like this
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment