how to add colored text in c++
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
    //Changing Font Colors of the System
    system("Color 7C");
    cout << "\t\t\t ****CEB Electricity Bill Calculator****\t\t\t " << endl;
    cout << "\t\t\t  ***                MENU           ***\t\t\t  " <<endl;
    return 0;
}
