Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ colour text

//Read and Execute the code below to learn how to format system text in C++

#include <iostream> 
using namespace std;

int main(){
    cout<<"Printing most useful text format modes: ";
    
    cout<<"
1. x1b[1mBOLDx1b[0m";
    cout<<"
3. x1b[3mITALICx1b[0m";
    cout<<"
4. x1b[4mUNDERLINEx1b[0m";
    cout<<"
5. x1b[5mBLINKINGx1b[0m";
    cout<<"
7. x1b[7mHIGHLIGHTx1b[0m";
    cout<<"
8. x1b[8mPRINT NOTHINGx1b[0m";
    cout<<"
30. x1b[30mBLACKx1b[0m";
    cout<<"
31. x1b[31mREDx1b[0m";
    cout<<"
32. x1b[32mGREENx1b[0m";
    cout<<"
33. x1b[33mPURPLEx1b[0m";
    cout<<"
34. x1b[34mYELLOWx1b[0m";
    cout<<"
35. x1b[35mPINKx1b[0m";
    cout<<"
36. x1b[36mLIGHTBLUEx1b[0m";
    cout<<"
37. x1b[37mWHITEx1b[0m";
    cout<<"
40. x1b[40m Black Background      x1b[0m";
    cout<<"
41. x1b[41m Red Background        x1b[0m";
    cout<<"
42. x1b[42m Green Background      x1b[0m";
    cout<<"
43. x1b[43m Yellow Background     x1b[0m";
    cout<<"
44. x1b[44m Blue Background       x1b[0m";
    cout<<"
45. x1b[45m Pink Background       x1b[0m";
    cout<<"
46. x1b[46m Light Blue Background x1b[0m";
    cout<<"
-----------------------------------------------------";

    //Creating some string constants - shortcuts - combining text format modes
    const string RESET = "e[0m";   //Format Mode 0
    const string BOLD_HIGHLIGHT  = "e[1;7m";   //Format Modes 1 and 7
    const string COMPLEX_FORMAT_1 = "x1b[5;1;3;35;44m";  //Format Modes 5, 1, 2, 35 and 44
    const string COMPLEX_FORMAT_2 = "x1b[4;30;42m";      //Format Modes 4, 30 and 42
    const string COMPLEX_FORMAT_3 = "x1b[5;1m";      //Format Modes 5 and 1
    
    //Examples using shortcuts
    cout<<"

	** Program has been "<<BOLD_HIGHLIGHT<<"Terminated"<<RESET<<" **";
    cout<<"

	"<<COMPLEX_FORMAT_1<<"** Program has been Terminated **"<<RESET;
    cout<<"

	"<<COMPLEX_FORMAT_2<<"** Program has been Terminated"<<COMPLEX_FORMAT_3<<" **"<<RESET;
    
    cout<<endl;
    return 0;
}
Comment

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 << "			 ****CEB Electricity Bill Calculator****			 " << endl;
    cout << "			  ***                MENU           ***			  " <<endl;

    return 0;

}
Comment

text color c++

#include <iostream>
#include <string>

int main(int argc, char ** argv){
    
    printf("
");
    printf("x1B[31mTexting33[0m		");
    printf("x1B[32mTexting33[0m		");
    printf("x1B[33mTexting33[0m		");
    printf("x1B[34mTexting33[0m		");
    printf("x1B[35mTexting33[0m
");
    
    printf("x1B[36mTexting33[0m		");
    printf("x1B[36mTexting33[0m		");
    printf("x1B[36mTexting33[0m		");
    printf("x1B[37mTexting33[0m		");
    printf("x1B[93mTexting33[0m
");
    
    printf("33[3;42;30mTexting33[0m		");
    printf("33[3;43;30mTexting33[0m		");
    printf("33[3;44;30mTexting33[0m		");
    printf("33[3;104;30mTexting33[0m		");
    printf("33[3;100;30mTexting33[0m
");

    printf("33[3;47;35mTexting33[0m		");
    printf("33[2;47;35mTexting33[0m		");
    printf("33[1;47;35mTexting33[0m		");
    printf("		");
    printf("
");

    return 0;
}
Comment

print colored text in c++

// C++ program to illustrate coloring
#include <iostream>
#include <windows.h>
using namespace std;
  
// Driver Code
int main()
{
    // 0 for background Color(Black)
    // A for text color(Green)
    system("Color 0A");
  
    // Print any message
    cout << "Geeks For Geeks!";
    return 0;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: c++ functions 
Cpp :: c++ hours minutes seconds 
Cpp :: c++ switch case break 
Cpp :: c++ check if char is number 
Cpp :: c++ sleep 
Cpp :: sort stl 
Cpp :: set precision with fixed c++ 
Cpp :: run c++ program in mac terminal 
Cpp :: for loop with array c++ 
Cpp :: prime numbers less than a given number c++ 
Cpp :: random number of 0 or 1 c++ 
Cpp :: C++ Swap 2 Variables Without Using 3rd Variable 
Cpp :: how to create array with not constant size in cpp 
Cpp :: change integer to string c++ 
Cpp :: c++ sieve of eratosthenes 
Cpp :: C++ array sort method 
Cpp :: char ascii c++ 
Cpp :: convert string to lpwstr 
Cpp :: array max and minimum element c++ 
Cpp :: OpenGL C++ Version 
Cpp :: how to make an overloaded constructor in c++ 
Cpp :: cstring to string 
Cpp :: c++ output 
Cpp :: sort a vector c++ 
Cpp :: stoi function in c++ library 
Cpp :: cpp absolute value 
Cpp :: how to write hello world in c++ 
Cpp :: erase element from vector c++ 
Cpp :: priority queue in c++ 
Cpp :: macros in c++ 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =