Here. I have some code that my friend taught me that uses the system ("COLOR "); statement. You can find different colors by opening up a cmd, and typing: color tree.
1 2 3 4 5 6 7 8 9 10 11
#include <iostream>
usingnamespace std;
int main()
{
system ("COLOR e4");
cout << "\n\n\n\t\t\t\tHELLO!\n\n";
system ("PAUSE");
return 0;
}