Created
January 16, 2013 20:15
-
-
Save tmichel/4550474 to your computer and use it in GitHub Desktop.
colors for terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Example usage: | |
# echo -e ${RedF}This text will be red!${Reset} | |
# echo -e ${BlueF}${BoldOn}This will be blue and bold!${BoldOff} - and this is just blue!${Reset} | |
# echo -e ${RedB}${BlackF}This has a red background and black font!${Reset}and everything after the reset is normal text! | |
Colors() { | |
Escape="\033"; | |
BlackF="${Escape}[30m"; RedF="${Escape}[31m"; GreenF="${Escape}[32m"; | |
YellowF="${Escape}[33m"; BlueF="${Escape}[34m"; Purplef="${Escape}[35m"; | |
CyanF="${Escape}[36m"; WhiteF="${Escape}[37m"; | |
BlackB="${Escape}[40m"; RedB="${Escape}[41m"; GreenB="${Escape}[42m"; | |
YellowB="${Escape}[43m"; BlueB="${Escape}[44m"; PurpleB="${Escape}[45m"; | |
CyanB="${Escape}[46m"; WhiteB="${Escape}[47m"; | |
BoldOn="${Escape}[1m"; BoldOff="${Escape}[22m"; | |
ItalicsOn="${Escape}[3m"; ItalicsOff="${Escape}[23m"; | |
UnderlineOn="${Escape}[4m"; UnderlineOff="${Escape}[24m"; | |
BlinkOn="${Escape}[5m"; BlinkOff="${Escape}[25m"; | |
InvertOn="${Escape}[7m"; InvertOff="${Escape}[27m"; | |
Reset="${Escape}[0m"; | |
} | |
# Example: | |
# Call the function... | |
Colors; | |
# Output test code. | |
echo -e ${RedF}This text will be red!${Reset}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment