How to change Termux Text Color


Hi Guys if you are searching for How To Change Termux Text Color searching for the best article to get the best explanation about How To Change Termux Text Color Then you are at the right place.

Today I'm here going to share the step by step tutorial about How To Change Termux Text Color By this article. 

Don't you know anything about termux see tutorials 

First install this important commands

$ pkg update && pkg upgrade 
$ pkg install nano 
$ pkg install bash

Next Process 

$ ls
$ cd ..
$ cd usr
$ cd etc 
$ ls

Open this file in nano 👇
$ nano bash.bashrc

Remove this text but don't remove ( PS1="\s" ).

Next process see image 👇
First 
PS1='\033[31m Yourname :-  ' 👈 It is used to color the text & 31 is a color code.
Second 
PS1='\033[01;31m Yourname :-  '  ðŸ‘ˆ It is used to make the text bold, For use 01.
3rd
PS1='\033[01;42;31m Yourname :- ' 👈
It is used to color the background of the text for use 42
How to single text color Type this 

PS1='\033[01;42;31m AmitGajare\033[0m :-  '

\033[0m for use Close the color code


This Is Color & Background Codes 👇

Text Color Code 👇

1. Black = 30
2. Blue = 34
3. Green = 32
4. Cyan = 36
5. Red = 31
6. Purple = 35
7. Yellow = 33
8. White = 37

Background Color Code 👇

1. Black = 40 
2. Red = 41
3. Green = 42
4. Yellow = 43
5. Blue = 44
6. Purple = 45
7. Cyan = 46
8. White = 47

Attribute Code 👇

1. Bold = 01
2. Underscore = 04
3. Blink = 05
4. Reverse = 07
5. Concealed = 08


Previous Post Next Post