Cores no terminal: mudanças entre as edições
Aparência
Sem resumo de edição |
|||
| (11 revisões intermediárias por 2 usuários não estão sendo mostradas) | |||
| Linha 124: | Linha 124: | ||
echo -e "\033[1;36;44mTexto ciano em negrito com fundo azul\033[0m" | echo -e "\033[1;36;44mTexto ciano em negrito com fundo azul\033[0m" | ||
echo -e "\033[1;37;44mTexto branco em negrito com fundo azul\033[0m" | echo -e "\033[1;37;44mTexto branco em negrito com fundo azul\033[0m" | ||
== Para inserção em script's == | |||
Nomenclatura | |||
* '''COR''': Indica que é uma variável para cores. | |||
* '''L''': Cor da letra. | |||
* '''F''': Cor de fundo. | |||
* '''N''': Negrito. | |||
* '''COR_FINAL''': Fecha a instrução para colorir uma linha. | |||
<pre> | |||
### VARIÁVEIS DE CORES | |||
COR_L_PRETO="\033[30m" | |||
COR_L_VERMELHO="\033[31m" | |||
COR_L_VERDE="\033[32m" | |||
COR_L_AMARELO="\033[33m" | |||
COR_L_AZUL="\033[34m" | |||
COR_L_MAGENTA="\033[35m" | |||
COR_L_CIANO="\033[36m" | |||
COR_L_BRANCO="\033[37m" | |||
COR_FINAL="\033[0m" | |||
# NEGRITO | |||
COR_N_L_BRANCO="\033[1;37m" | |||
COR_N_L_PRETO="\033[30m" | |||
COR_N_L_VERMELHO="\033[31m" | |||
COR_N_L_VERDE="\033[32m" | |||
COR_N_L_AMARELO="\033[33m" | |||
COR_N_L_AZUL="\033[34m" | |||
COR_N_L_MAGENTA="\033[35m" | |||
COR_N_L_CIANO="\033[36m" | |||
# FUNDO VERMELHO | |||
COR_F_VERMELHO_L_PRETO="\033[30;41m" | |||
COR_F_VERMELHO_L_VERDE="\033[32;41m" | |||
COR_F_VERMELHO_L_AMARELO="\033[33;41m" | |||
COR_F_VERMELHO_L_AZUL="\033[34;41m" | |||
COR_F_VERMELHO_L_MAGENTA="\033[35;41m" | |||
COR_F_VERMELHO_L_CIANO_="\033[36;41m" | |||
COR_F_VERMELHO_L_BRANCO="\033[37;41m" | |||
# FUNDO VERDE | |||
COR_F_VERDE_L_PRETO="\033[30;42m" | |||
COR_F_VERDE_L_VERMELHO="\033[31;42m" | |||
COR_F_VERDE_L_AMARELO="\033[33;42m" | |||
COR_F_VERDE_L_AZUL="\033[34;42m" | |||
COR_F_VERDE_L_MAGENTA="\033[35;42m" | |||
COR_F_VERDE_L_CIANO="\033[36;42m" | |||
COR_F_VERDE_L_BRANCO="\033[37;42m" | |||
# FUNDO AMARELO | |||
COR_F_AMARELO_L_PRETO="\033[30;43m" | |||
COR_F_AMARELO_L_VERMELHO="\033[31;43m" | |||
COR_F_AMARELO_L_VERDE="\033[32;43m" | |||
COR_F_AMARELO_L_AZUL="\033[34;43m" | |||
COR_F_AMARELO_L_MAGENTA="\033[35;43m" | |||
COR_F_AMARELO_L_CIANO="\033[36;43m" | |||
COR_F_AMARELO_L_BRANCO="\033[37;43m" | |||
# FUNDO AZUL | |||
COR_F_AZUL_L_PRETO="\033[30;44m" | |||
COR_F_AZUL_L_VERMELHO="\033[31;44m" | |||
COR_F_AZUL_L_VERDE="\033[32;44m" | |||
COR_F_AZUL_L_AMARELO="\033[33;44m" | |||
COR_F_AZUL_L_MAGENTA="\033[35;44m" | |||
COR_F_AZUL_L_CIANO="\033[36;44m" | |||
COR_F_AZUL_L_BRANCO="\033[37;44m" | |||
# FUNDO VERMELHO COM NEGRITO | |||
COR_F_VERMELHO_L_N_PRETO="\033[1;30;41m" | |||
COR_F_VERMELHO_L_N_VERDE="\033[1;32;41m" | |||
COR_F_VERMELHO_L_N_AMARELO="\033[1;33;41m" | |||
COR_F_VERMELHO_L_N_AZUL="\033[1;34;41m" | |||
COR_F_VERMELHO_L_N_MAGENTA="\033[1;35;41m" | |||
COR_F_VERMELHO_L_N_CIANO="\033[1;36;41m" | |||
COR_F_VERMELHO_L_N_BRANCO="\033[1;37;41m" | |||
# FUNDO VERDE COM NEGRITO | |||
COR_F_VERDE_L_N_PRETO="\033[1;30;42m" | |||
COR_F_VERDE_L_N_VERMELHO="\033[1;31;42m" | |||
COR_F_VERDE_L_N_AMARELO="\033[1;33;42m" | |||
COR_F_VERDE_L_N_AZUL="\033[1;34;42m" | |||
COR_F_VERDE_L_N_MAGENTA="\033[1;35;42m" | |||
COR_F_VERDE_L_N_CIANO="\033[1;36;42m" | |||
COR_F_VERDE_L_N_BRANCO="\033[1;37;42m" | |||
# FUNDO AMARELO COM NEGRITO | |||
COR_F_AMARELO_L_N_PRETO="\033[1;30;43m" | |||
COR_F_AMARELO_L_N_VERMELHO="\033[1;31;43m" | |||
COR_F_AMARELO_L_N_VERDE="\033[1;32;43m" | |||
COR_F_AMARELO_L_N_AZUL="\033[1;34;43m" | |||
COR_F_AMARELO_L_N_MAGENTA="\033[1;35;43m" | |||
COR_F_AMARELO_L_N_CIANO="\033[1;36;43m" | |||
COR_F_AMARELO_L_N_BRANCO="\033[1;37;43m" | |||
# FUNDO AZUL COM NEGRITO | |||
COR_F_AZUL_L_N_PRETO="\033[1;30;44m" | |||
COR_F_AZUL_L_N_VERMELHO="\033[1;31;44m" | |||
COR_F_AZUL_L_N_VERDE="\033[1;32;44m" | |||
COR_F_AZUL_L_N_AMARELO="\033[1;33;44m" | |||
COR_F_AZUL_L_N_MAGENTA="\033[1;35;44m" | |||
COR_F_AZUL_L_N_CIANO="\033[1;36;44m" | |||
COR_F_AZUL_L_N_BRANCO="\033[1;37;44m" | |||
############################# | |||
</pre> | |||
== TABELA DE CORES == | |||
=== Texto (foreground) === | |||
Código ANSI: \e[38;5;Nm | |||
* <font color="#5F0000">Amarelo - #5F0000</font> - \e[38;5;52m | |||
echo -e "\e[38;5;52mTexto"\e[0m" | |||
* <font color="#5F5F00">Amarelo - #5F5F00</font> - \e[38;5;58m | |||
echo -e "\e[38;5;58mtexto\e[0m" | |||
* <font color="#870000">Amarelo - #870000</font> - \e[38;5;88m | |||
echo -e "\e[38;5;88mtexto\e[0m" | |||
* <font color="#875F00">Amarelo - #875F00</font> - \e[38;5;94m | |||
echo -e "\e[38;5;94mtexto\e[0m" | |||
* <font color="#875F5F">Amarelo - #875F5F</font> - \e[38;5;95m | |||
echo -e "\e[38;5;95mtexto\e[0m" | |||
* <font color="#878700">Amarelo - #878700</font> - \e[38;5;100m | |||
echo -e "\e[38;5;100mtexto\e[0m" | |||
* <font color="#87875F">Amarelo - #87875F</font> - \e[38;5;101m | |||
echo -e "\e[38;5;101mtexto\e[0m" | |||
* <font color="#AF0000">Amarelo - #AF0000</font> - \e[38;5;124m | |||
echo -e "\e[38;5;124mtexto\e[0m" | |||
* <font color="#AF5F00">Amarelo - #AF5F00</font> - \e[38;5;130m | |||
echo -e "\e[38;5;130mtexto\e[0m" | |||
* <font color="#AF5F5F">Amarelo - #AF5F5F</font> - \e[38;5;131m | |||
echo -e "\e[38;5;131mtexto\e[0m" | |||
* <font color="#AF8700">Amarelo - #AF8700</font> - \e[38;5;136m | |||
echo -e "\e[38;5;136mtexto\e[0m" | |||
* <font color="#AF875F">Amarelo - #AF875F</font> - \e[38;5;137m | |||
echo -e "\e[38;5;137mtexto\e[0m" | |||
* <font color="#AF8787">Amarelo - #AF8787</font> - \e[38;5;138m | |||
echo -e "\e[38;5;138mtexto\e[0m" | |||
* <font color="#AFAF00">Amarelo - #AFAF00</font> - \e[38;5;142m | |||
echo -e "\e[38;5;142mtexto\e[0m" | |||
* <font color="#AFAF5F">Amarelo - #AFAF5F</font> - \e[38;5;143m | |||
echo -e "\e[38;5;143mtexto\e[0m" | |||
* <font color="#AFAF87">Amarelo - #AFAF87</font> - \e[38;5;144m | |||
echo -e "\e[38;5;144mtexto\e[0m" | |||
* <font color="#D70000">Amarelo - #D70000</font> - \e[38;5;160m | |||
echo -e "\e[38;5;160mtexto\e[0m" | |||
* <font color="#D75F00">Amarelo - #D75F00</font> - \e[38;5;166m | |||
echo -e "\e[38;5;166mtexto\e[0m" | |||
* <font color="#D75F5F">Amarelo - #D75F5F</font> - \e[38;5;167m | |||
echo -e "\e[38;5;167mtexto\e[0m" | |||
* <font color="#D78700">Amarelo - #D78700</font> - \e[38;5;172m | |||
echo -e "\e[38;5;172mtexto\e[0m" | |||
* <font color="#D7875F">Amarelo - #D7875F</font> - \e[38;5;173m | |||
echo -e "\e[38;5;173mtexto\e[0m" | |||
* <font color="#D78787">Amarelo - #D78787</font> - \e[38;5;174m | |||
echo -e "\e[38;5;174mtexto\e[0m" | |||
* <font color="#D7AF00">Amarelo - #D7AF00</font> - \e[38;5;178m | |||
echo -e "\e[38;5;178mtexto\e[0m" | |||
* <font color="#D7AF5F">Amarelo - #D7AF5F</font> - \e[38;5;179m | |||
echo -e "\e[38;5;179mtexto\e[0m" | |||
* <font color="#D7AF87">Amarelo - #D7AF87</font> - \e[38;5;180m | |||
echo -e "\e[38;5;180mtexto\e[0m" | |||
* <font color="#D7AFAF">Amarelo - #D7AFAF</font> - \e[38;5;181m | |||
echo -e "\e[38;5;181mtexto\e[0m" | |||
* <font color="#D7D700">Amarelo - #D7D700</font> - \e[38;5;184m | |||
echo -e "\e[38;5;184mtexto\e[0m" | |||
* <font color="#D7D75F">Amarelo - #D7D75F</font> - \e[38;5;185m | |||
echo -e "\e[38;5;185mtexto\e[0m" | |||
* <font color="#D7D787">Amarelo - #D7D787</font> - \e[38;5;186m | |||
echo -e "\e[38;5;186mtexto\e[0m" | |||
* <font color="#D7D7AF">Amarelo - #D7D7AF</font> - \e[38;5;187m | |||
echo -e "\e[38;5;187mtexto\e[0m" | |||
* <font color="#FF0000">Amarelo - #FF0000</font> - \e[38;5;196m | |||
echo -e "\e[38;5;196mtexto\e[0m" | |||
* <font color="#FF5F00">Amarelo - #FF5F00</font> - \e[38;5;202m | |||
echo -e "\e[38;5;202mtexto\e[0m" | |||
* <font color="#FF5F5F">Amarelo - #FF5F5F</font> - \e[38;5;203m | |||
echo -e "\e[38;5;203mtexto\e[0m" | |||
* <font color="#FF8700">Amarelo - #FF8700</font> - \e[38;5;208m | |||
echo -e "\e[38;5;208mtexto\e[0m" | |||
* <font color="#FF875F">Amarelo - #FF875F</font> - \e[38;5;209m | |||
echo -e "\e[38;5;209mtexto\e[0m" | |||
* <font color="#FF8787">Amarelo - #FF8787</font> - \e[38;5;210m | |||
echo -e "\e[38;5;210mtexto\e[0m" | |||
* <font color="#FFAF00">Amarelo - #FFAF00</font> - \e[38;5;214m | |||
echo -e "\e[38;5;214mtexto\e[0m" | |||
* <font color="#FFAF5F">Amarelo - #FFAF5F</font> - \e[38;5;215m | |||
echo -e "\e[38;5;215mtexto\e[0m" | |||
* <font color="#FFAF87">Amarelo - #FFAF87</font> - \e[38;5;216m | |||
echo -e "\e[38;5;216mtexto\e[0m" | |||
* <font color="#FFAFAF">Amarelo - #FFAFAF</font> - \e[38;5;217m | |||
echo -e "\e[38;5;217mtexto\e[0m" | |||
* <font color="#FFD700">Amarelo - #FFD700</font> - \e[38;5;220m | |||
echo -e "\e[38;5;220mtexto\e[0m" | |||
* <font color="#FFD75F">Amarelo - #FFD75F</font> - \e[38;5;221m | |||
echo -e "\e[38;5;221mtexto\e[0m" | |||
* <font color="#FFD787">Amarelo - #FFD787</font> - \e[38;5;222m | |||
echo -e "\e[38;5;222mtexto\e[0m" | |||
* <font color="#FFD7AF">Amarelo - #FFD7AF</font> - \e[38;5;223m | |||
echo -e "\e[38;5;223mtexto\e[0m" | |||
* <font color="#FFD7D7">Amarelo - #FFD7D7</font> - \e[38;5;224m | |||
echo -e "\e[38;5;224mtexto\e[0m" | |||
* <font color="#FFFF00">Amarelo - #FFFF00</font> - \e[38;5;226m | |||
echo -e "\e[38;5;226mtexto\e[0m" | |||
* <font color="#FFFF5F">Amarelo - #FFFF5F</font> - \e[38;5;227m | |||
echo -e "\e[38;5;227mtexto\e[0m" | |||
* <font color="#FFFF87">Amarelo - #FFFF87</font> - \e[38;5;228m | |||
echo -e "\e[38;5;228mtexto\e[0m" | |||
* <font color="#FFFFAF">Amarelo - #FFFFAF</font> - \e[38;5;229m | |||
echo -e "\e[38;5;229mtexto\e[0m" | |||
* <font color="#FFFFD7">Amarelo - #FFFFD7</font> - \e[38;5;230m | |||
echo -e "\e[38;5;230mtexto\e[0m" | |||
* <font color="#E9AD0C">Amarelo Ouro - #E9AD0C</font> - \e[38;5;11m | |||
echo -e "\e[38;5;11mtexto\e[0m" | |||
* <font color="#00005F">Azul - #00005F</font> - \e[38;5;17m | |||
echo -e "\e[38;5;17mtexto\e[0m" | |||
* <font color="#000087">Azul - #000087</font> - \e[38;5;18m | |||
echo -e "\e[38;5;18mtexto\e[0m" | |||
* <font color="#0000AF">Azul - #0000AF</font> - \e[38;5;19m | |||
echo -e "\e[38;5;19mtexto\e[0m" | |||
* <font color="#0000D7">Azul - #0000D7</font> - \e[38;5;20m | |||
echo -e "\e[38;5;20mtexto\e[0m" | |||
* <font color="#0000FF">Azul - #0000FF</font> - \e[38;5;21m | |||
echo -e "\e[38;5;21mtexto\e[0m" | |||
* <font color="#005F87">Azul - #005F87</font> - \e[38;5;24m | |||
echo -e "\e[38;5;24mtexto\e[0m" | |||
* <font color="#005FAF">Azul - #005FAF</font> - \e[38;5;25m | |||
echo -e "\e[38;5;25mtexto\e[0m" | |||
* <font color="#005FD7">Azul - #005FD7</font> - \e[38;5;26m | |||
echo -e "\e[38;5;26mtexto\e[0m" | |||
* <font color="#005FFF">Azul - #005FFF</font> - \e[38;5;27m | |||
echo -e "\e[38;5;27mtexto\e[0m" | |||
* <font color="#0087AF">Azul - #0087AF</font> - \e[38;5;31m | |||
echo -e "\e[38;5;31mtexto\e[0m" | |||
* <font color="#0087D7">Azul - #0087D7</font> - \e[38;5;32m | |||
echo -e "\e[38;5;32mtexto\e[0m" | |||
* <font color="#0087FF">Azul - #0087FF</font> - \e[38;5;33m | |||
echo -e "\e[38;5;33mtexto\e[0m" | |||
* <font color="#00AFD7">Azul - #00AFD7</font> - \e[38;5;38m | |||
echo -e "\e[38;5;38mtexto\e[0m" | |||
* <font color="#00AFFF">Azul - #00AFFF</font> - \e[38;5;39m | |||
echo -e "\e[38;5;39mtexto\e[0m" | |||
* <font color="#00D7FF">Azul - #00D7FF</font> - \e[38;5;45m | |||
echo -e "\e[38;5;45mtexto\e[0m" | |||
* <font color="#5F0087">Azul - #5F0087</font> - \e[38;5;54m | |||
echo -e "\e[38;5;54mtexto\e[0m" | |||
* <font color="#5F00AF">Azul - #5F00AF</font> - \e[38;5;55m | |||
echo -e "\e[38;5;55mtexto\e[0m" | |||
* <font color="#5F00D7">Azul - #5F00D7</font> - \e[38;5;56m | |||
echo -e "\e[38;5;56mtexto\e[0m" | |||
* <font color="#5F00FF">Azul - #5F00FF</font> - \e[38;5;57m | |||
echo -e "\e[38;5;57mtexto\e[0m" | |||
* <font color="#5F5F87">Azul - #5F5F87</font> - \e[38;5;60m | |||
echo -e "\e[38;5;60mtexto\e[0m" | |||
* <font color="#5F5FAF">Azul - #5F5FAF</font> - \e[38;5;61m | |||
echo -e "\e[38;5;61mtexto\e[0m" | |||
* <font color="#5F5FD7">Azul - #5F5FD7</font> - \e[38;5;62m | |||
echo -e "\e[38;5;62mtexto\e[0m" | |||
* <font color="#5F5FFF">Azul - #5F5FFF</font> - \e[38;5;63m | |||
echo -e "\e[38;5;63mtexto\e[0m" | |||
* <font color="#5F87AF">Azul - #5F87AF</font> - \e[38;5;67m | |||
echo -e "\e[38;5;67mtexto\e[0m" | |||
* <font color="#5F87D7">Azul - #5F87D7</font> - \e[38;5;68m | |||
echo -e "\e[38;5;68mtexto\e[0m" | |||
* <font color="#5F87FF">Azul - #5F87FF</font> - \e[38;5;69m | |||
echo -e "\e[38;5;69mtexto\e[0m" | |||
* <font color="#5FAFD7">Azul - #5FAFD7</font> - \e[38;5;74m | |||
echo -e "\e[38;5;74mtexto\e[0m" | |||
* <font color="#5FAFFF">Azul - #5FAFFF</font> - \e[38;5;75m | |||
echo -e "\e[38;5;75mtexto\e[0m" | |||
* <font color="#5FD7FF">Azul - #5FD7FF</font> - \e[38;5;81m | |||
echo -e "\e[38;5;81mtexto\e[0m" | |||
* <font color="#8700AF">Azul - #8700AF</font> - \e[38;5;91m | |||
echo -e "\e[38;5;91mtexto\e[0m" | |||
* <font color="#8700D7">Azul - #8700D7</font> - \e[38;5;92m | |||
echo -e "\e[38;5;92mtexto\e[0m" | |||
* <font color="#8700FF">Azul - #8700FF</font> - \e[38;5;93m | |||
echo -e "\e[38;5;93mtexto\e[0m" | |||
* <font color="#875FAF">Azul - #875FAF</font> - \e[38;5;97m | |||
echo -e "\e[38;5;97mtexto\e[0m" | |||
* <font color="#875FD7">Azul - #875FD7</font> - \e[38;5;98m | |||
echo -e "\e[38;5;98mtexto\e[0m" | |||
* <font color="#875FFF">Azul - #875FFF</font> - \e[38;5;99m | |||
echo -e "\e[38;5;99mtexto\e[0m" | |||
* <font color="#8787AF">Azul - #8787AF</font> - \e[38;5;103m | |||
echo -e "\e[38;5;103mtexto\e[0m" | |||
* <font color="#8787D7">Azul - #8787D7</font> - \e[38;5;104m | |||
echo -e "\e[38;5;104mtexto\e[0m" | |||
* <font color="#8787FF">Azul - #8787FF</font> - \e[38;5;105m | |||
echo -e "\e[38;5;105mtexto\e[0m" | |||
* <font color="#87AFD7">Azul - #87AFD7</font> - \e[38;5;110m | |||
echo -e "\e[38;5;110mtexto\e[0m" | |||
* <font color="#87AFFF">Azul - #87AFFF</font> - \e[38;5;111m | |||
echo -e "\e[38;5;111mtexto\e[0m" | |||
* <font color="#87D7FF">Azul - #87D7FF</font> - \e[38;5;117m | |||
echo -e "\e[38;5;117mtexto\e[0m" | |||
* <font color="#AF00D7">Azul - #AF00D7</font> - \e[38;5;128m | |||
echo -e "\e[38;5;128mtexto\e[0m" | |||
* <font color="#AF00FF">Azul - #AF00FF</font> - \e[38;5;129m | |||
echo -e "\e[38;5;129mtexto\e[0m" | |||
* <font color="#AF5FD7">Azul - #AF5FD7</font> - \e[38;5;134m | |||
echo -e "\e[38;5;134mtexto\e[0m" | |||
* <font color="#AF5FFF">Azul - #AF5FFF</font> - \e[38;5;135m | |||
echo -e "\e[38;5;135mtexto\e[0m" | |||
* <font color="#AF87D7">Azul - #AF87D7</font> - \e[38;5;140m | |||
echo -e "\e[38;5;140mtexto\e[0m" | |||
* <font color="#AF87FF">Azul - #AF87FF</font> - \e[38;5;141m | |||
echo -e "\e[38;5;141mtexto\e[0m" | |||
* <font color="#AFAFD7">Azul - #AFAFD7</font> - \e[38;5;146m | |||
echo -e "\e[38;5;146mtexto\e[0m" | |||
* <font color="#AFAFFF">Azul - #AFAFFF</font> - \e[38;5;147m | |||
echo -e "\e[38;5;147mtexto\e[0m" | |||
* <font color="#AFD7FF">Azul - #AFD7FF</font> - \e[38;5;153m | |||
echo -e "\e[38;5;153mtexto\e[0m" | |||
* <font color="#D700FF">Azul - #D700FF</font> - \e[38;5;165m | |||
echo -e "\e[38;5;165mtexto\e[0m" | |||
* <font color="#D75FFF">Azul - #D75FFF</font> - \e[38;5;171m | |||
echo -e "\e[38;5;171mtexto\e[0m" | |||
* <font color="#D787FF">Azul - #D787FF</font> - \e[38;5;177m | |||
echo -e "\e[38;5;177mtexto\e[0m" | |||
* <font color="#D7AFFF">Azul - #D7AFFF</font> - \e[38;5;183m | |||
echo -e "\e[38;5;183mtexto\e[0m" | |||
* <font color="#D7D7FF">Azul - #D7D7FF</font> - \e[38;5;189m | |||
echo -e "\e[38;5;189mtexto\e[0m" | |||
* <font color="#2A7BDE">Azul Claro - #2A7BDE</font> - \e[38;5;12m | |||
echo -e "\e[38;5;12mtexto\e[0m" | |||
* <font color="#12488B">Azul Escuro - #12488B</font> - \e[38;5;4m | |||
echo -e "\e[38;5;4m texto\e[0m" | |||
* <font color="#FFFFFF">Branco - #FFFFFF</font> - \e[38;5;15m | |||
echo -e "\e[38;5;15mtexto\e[0m" | |||
* <font color="#FFFFFF">Branco - #FFFFFF</font> - \e[38;5;231m | |||
echo -e "\e[38;5;231mtexto\e[0m" | |||
* <font color="#005F5F">Ciano - #005F5F</font> - \e[38;5;23m | |||
echo -e "\e[38;5;23mtexto\e[0m" | |||
* <font color="#00875F">Ciano - #00875F</font> - \e[38;5;29m | |||
echo -e "\e[38;5;29mtexto\e[0m" | |||
* <font color="#008787">Ciano - #008787</font> - \e[38;5;30m | |||
echo -e "\e[38;5;30mtexto\e[0m" | |||
* <font color="#00AF5F">Ciano - #00AF5F</font> - \e[38;5;35m | |||
echo -e "\e[38;5;35mtexto\e[0m" | |||
* <font color="#00AF87">Ciano - #00AF87</font> - \e[38;5;36m | |||
echo -e "\e[38;5;36mtexto\e[0m" | |||
* <font color="#00AFAF">Ciano - #00AFAF</font> - \e[38;5;37m | |||
echo -e "\e[38;5;37mtexto\e[0m" | |||
* <font color="#00D75F">Ciano - #00D75F</font> - \e[38;5;41m | |||
echo -e "\e[38;5;41mtexto\e[0m" | |||
* <font color="#00D787">Ciano - #00D787</font> - \e[38;5;42m | |||
echo -e "\e[38;5;42mtexto\e[0m" | |||
* <font color="#00D7AF">Ciano - #00D7AF</font> - \e[38;5;43m | |||
echo -e "\e[38;5;43mtexto\e[0m" | |||
* <font color="#00D7D7">Ciano - #00D7D7</font> - \e[38;5;44m | |||
echo -e "\e[38;5;44mtexto\e[0m" | |||
* <font color="#00FF5F">Ciano - #00FF5F</font> - \e[38;5;47m | |||
echo -e "\e[38;5;47mtexto\e[0m" | |||
* <font color="#00FF87">Ciano - #00FF87</font> - \e[38;5;48m | |||
echo -e "\e[38;5;48mtexto\e[0m" | |||
* <font color="#00FFAF">Ciano - #00FFAF</font> - \e[38;5;49m | |||
echo -e "\e[38;5;49mtexto\e[0m" | |||
* <font color="#00FFD7">Ciano - #00FFD7</font> - \e[38;5;50m | |||
echo -e "\e[38;5;50mtexto\e[0m" | |||
* <font color="#00FFFF">Ciano - #00FFFF</font> - \e[38;5;51m | |||
echo -e "\e[38;5;51mtexto\e[0m" | |||
* <font color="#5F8787">Ciano - #5F8787</font> - \e[38;5;66m | |||
echo -e "\e[38;5;66mtexto\e[0m" | |||
* <font color="#5FAF87">Ciano - #5FAF87</font> - \e[38;5;72m | |||
echo -e "\e[38;5;72mtexto\e[0m" | |||
* <font color="#5FAFAF">Ciano - #5FAFAF</font> - \e[38;5;73m | |||
echo -e "\e[38;5;73mtexto\e[0m" | |||
* <font color="#5FD787">Ciano - #5FD787</font> - \e[38;5;78m | |||
echo -e "\e[38;5;78mtexto\e[0m" | |||
* <font color="#5FD7AF">Ciano - #5FD7AF</font> - \e[38;5;79m | |||
echo -e "\e[38;5;79mtexto\e[0m" | |||
* <font color="#5FD7D7">Ciano - #5FD7D7</font> - \e[38;5;80m | |||
echo -e "\e[38;5;80mtexto\e[0m" | |||
* <font color="#5FFF87">Ciano - #5FFF87</font> - \e[38;5;84m | |||
echo -e "\e[38;5;84mtexto\e[0m" | |||
* <font color="#5FFFAF">Ciano - #5FFFAF</font> - \e[38;5;85m | |||
echo -e "\e[38;5;85mtexto\e[0m" | |||
* <font color="#5FFFD7">Ciano - #5FFFD7</font> - \e[38;5;86m | |||
echo -e "\e[38;5;86mtexto\e[0m" | |||
* <font color="#5FFFFF">Ciano - #5FFFFF</font> - \e[38;5;87m | |||
echo -e "\e[38;5;87mtexto\e[0m" | |||
* <font color="#87AFAF">Ciano - #87AFAF</font> - \e[38;5;109m | |||
echo -e "\e[38;5;109mtexto\e[0m" | |||
* <font color="#87D7AF">Ciano - #87D7AF</font> - \e[38;5;115m | |||
echo -e "\e[38;5;115mtexto\e[0m" | |||
* <font color="#87D7D7">Ciano - #87D7D7</font> - \e[38;5;116m | |||
echo -e "\e[38;5;116mtexto\e[0m" | |||
* <font color="#87FFAF">Ciano - #87FFAF</font> - \e[38;5;121m | |||
echo -e "\e[38;5;121mtexto\e[0m" | |||
* <font color="#87FFD7">Ciano - #87FFD7</font> - \e[38;5;122m | |||
echo -e "\e[38;5;122mtexto\e[0m" | |||
* <font color="#87FFFF">Ciano - #87FFFF</font> - \e[38;5;123m | |||
echo -e "\e[38;5;123mtexto\e[0m" | |||
* <font color="#AFD7D7">Ciano - #AFD7D7</font> - \e[38;5;152m | |||
echo -e "\e[38;5;152mtexto\e[0m" | |||
* <font color="#AFFFD7">Ciano - #AFFFD7</font> - \e[38;5;158m | |||
echo -e "\e[38;5;158mtexto\e[0m" | |||
* <font color="#AFFFFF">Ciano - #AFFFFF</font> - \e[38;5;159m | |||
echo -e "\e[38;5;159mtexto\e[0m" | |||
* <font color="#D7FFFF">Ciano - #D7FFFF</font> - \e[38;5;195m | |||
echo -e "\e[38;5;195mtexto\e[0m" | |||
* <font color="#33C7DE">Ciano Claro - #33C7DE</font> - \e[38;5;14m | |||
echo -e "\e[38;5;14mtexto\e[0m" | |||
* <font color="#2AA1B3">Ciano Escuro - #2AA1B3</font> - \e[38;5;6m | |||
echo -e "\e[38;5;6m texto\e[0m" | |||
* <font color="#1C1C1C">Cinza 11% - #1C1C1C</font> - \e[38;5;234m | |||
echo -e "\e[38;5;234mtexto\e[0m" | |||
* <font color="#262626">Cinza 15% - #262626</font> - \e[38;5;235m | |||
echo -e "\e[38;5;235mtexto\e[0m" | |||
* <font color="#303030">Cinza 19% - #303030</font> - \e[38;5;236m | |||
echo -e "\e[38;5;236mtexto\e[0m" | |||
* <font color="#3A3A3A">Cinza 23% - #3A3A3A</font> - \e[38;5;237m | |||
echo -e "\e[38;5;237mtexto\e[0m" | |||
* <font color="#444444">Cinza 27% - #444444</font> - \e[38;5;238m | |||
echo -e "\e[38;5;238mtexto\e[0m" | |||
* <font color="#080808">Cinza 3% - #080808</font> - \e[38;5;232m | |||
echo -e "\e[38;5;232mtexto\e[0m" | |||
* <font color="#4E4E4E">Cinza 31% - #4E4E4E</font> - \e[38;5;239m | |||
echo -e "\e[38;5;239mtexto\e[0m" | |||
* <font color="#585858">Cinza 35% - #585858</font> - \e[38;5;240m | |||
echo -e "\e[38;5;240mtexto\e[0m" | |||
* <font color="#5F5F5F">Cinza 37% - #5F5F5F</font> - \e[38;5;59m | |||
echo -e "\e[38;5;59mtexto\e[0m" | |||
* <font color="#626262">Cinza 38% - #626262</font> - \e[38;5;241m | |||
echo -e "\e[38;5;241mtexto\e[0m" | |||
* <font color="#6C6C6C">Cinza 42% - #6C6C6C</font> - \e[38;5;242m | |||
echo -e "\e[38;5;242mtexto\e[0m" | |||
* <font color="#767676">Cinza 46% - #767676</font> - \e[38;5;243m | |||
echo -e "\e[38;5;243mtexto\e[0m" | |||
* <font color="#808080">Cinza 50% - #808080</font> - \e[38;5;244m | |||
echo -e "\e[38;5;244mtexto\e[0m" | |||
* <font color="#878787">Cinza 53% - #878787</font> - \e[38;5;102m | |||
echo -e "\e[38;5;102mtexto\e[0m" | |||
* <font color="#8A8A8A">Cinza 54% - #8A8A8A</font> - \e[38;5;245m | |||
echo -e "\e[38;5;245mtexto\e[0m" | |||
* <font color="#949494">Cinza 58% - #949494</font> - \e[38;5;246m | |||
echo -e "\e[38;5;246mtexto\e[0m" | |||
* <font color="#9E9E9E">Cinza 62% - #9E9E9E</font> - \e[38;5;247m | |||
echo -e "\e[38;5;247mtexto\e[0m" | |||
* <font color="#A8A8A8">Cinza 66% - #A8A8A8</font> - \e[38;5;248m | |||
echo -e "\e[38;5;248mtexto\e[0m" | |||
* <font color="#AFAFAF">Cinza 69% - #AFAFAF</font> - \e[38;5;145m | |||
echo -e "\e[38;5;145mtexto\e[0m" | |||
* <font color="#121212">Cinza 7% - #121212</font> - \e[38;5;233m | |||
echo -e "\e[38;5;233mtexto\e[0m" | |||
* <font color="#B2B2B2">Cinza 70% - #B2B2B2</font> - \e[38;5;249m | |||
echo -e "\e[38;5;249mtexto\e[0m" | |||
* <font color="#BCBCBC">Cinza 74% - #BCBCBC</font> - \e[38;5;250m | |||
echo -e "\e[38;5;250mtexto\e[0m" | |||
* <font color="#C6C6C6">Cinza 78% - #C6C6C6</font> - \e[38;5;251m | |||
echo -e "\e[38;5;251mtexto\e[0m" | |||
* <font color="#D0D0D0">Cinza 82% - #D0D0D0</font> - \e[38;5;252m | |||
echo -e "\e[38;5;252mtexto\e[0m" | |||
* <font color="#D7D7D7">Cinza 84% - #D7D7D7</font> - \e[38;5;188m | |||
echo -e "\e[38;5;188mtexto\e[0m" | |||
* <font color="#DADADA">Cinza 85% - #DADADA</font> - \e[38;5;253m | |||
echo -e "\e[38;5;253mtexto\e[0m" | |||
* <font color="#E4E4E4">Cinza 89% - #E4E4E4</font> - \e[38;5;254m | |||
echo -e "\e[38;5;254mtexto\e[0m" | |||
* <font color="#EEEEEE">Cinza 93% - #EEEEEE</font> - \e[38;5;255m | |||
echo -e "\e[38;5;255mtexto\e[0m" | |||
* <font color="#D0CFCC">Cinza Claro - #D0CFCC</font> - \e[38;5;7m | |||
echo -e "\e[38;5;7mtexto\e[0m" | |||
* <font color="#5E5C64">Cinza Escuro - #5E5C64</font> - \e[38;5;8m | |||
echo -e "\e[38;5;8m texto\e[0m" | |||
* <font color="#5F005F">Magenta - #5F005F</font> - \e[38;5;53m | |||
echo -e "\e[38;5;53mtexto\e[0m" | |||
* <font color="#87005F">Magenta - #87005F</font> - \e[38;5;89m | |||
echo -e "\e[38;5;89mtexto\e[0m" | |||
* <font color="#870087">Magenta - #870087</font> - \e[38;5;90m | |||
echo -e "\e[38;5;90mtexto\e[0m" | |||
* <font color="#875F87">Magenta - #875F87</font> - \e[38;5;96m | |||
echo -e "\e[38;5;96mtexto\e[0m" | |||
* <font color="#AF005F">Magenta - #AF005F</font> - \e[38;5;125m | |||
echo -e "\e[38;5;125mtexto\e[0m" | |||
* <font color="#AF0087">Magenta - #AF0087</font> - \e[38;5;126m | |||
echo -e "\e[38;5;126mtexto\e[0m" | |||
* <font color="#AF00AF">Magenta - #AF00AF</font> - \e[38;5;127m | |||
echo -e "\e[38;5;127mtexto\e[0m" | |||
* <font color="#AF5F87">Magenta - #AF5F87</font> - \e[38;5;132m | |||
echo -e "\e[38;5;132mtexto\e[0m" | |||
* <font color="#AF5FAF">Magenta - #AF5FAF</font> - \e[38;5;133m | |||
echo -e "\e[38;5;133mtexto\e[0m" | |||
* <font color="#AF87AF">Magenta - #AF87AF</font> - \e[38;5;139m | |||
echo -e "\e[38;5;139mtexto\e[0m" | |||
* <font color="#D7005F">Magenta - #D7005F</font> - \e[38;5;161m | |||
echo -e "\e[38;5;161mtexto\e[0m" | |||
* <font color="#D70087">Magenta - #D70087</font> - \e[38;5;162m | |||
echo -e "\e[38;5;162mtexto\e[0m" | |||
* <font color="#D700AF">Magenta - #D700AF</font> - \e[38;5;163m | |||
echo -e "\e[38;5;163mtexto\e[0m" | |||
* <font color="#D700D7">Magenta - #D700D7</font> - \e[38;5;164m | |||
echo -e "\e[38;5;164mtexto\e[0m" | |||
* <font color="#D75F87">Magenta - #D75F87</font> - \e[38;5;168m | |||
echo -e "\e[38;5;168mtexto\e[0m" | |||
* <font color="#D75FAF">Magenta - #D75FAF</font> - \e[38;5;169m | |||
echo -e "\e[38;5;169mtexto\e[0m" | |||
* <font color="#D75FD7">Magenta - #D75FD7</font> - \e[38;5;170m | |||
echo -e "\e[38;5;170mtexto\e[0m" | |||
* <font color="#D787AF">Magenta - #D787AF</font> - \e[38;5;175m | |||
echo -e "\e[38;5;175mtexto\e[0m" | |||
* <font color="#D787D7">Magenta - #D787D7</font> - \e[38;5;176m | |||
echo -e "\e[38;5;176mtexto\e[0m" | |||
* <font color="#D7AFD7">Magenta - #D7AFD7</font> - \e[38;5;182m | |||
echo -e "\e[38;5;182mtexto\e[0m" | |||
* <font color="#FF005F">Magenta - #FF005F</font> - \e[38;5;197m | |||
echo -e "\e[38;5;197mtexto\e[0m" | |||
* <font color="#FF0087">Magenta - #FF0087</font> - \e[38;5;198m | |||
echo -e "\e[38;5;198mtexto\e[0m" | |||
* <font color="#FF00AF">Magenta - #FF00AF</font> - \e[38;5;199m | |||
echo -e "\e[38;5;199mtexto\e[0m" | |||
* <font color="#FF00D7">Magenta - #FF00D7</font> - \e[38;5;200m | |||
echo -e "\e[38;5;200mtexto\e[0m" | |||
* <font color="#FF00FF">Magenta - #FF00FF</font> - \e[38;5;201m | |||
echo -e "\e[38;5;201mtexto\e[0m" | |||
* <font color="#FF5F87">Magenta - #FF5F87</font> - \e[38;5;204m | |||
echo -e "\e[38;5;204mtexto\e[0m" | |||
* <font color="#FF5FAF">Magenta - #FF5FAF</font> - \e[38;5;205m | |||
echo -e "\e[38;5;205mtexto\e[0m" | |||
* <font color="#FF5FD7">Magenta - #FF5FD7</font> - \e[38;5;206m | |||
echo -e "\e[38;5;206mtexto\e[0m" | |||
* <font color="#FF5FFF">Magenta - #FF5FFF</font> - \e[38;5;207m | |||
echo -e "\e[38;5;207mtexto\e[0m" | |||
* <font color="#FF87AF">Magenta - #FF87AF</font> - \e[38;5;211m | |||
echo -e "\e[38;5;211mtexto\e[0m" | |||
* <font color="#FF87D7">Magenta - #FF87D7</font> - \e[38;5;212m | |||
echo -e "\e[38;5;212mtexto\e[0m" | |||
* <font color="#FF87FF">Magenta - #FF87FF</font> - \e[38;5;213m | |||
echo -e "\e[38;5;213mtexto\e[0m" | |||
* <font color="#FFAFD7">Magenta - #FFAFD7</font> - \e[38;5;218m | |||
echo -e "\e[38;5;218mtexto\e[0m" | |||
* <font color="#FFAFFF">Magenta - #FFAFFF</font> - \e[38;5;219m | |||
echo -e "\e[38;5;219mtexto\e[0m" | |||
* <font color="#FFD7FF">Magenta - #FFD7FF</font> - \e[38;5;225m | |||
echo -e "\e[38;5;225mtexto\e[0m" | |||
* <font color="#C061CB">Magenta Claro - #C061CB</font> - \e[38;5;13m | |||
echo -e "\e[38;5;13mtexto\e[0m" | |||
* <font color="#A2734C">Marrom Claro - #A2734C</font> - \e[38;5;3m | |||
echo -e "\e[38;5;3mtexto\e[0m" | |||
* <font color="#000000">Preto - #000000</font> - \e[38;5;16m | |||
echo -e "\e[38;5;16mtexto\e[0m" | |||
* <font color="#171421">Preto Azulado - #171421</font> - \e[38;5;0m | |||
echo -e "\e[38;5;0m texto\e[0m" | |||
* <font color="#A347BA">Roxo Médio - #A347BA</font> - \e[38;5;5m | |||
echo -e "\e[38;5;5mtexto\e[0m" | |||
* <font color="#005F00">Verde - #005F00</font> - \e[38;5;22m | |||
echo -e "\e[38;5;22mtexto\e[0m" | |||
* <font color="#008700">Verde - #008700</font> - \e[38;5;28m | |||
echo -e "\e[38;5;28mtexto\e[0m" | |||
* <font color="#00AF00">Verde - #00AF00</font> - \e[38;5;34m | |||
echo -e "\e[38;5;34mtexto\e[0m" | |||
* <font color="#00D700">Verde - #00D700</font> - \e[38;5;40m | |||
echo -e "\e[38;5;40mtexto\e[0m" | |||
* <font color="#00FF00">Verde - #00FF00</font> - \e[38;5;46m | |||
echo -e "\e[38;5;46mtexto\e[0m" | |||
* <font color="#5F8700">Verde - #5F8700</font> - \e[38;5;64m | |||
echo -e "\e[38;5;64mtexto\e[0m" | |||
* <font color="#5F875F">Verde - #5F875F</font> - \e[38;5;65m | |||
echo -e "\e[38;5;65mtexto\e[0m" | |||
* <font color="#5FAF00">Verde - #5FAF00</font> - \e[38;5;70m | |||
echo -e "\e[38;5;70mtexto\e[0m" | |||
* <font color="#5FAF5F">Verde - #5FAF5F</font> - \e[38;5;71m | |||
echo -e "\e[38;5;71mtexto\e[0m" | |||
* <font color="#5FD700">Verde - #5FD700</font> - \e[38;5;76m | |||
echo -e "\e[38;5;76mtexto\e[0m" | |||
* <font color="#5FD75F">Verde - #5FD75F</font> - \e[38;5;77m | |||
echo -e "\e[38;5;77mtexto\e[0m" | |||
* <font color="#5FFF00">Verde - #5FFF00</font> - \e[38;5;82m | |||
echo -e "\e[38;5;82mtexto\e[0m" | |||
* <font color="#5FFF5F">Verde - #5FFF5F</font> - \e[38;5;83m | |||
echo -e "\e[38;5;83mtexto\e[0m" | |||
* <font color="#87AF00">Verde - #87AF00</font> - \e[38;5;106m | |||
echo -e "\e[38;5;106mtexto\e[0m" | |||
* <font color="#87AF5F">Verde - #87AF5F</font> - \e[38;5;107m | |||
echo -e "\e[38;5;107mtexto\e[0m" | |||
* <font color="#87AF87">Verde - #87AF87</font> - \e[38;5;108m | |||
echo -e "\e[38;5;108mtexto\e[0m" | |||
* <font color="#87D700">Verde - #87D700</font> - \e[38;5;112m | |||
echo -e "\e[38;5;112mtexto\e[0m" | |||
* <font color="#87D75F">Verde - #87D75F</font> - \e[38;5;113m | |||
echo -e "\e[38;5;113mtexto\e[0m" | |||
* <font color="#87D787">Verde - #87D787</font> - \e[38;5;114m | |||
echo -e "\e[38;5;114mtexto\e[0m" | |||
* <font color="#87FF00">Verde - #87FF00</font> - \e[38;5;118m | |||
echo -e "\e[38;5;118mtexto\e[0m" | |||
* <font color="#87FF5F">Verde - #87FF5F</font> - \e[38;5;119m | |||
echo -e "\e[38;5;119mtexto\e[0m" | |||
* <font color="#87FF87">Verde - #87FF87</font> - \e[38;5;120m | |||
echo -e "\e[38;5;120mtexto\e[0m" | |||
* <font color="#AFD700">Verde - #AFD700</font> - \e[38;5;148m | |||
echo -e "\e[38;5;148mtexto\e[0m" | |||
* <font color="#AFD75F">Verde - #AFD75F</font> - \e[38;5;149m | |||
echo -e "\e[38;5;149mtexto\e[0m" | |||
* <font color="#AFD787">Verde - #AFD787</font> - \e[38;5;150m | |||
echo -e "\e[38;5;150mtexto\e[0m" | |||
* <font color="#AFD7AF">Verde - #AFD7AF</font> - \e[38;5;151m | |||
echo -e "\e[38;5;151mtexto\e[0m" | |||
* <font color="#AFFF00">Verde - #AFFF00</font> - \e[38;5;154m | |||
echo -e "\e[38;5;154mtexto\e[0m" | |||
* <font color="#AFFF5F">Verde - #AFFF5F</font> - \e[38;5;155m | |||
echo -e "\e[38;5;155mtexto\e[0m" | |||
* <font color="#AFFF87">Verde - #AFFF87</font> - \e[38;5;156m | |||
echo -e "\e[38;5;156mtexto\e[0m" | |||
* <font color="#AFFFAF">Verde - #AFFFAF</font> - \e[38;5;157m | |||
echo -e "\e[38;5;157mtexto\e[0m" | |||
* <font color="#D7FF00">Verde - #D7FF00</font> - \e[38;5;190m | |||
echo -e "\e[38;5;190mtexto\e[0m" | |||
* <font color="#D7FF5F">Verde - #D7FF5F</font> - \e[38;5;191m | |||
echo -e "\e[38;5;191mtexto\e[0m" | |||
* <font color="#D7FF87">Verde - #D7FF87</font> - \e[38;5;192m | |||
echo -e "\e[38;5;192mtexto\e[0m" | |||
* <font color="#D7FFAF">Verde - #D7FFAF</font> - \e[38;5;193m | |||
echo -e "\e[38;5;193mtexto\e[0m" | |||
* <font color="#D7FFD7">Verde - #D7FFD7</font> - \e[38;5;194m | |||
echo -e "\e[38;5;194mtexto\e[0m" | |||
* <font color="#33DA7A">Verde Claro - #33DA7A</font> - \e[38;5;10m | |||
echo -e "\e[38;5;10mtexto\e[0m" | |||
* <font color="#26A269">Verde Médio - #26A269</font> - \e[38;5;2m | |||
echo -e "\e[38;5;2m texto\e[0m" | |||
* <font color="#F66151">Vermelho Claro - #F66151</font> - \e[38;5;9m | |||
echo -e "\e[38;5;9mtexto\e[0m" | |||
* <font color="#C01C28">Vermelho Escuro - #C01C28</font> - \e[38;5;1m | |||
echo -e "\e[38;5;1mtexto\e[0m" | |||
=== Negrito + texto colorido === | |||
Código ANSI: \e[1;38;5;Nm | |||
* <font color="#171421"><strong>#171421</strong></font> - \e[1;38;5;0m | |||
* <font color="#26A269"><strong>#26A269</strong></font> - \e[1;38;5;2m | |||
* <font color="#12488B"><strong>#12488B</strong></font> - \e[1;38;5;4m | |||
* <font color="#2AA1B3"><strong>#2AA1B3</strong></font> - \e[1;38;5;6m | |||
* <font color="#5E5C64"><strong>#5E5C64</strong></font> - \e[1;38;5;8m | |||
* <font color="#33DA7A"><strong>#33DA7A</strong></font> - \e[1;38;5;10m | |||
* <font color="#2A7BDE"><strong>#2A7BDE</strong></font> - \e[1;38;5;12m | |||
* <font color="#33C7DE"><strong>#33C7DE</strong></font> - \e[1;38;5;14m | |||
* <font color="#000000"><strong>#000000</strong></font> - \e[1;38;5;16m | |||
* <font color="#000087"><strong>#000087</strong></font> - \e[1;38;5;18m | |||
* <font color="#0000D7"><strong>#0000D7</strong></font> - \e[1;38;5;20m | |||
* <font color="#005F00"><strong>#005F00</strong></font> - \e[1;38;5;22m | |||
* <font color="#005F87"><strong>#005F87</strong></font> - \e[1;38;5;24m | |||
* <font color="#005FD7"><strong>#005FD7</strong></font> - \e[1;38;5;26m | |||
* <font color="#008700"><strong>#008700</strong></font> - \e[1;38;5;28m | |||
* <font color="#008787"><strong>#008787</strong></font> - \e[1;38;5;30m | |||
* <font color="#0087D7"><strong>#0087D7</strong></font> - \e[1;38;5;32m | |||
* <font color="#00AF00"><strong>#00AF00</strong></font> - \e[1;38;5;34m | |||
* <font color="#00AF87"><strong>#00AF87</strong></font> - \e[1;38;5;36m | |||
* <font color="#00AFD7"><strong>#00AFD7</strong></font> - \e[1;38;5;38m | |||
* <font color="#00D700"><strong>#00D700</strong></font> - \e[1;38;5;40m | |||
* <font color="#00D787"><strong>#00D787</strong></font> - \e[1;38;5;42m | |||
* <font color="#00D7D7"><strong>#00D7D7</strong></font> - \e[1;38;5;44m | |||
* <font color="#00FF00"><strong>#00FF00</strong></font> - \e[1;38;5;46m | |||
* <font color="#00FF87"><strong>#00FF87</strong></font> - \e[1;38;5;48m | |||
* <font color="#00FFD7"><strong>#00FFD7</strong></font> - \e[1;38;5;50m | |||
* <font color="#5F0000"><strong>#5F0000</strong></font> - \e[1;38;5;52m | |||
* <font color="#5F0087"><strong>#5F0087</strong></font> - \e[1;38;5;54m | |||
* <font color="#5F00D7"><strong>#5F00D7</strong></font> - \e[1;38;5;56m | |||
* <font color="#5F5F00"><strong>#5F5F00</strong></font> - \e[1;38;5;58m | |||
* <font color="#5F5F87"><strong>#5F5F87</strong></font> - \e[1;38;5;60m | |||
* <font color="#5F5FD7"><strong>#5F5FD7</strong></font> - \e[1;38;5;62m | |||
* <font color="#5F8700"><strong>#5F8700</strong></font> - \e[1;38;5;64m | |||
* <font color="#5F8787"><strong>#5F8787</strong></font> - \e[1;38;5;66m | |||
* <font color="#5F87D7"><strong>#5F87D7</strong></font> - \e[1;38;5;68m | |||
* <font color="#5FAF00"><strong>#5FAF00</strong></font> - \e[1;38;5;70m | |||
* <font color="#5FAF87"><strong>#5FAF87</strong></font> - \e[1;38;5;72m | |||
* <font color="#5FAFD7"><strong>#5FAFD7</strong></font> - \e[1;38;5;74m | |||
* <font color="#5FD700"><strong>#5FD700</strong></font> - \e[1;38;5;76m | |||
* <font color="#5FD787"><strong>#5FD787</strong></font> - \e[1;38;5;78m | |||
* <font color="#5FD7D7"><strong>#5FD7D7</strong></font> - \e[1;38;5;80m | |||
* <font color="#5FFF00"><strong>#5FFF00</strong></font> - \e[1;38;5;82m | |||
* <font color="#5FFF87"><strong>#5FFF87</strong></font> - \e[1;38;5;84m | |||
* <font color="#5FFFD7"><strong>#5FFFD7</strong></font> - \e[1;38;5;86m | |||
* <font color="#870000"><strong>#870000</strong></font> - \e[1;38;5;88m | |||
* <font color="#870087"><strong>#870087</strong></font> - \e[1;38;5;90m | |||
* <font color="#8700D7"><strong>#8700D7</strong></font> - \e[1;38;5;92m | |||
* <font color="#875F00"><strong>#875F00</strong></font> - \e[1;38;5;94m | |||
* <font color="#875F87"><strong>#875F87</strong></font> - \e[1;38;5;96m | |||
* <font color="#875FD7"><strong>#875FD7</strong></font> - \e[1;38;5;98m | |||
* <font color="#878700"><strong>#878700</strong></font> - \e[1;38;5;100m | |||
* <font color="#878787"><strong>#878787</strong></font> - \e[1;38;5;102m | |||
* <font color="#8787D7"><strong>#8787D7</strong></font> - \e[1;38;5;104m | |||
* <font color="#87AF00"><strong>#87AF00</strong></font> - \e[1;38;5;106m | |||
* <font color="#87AF87"><strong>#87AF87</strong></font> - \e[1;38;5;108m | |||
* <font color="#87AFD7"><strong>#87AFD7</strong></font> - \e[1;38;5;110m | |||
* <font color="#87D700"><strong>#87D700</strong></font> - \e[1;38;5;112m | |||
* <font color="#87D787"><strong>#87D787</strong></font> - \e[1;38;5;114m | |||
* <font color="#87D7D7"><strong>#87D7D7</strong></font> - \e[1;38;5;116m | |||
* <font color="#87FF00"><strong>#87FF00</strong></font> - \e[1;38;5;118m | |||
* <font color="#87FF87"><strong>#87FF87</strong></font> - \e[1;38;5;120m | |||
* <font color="#87FFD7"><strong>#87FFD7</strong></font> - \e[1;38;5;122m | |||
* <font color="#AF0000"><strong>#AF0000</strong></font> - \e[1;38;5;124m | |||
* <font color="#AF0087"><strong>#AF0087</strong></font> - \e[1;38;5;126m | |||
* <font color="#AF00D7"><strong>#AF00D7</strong></font> - \e[1;38;5;128m | |||
* <font color="#AF5F00"><strong>#AF5F00</strong></font> - \e[1;38;5;130m | |||
* <font color="#AF5F87"><strong>#AF5F87</strong></font> - \e[1;38;5;132m | |||
* <font color="#AF5FD7"><strong>#AF5FD7</strong></font> - \e[1;38;5;134m | |||
* <font color="#AF8700"><strong>#AF8700</strong></font> - \e[1;38;5;136m | |||
* <font color="#AF8787"><strong>#AF8787</strong></font> - \e[1;38;5;138m | |||
* <font color="#AF87D7"><strong>#AF87D7</strong></font> - \e[1;38;5;140m | |||
* <font color="#AFAF00"><strong>#AFAF00</strong></font> - \e[1;38;5;142m | |||
* <font color="#AFAF87"><strong>#AFAF87</strong></font> - \e[1;38;5;144m | |||
* <font color="#AFAFD7"><strong>#AFAFD7</strong></font> - \e[1;38;5;146m | |||
* <font color="#AFD700"><strong>#AFD700</strong></font> - \e[1;38;5;148m | |||
* <font color="#AFD787"><strong>#AFD787</strong></font> - \e[1;38;5;150m | |||
* <font color="#AFD7D7"><strong>#AFD7D7</strong></font> - \e[1;38;5;152m | |||
* <font color="#AFFF00"><strong>#AFFF00</strong></font> - \e[1;38;5;154m | |||
* <font color="#AFFF87"><strong>#AFFF87</strong></font> - \e[1;38;5;156m | |||
* <font color="#AFFFD7"><strong>#AFFFD7</strong></font> - \e[1;38;5;158m | |||
* <font color="#D70000"><strong>#D70000</strong></font> - \e[1;38;5;160m | |||
* <font color="#D70087"><strong>#D70087</strong></font> - \e[1;38;5;162m | |||
* <font color="#D700D7"><strong>#D700D7</strong></font> - \e[1;38;5;164m | |||
* <font color="#D75F00"><strong>#D75F00</strong></font> - \e[1;38;5;166m | |||
* <font color="#D75F87"><strong>#D75F87</strong></font> - \e[1;38;5;168m | |||
* <font color="#D75FD7"><strong>#D75FD7</strong></font> - \e[1;38;5;170m | |||
* <font color="#D78700"><strong>#D78700</strong></font> - \e[1;38;5;172m | |||
* <font color="#D78787"><strong>#D78787</strong></font> - \e[1;38;5;174m | |||
* <font color="#D787D7"><strong>#D787D7</strong></font> - \e[1;38;5;176m | |||
* <font color="#D7AF00"><strong>#D7AF00</strong></font> - \e[1;38;5;178m | |||
* <font color="#D7AF87"><strong>#D7AF87</strong></font> - \e[1;38;5;180m | |||
* <font color="#D7AFD7"><strong>#D7AFD7</strong></font> - \e[1;38;5;182m | |||
* <font color="#D7D700"><strong>#D7D700</strong></font> - \e[1;38;5;184m | |||
* <font color="#D7D787"><strong>#D7D787</strong></font> - \e[1;38;5;186m | |||
* <font color="#D7D7D7"><strong>#D7D7D7</strong></font> - \e[1;38;5;188m | |||
* <font color="#D7FF00"><strong>#D7FF00</strong></font> - \e[1;38;5;190m | |||
* <font color="#D7FF87"><strong>#D7FF87</strong></font> - \e[1;38;5;192m | |||
* <font color="#D7FFD7"><strong>#D7FFD7</strong></font> - \e[1;38;5;194m | |||
* <font color="#FF0000"><strong>#FF0000</strong></font> - \e[1;38;5;196m | |||
* <font color="#FF0087"><strong>#FF0087</strong></font> - \e[1;38;5;198m | |||
* <font color="#FF00D7"><strong>#FF00D7</strong></font> - \e[1;38;5;200m | |||
* <font color="#FF5F00"><strong>#FF5F00</strong></font> - \e[1;38;5;202m | |||
* <font color="#FF5F87"><strong>#FF5F87</strong></font> - \e[1;38;5;204m | |||
* <font color="#FF5FD7"><strong>#FF5FD7</strong></font> - \e[1;38;5;206m | |||
* <font color="#FF8700"><strong>#FF8700</strong></font> - \e[1;38;5;208m | |||
* <font color="#FF8787"><strong>#FF8787</strong></font> - \e[1;38;5;210m | |||
* <font color="#FF87D7"><strong>#FF87D7</strong></font> - \e[1;38;5;212m | |||
* <font color="#FFAF00"><strong>#FFAF00</strong></font> - \e[1;38;5;214m | |||
* <font color="#FFAF87"><strong>#FFAF87</strong></font> - \e[1;38;5;216m | |||
* <font color="#FFAFD7"><strong>#FFAFD7</strong></font> - \e[1;38;5;218m | |||
* <font color="#FFD700"><strong>#FFD700</strong></font> - \e[1;38;5;220m | |||
* <font color="#FFD787"><strong>#FFD787</strong></font> - \e[1;38;5;222m | |||
* <font color="#FFD7D7"><strong>#FFD7D7</strong></font> - \e[1;38;5;224m | |||
* <font color="#FFFF00"><strong>#FFFF00</strong></font> - \e[1;38;5;226m | |||
* <font color="#FFFF87"><strong>#FFFF87</strong></font> - \e[1;38;5;228m | |||
* <font color="#FFFFD7"><strong>#FFFFD7</strong></font> - \e[1;38;5;230m | |||
* <font color="#080808"><strong>#080808</strong></font> - \e[1;38;5;232m | |||
* <font color="#1C1C1C"><strong>#1C1C1C</strong></font> - \e[1;38;5;234m | |||
* <font color="#303030"><strong>#303030</strong></font> - \e[1;38;5;236m | |||
* <font color="#444444"><strong>#444444</strong></font> - \e[1;38;5;238m | |||
* <font color="#585858"><strong>#585858</strong></font> - \e[1;38;5;240m | |||
* <font color="#6C6C6C"><strong>#6C6C6C</strong></font> - \e[1;38;5;242m | |||
* <font color="#808080"><strong>#808080</strong></font> - \e[1;38;5;244m | |||
* <font color="#949494"><strong>#949494</strong></font> - \e[1;38;5;246m | |||
* <font color="#A8A8A8"><strong>#A8A8A8</strong></font> - \e[1;38;5;248m | |||
* <font color="#BCBCBC"><strong>#BCBCBC</strong></font> - \e[1;38;5;250m | |||
* <font color="#D0D0D0"><strong>#D0D0D0</strong></font> - \e[1;38;5;252m | |||
* <font color="#E4E4E4"><strong>#E4E4E4</strong></font> - \e[1;38;5;254m | |||
* <font color="#C01C28"><strong>#C01C28</strong></font> - \e[1;38;5;1m | |||
* <font color="#A2734C"><strong>#A2734C</strong></font> - \e[1;38;5;3m | |||
* <font color="#A347BA"><strong>#A347BA</strong></font> - \e[1;38;5;5m | |||
* <font color="#D0CFCC"><strong>#D0CFCC</strong></font> - \e[1;38;5;7m | |||
* <font color="#F66151"><strong>#F66151</strong></font> - \e[1;38;5;9m | |||
* <font color="#E9AD0C"><strong>#E9AD0C</strong></font> - \e[1;38;5;11m | |||
* <font color="#C061CB"><strong>#C061CB</strong></font> - \e[1;38;5;13m | |||
* <font color="#FFFFFF"><strong>#FFFFFF</strong></font> - \e[1;38;5;15m | |||
* <font color="#00005F"><strong>#00005F</strong></font> - \e[1;38;5;17m | |||
* <font color="#0000AF"><strong>#0000AF</strong></font> - \e[1;38;5;19m | |||
* <font color="#0000FF"><strong>#0000FF</strong></font> - \e[1;38;5;21m | |||
* <font color="#005F5F"><strong>#005F5F</strong></font> - \e[1;38;5;23m | |||
* <font color="#005FAF"><strong>#005FAF</strong></font> - \e[1;38;5;25m | |||
* <font color="#005FFF"><strong>#005FFF</strong></font> - \e[1;38;5;27m | |||
* <font color="#00875F"><strong>#00875F</strong></font> - \e[1;38;5;29m | |||
* <font color="#0087AF"><strong>#0087AF</strong></font> - \e[1;38;5;31m | |||
* <font color="#0087FF"><strong>#0087FF</strong></font> - \e[1;38;5;33m | |||
* <font color="#00AF5F"><strong>#00AF5F</strong></font> - \e[1;38;5;35m | |||
* <font color="#00AFAF"><strong>#00AFAF</strong></font> - \e[1;38;5;37m | |||
* <font color="#00AFFF"><strong>#00AFFF</strong></font> - \e[1;38;5;39m | |||
* <font color="#00D75F"><strong>#00D75F</strong></font> - \e[1;38;5;41m | |||
* <font color="#00D7AF"><strong>#00D7AF</strong></font> - \e[1;38;5;43m | |||
* <font color="#00D7FF"><strong>#00D7FF</strong></font> - \e[1;38;5;45m | |||
* <font color="#00FF5F"><strong>#00FF5F</strong></font> - \e[1;38;5;47m | |||
* <font color="#00FFAF"><strong>#00FFAF</strong></font> - \e[1;38;5;49m | |||
* <font color="#00FFFF"><strong>#00FFFF</strong></font> - \e[1;38;5;51m | |||
* <font color="#5F005F"><strong>#5F005F</strong></font> - \e[1;38;5;53m | |||
* <font color="#5F00AF"><strong>#5F00AF</strong></font> - \e[1;38;5;55m | |||
* <font color="#5F00FF"><strong>#5F00FF</strong></font> - \e[1;38;5;57m | |||
* <font color="#5F5F5F"><strong>#5F5F5F</strong></font> - \e[1;38;5;59m | |||
* <font color="#5F5FAF"><strong>#5F5FAF</strong></font> - \e[1;38;5;61m | |||
* <font color="#5F5FFF"><strong>#5F5FFF</strong></font> - \e[1;38;5;63m | |||
* <font color="#5F875F"><strong>#5F875F</strong></font> - \e[1;38;5;65m | |||
* <font color="#5F87AF"><strong>#5F87AF</strong></font> - \e[1;38;5;67m | |||
* <font color="#5F87FF"><strong>#5F87FF</strong></font> - \e[1;38;5;69m | |||
* <font color="#5FAF5F"><strong>#5FAF5F</strong></font> - \e[1;38;5;71m | |||
* <font color="#5FAFAF"><strong>#5FAFAF</strong></font> - \e[1;38;5;73m | |||
* <font color="#5FAFFF"><strong>#5FAFFF</strong></font> - \e[1;38;5;75m | |||
* <font color="#5FD75F"><strong>#5FD75F</strong></font> - \e[1;38;5;77m | |||
* <font color="#5FD7AF"><strong>#5FD7AF</strong></font> - \e[1;38;5;79m | |||
* <font color="#5FD7FF"><strong>#5FD7FF</strong></font> - \e[1;38;5;81m | |||
* <font color="#5FFF5F"><strong>#5FFF5F</strong></font> - \e[1;38;5;83m | |||
* <font color="#5FFFAF"><strong>#5FFFAF</strong></font> - \e[1;38;5;85m | |||
* <font color="#5FFFFF"><strong>#5FFFFF</strong></font> - \e[1;38;5;87m | |||
* <font color="#87005F"><strong>#87005F</strong></font> - \e[1;38;5;89m | |||
* <font color="#8700AF"><strong>#8700AF</strong></font> - \e[1;38;5;91m | |||
* <font color="#8700FF"><strong>#8700FF</strong></font> - \e[1;38;5;93m | |||
* <font color="#875F5F"><strong>#875F5F</strong></font> - \e[1;38;5;95m | |||
* <font color="#875FAF"><strong>#875FAF</strong></font> - \e[1;38;5;97m | |||
* <font color="#875FFF"><strong>#875FFF</strong></font> - \e[1;38;5;99m | |||
* <font color="#87875F"><strong>#87875F</strong></font> - \e[1;38;5;101m | |||
* <font color="#8787AF"><strong>#8787AF</strong></font> - \e[1;38;5;103m | |||
* <font color="#8787FF"><strong>#8787FF</strong></font> - \e[1;38;5;105m | |||
* <font color="#87AF5F"><strong>#87AF5F</strong></font> - \e[1;38;5;107m | |||
* <font color="#87AFAF"><strong>#87AFAF</strong></font> - \e[1;38;5;109m | |||
* <font color="#87AFFF"><strong>#87AFFF</strong></font> - \e[1;38;5;111m | |||
* <font color="#87D75F"><strong>#87D75F</strong></font> - \e[1;38;5;113m | |||
* <font color="#87D7AF"><strong>#87D7AF</strong></font> - \e[1;38;5;115m | |||
* <font color="#87D7FF"><strong>#87D7FF</strong></font> - \e[1;38;5;117m | |||
* <font color="#87FF5F"><strong>#87FF5F</strong></font> - \e[1;38;5;119m | |||
* <font color="#87FFAF"><strong>#87FFAF</strong></font> - \e[1;38;5;121m | |||
* <font color="#87FFFF"><strong>#87FFFF</strong></font> - \e[1;38;5;123m | |||
* <font color="#AF005F"><strong>#AF005F</strong></font> - \e[1;38;5;125m | |||
* <font color="#AF00AF"><strong>#AF00AF</strong></font> - \e[1;38;5;127m | |||
* <font color="#AF00FF"><strong>#AF00FF</strong></font> - \e[1;38;5;129m | |||
* <font color="#AF5F5F"><strong>#AF5F5F</strong></font> - \e[1;38;5;131m | |||
* <font color="#AF5FAF"><strong>#AF5FAF</strong></font> - \e[1;38;5;133m | |||
* <font color="#AF5FFF"><strong>#AF5FFF</strong></font> - \e[1;38;5;135m | |||
* <font color="#AF875F"><strong>#AF875F</strong></font> - \e[1;38;5;137m | |||
* <font color="#AF87AF"><strong>#AF87AF</strong></font> - \e[1;38;5;139m | |||
* <font color="#AF87FF"><strong>#AF87FF</strong></font> - \e[1;38;5;141m | |||
* <font color="#AFAF5F"><strong>#AFAF5F</strong></font> - \e[1;38;5;143m | |||
* <font color="#AFAFAF"><strong>#AFAFAF</strong></font> - \e[1;38;5;145m | |||
* <font color="#AFAFFF"><strong>#AFAFFF</strong></font> - \e[1;38;5;147m | |||
* <font color="#AFD75F"><strong>#AFD75F</strong></font> - \e[1;38;5;149m | |||
* <font color="#AFD7AF"><strong>#AFD7AF</strong></font> - \e[1;38;5;151m | |||
* <font color="#AFD7FF"><strong>#AFD7FF</strong></font> - \e[1;38;5;153m | |||
* <font color="#AFFF5F"><strong>#AFFF5F</strong></font> - \e[1;38;5;155m | |||
* <font color="#AFFFAF"><strong>#AFFFAF</strong></font> - \e[1;38;5;157m | |||
* <font color="#AFFFFF"><strong>#AFFFFF</strong></font> - \e[1;38;5;159m | |||
* <font color="#D7005F"><strong>#D7005F</strong></font> - \e[1;38;5;161m | |||
* <font color="#D700AF"><strong>#D700AF</strong></font> - \e[1;38;5;163m | |||
* <font color="#D700FF"><strong>#D700FF</strong></font> - \e[1;38;5;165m | |||
* <font color="#D75F5F"><strong>#D75F5F</strong></font> - \e[1;38;5;167m | |||
* <font color="#D75FAF"><strong>#D75FAF</strong></font> - \e[1;38;5;169m | |||
* <font color="#D75FFF"><strong>#D75FFF</strong></font> - \e[1;38;5;171m | |||
* <font color="#D7875F"><strong>#D7875F</strong></font> - \e[1;38;5;173m | |||
* <font color="#D787AF"><strong>#D787AF</strong></font> - \e[1;38;5;175m | |||
* <font color="#D787FF"><strong>#D787FF</strong></font> - \e[1;38;5;177m | |||
* <font color="#D7AF5F"><strong>#D7AF5F</strong></font> - \e[1;38;5;179m | |||
* <font color="#D7AFAF"><strong>#D7AFAF</strong></font> - \e[1;38;5;181m | |||
* <font color="#D7AFFF"><strong>#D7AFFF</strong></font> - \e[1;38;5;183m | |||
* <font color="#D7D75F"><strong>#D7D75F</strong></font> - \e[1;38;5;185m | |||
* <font color="#D7D7AF"><strong>#D7D7AF</strong></font> - \e[1;38;5;187m | |||
* <font color="#D7D7FF"><strong>#D7D7FF</strong></font> - \e[1;38;5;189m | |||
* <font color="#D7FF5F"><strong>#D7FF5F</strong></font> - \e[1;38;5;191m | |||
* <font color="#D7FFAF"><strong>#D7FFAF</strong></font> - \e[1;38;5;193m | |||
* <font color="#D7FFFF"><strong>#D7FFFF</strong></font> - \e[1;38;5;195m | |||
* <font color="#FF005F"><strong>#FF005F</strong></font> - \e[1;38;5;197m | |||
* <font color="#FF00AF"><strong>#FF00AF</strong></font> - \e[1;38;5;199m | |||
* <font color="#FF00FF"><strong>#FF00FF</strong></font> - \e[1;38;5;201m | |||
* <font color="#FF5F5F"><strong>#FF5F5F</strong></font> - \e[1;38;5;203m | |||
* <font color="#FF5FAF"><strong>#FF5FAF</strong></font> - \e[1;38;5;205m | |||
* <font color="#FF5FFF"><strong>#FF5FFF</strong></font> - \e[1;38;5;207m | |||
* <font color="#FF875F"><strong>#FF875F</strong></font> - \e[1;38;5;209m | |||
* <font color="#FF87AF"><strong>#FF87AF</strong></font> - \e[1;38;5;211m | |||
* <font color="#FF87FF"><strong>#FF87FF</strong></font> - \e[1;38;5;213m | |||
* <font color="#FFAF5F"><strong>#FFAF5F</strong></font> - \e[1;38;5;215m | |||
* <font color="#FFAFAF"><strong>#FFAFAF</strong></font> - \e[1;38;5;217m | |||
* <font color="#FFAFFF"><strong>#FFAFFF</strong></font> - \e[1;38;5;219m | |||
* <font color="#FFD75F"><strong>#FFD75F</strong></font> - \e[1;38;5;221m | |||
* <font color="#FFD7AF"><strong>#FFD7AF</strong></font> - \e[1;38;5;223m | |||
* <font color="#FFD7FF"><strong>#FFD7FF</strong></font> - \e[1;38;5;225m | |||
* <font color="#FFFF5F"><strong>#FFFF5F</strong></font> - \e[1;38;5;227m | |||
* <font color="#FFFFAF"><strong>#FFFFAF</strong></font> - \e[1;38;5;229m | |||
* <font color="#FFFFFF"><strong>#FFFFFF</strong></font> - \e[1;38;5;231m | |||
* <font color="#121212"><strong>#121212</strong></font> - \e[1;38;5;233m | |||
* <font color="#262626"><strong>#262626</strong></font> - \e[1;38;5;235m | |||
* <font color="#3A3A3A"><strong>#3A3A3A</strong></font> - \e[1;38;5;237m | |||
* <font color="#4E4E4E"><strong>#4E4E4E</strong></font> - \e[1;38;5;239m | |||
* <font color="#626262"><strong>#626262</strong></font> - \e[1;38;5;241m | |||
* <font color="#767676"><strong>#767676</strong></font> - \e[1;38;5;243m | |||
* <font color="#8A8A8A"><strong>#8A8A8A</strong></font> - \e[1;38;5;245m | |||
* <font color="#9E9E9E"><strong>#9E9E9E</strong></font> - \e[1;38;5;247m | |||
* <font color="#B2B2B2"><strong>#B2B2B2</strong></font> - \e[1;38;5;249m | |||
* <font color="#C6C6C6"><strong>#C6C6C6</strong></font> - \e[1;38;5;251m | |||
* <font color="#DADADA"><strong>#DADADA</strong></font> - \e[1;38;5;253m | |||
* <font color="#EEEEEE"><strong>#EEEEEE</strong></font> - \e[1;38;5;255m | |||
=== Cores Básicas (16 cores) === | |||
* <font color="#171421">Texto preto - #171421</font> - \e[30m | |||
* <span style="background-color:#171421"> Fundo preto - #171421 </span> - \e[40m | |||
* <font color="#C01C28">Texto vermelho - #C01C28</font> - \e[31m | |||
* <span style="background-color:#C01C28"> Fundo vermelho - #C01C28 </span> - \e[41m | |||
* <font color="#26A269">Texto verde - #26A269</font> - \e[32m | |||
* <span style="background-color:#26A269"> Fundo verde - #26A269 </span> - \e[42m | |||
* <font color="#A2734C">Texto amarelo - #A2734C</font> - \e[33m | |||
* <span style="background-color:#A2734C"> Fundo amarelo - #A2734C </span> - \e[43m | |||
* <font color="#12488B">Texto azul - #12488B</font> - \e[34m | |||
* <span style="background-color:#12488B"> Fundo azul - #12488B </span> - \e[44m | |||
* <font color="#A347BA">Texto magenta - #A347BA</font> - \e[35m | |||
* <span style="background-color:#A347BA"> Fundo magenta - #A347BA </span> - \e[45m | |||
* <font color="#2AA1B3">Texto ciano - #2AA1B3</font> - \e[36m | |||
* <span style="background-color:#2AA1B3"> Fundo ciano - #2AA1B3 </span> - \e[46m | |||
* <font color="#D0CFCC">Texto branco - #D0CFCC</font> - \e[37m | |||
* <span style="background-color:#D0CFCC"> Fundo branco - #D0CFCC </span> - \e[47m | |||
=== Estilos de texto === | |||
* Normal - \e[0m | |||
* <b>Negrito</b> - \e[1m | |||
* <font color="#8D8F8A">Esmaecido</font> - \e[2m | |||
* <i>Itálico</i> - \e[3m | |||
* <u style="text-decoration-style:solid">Sublinhado</u> - \e[4m | |||
* <span style="background-color:#D3D7CF"><font color="#2E3436">Invertido</font></span> - \e[7m | |||
* <strike>Tachado</strike> - \e[9m | |||
=== Exemplos combinados === | |||
* <span style="background-color:#171421"><font color="#FF8700"><b> NEGRITO LARANJA EM FUNDO PRETO </b></font></span> | |||
\e[1;38;5;208;48;5;0m | |||
* <span style="background-color:#EEEEEE"><font color="#0000AF"><b> NEGRITO AZUL ESCURO EM FUNDO BRANCO </b></font></span> | |||
\e[1;38;5;19;48;5;255m | |||
* <font color="#A2734C"><b> NEGRITO AMARELO </b></font> | |||
\e[1;33m | |||
* <font color="#00FF00"><b> NEGRITO VERDE </b></font> | |||
\e[1;38;5;46m | |||
=== Resetar Formatação === | |||
\e[0m | |||
Edição atual tal como às 01h43min de 20 de junho de 2026
Cores de Letras[editar]
- Código 30 - Letras PRETAS
echo -e "\033[30mCor Código 30\033[0m"
- Código 31 - Letras VERMELHAS
echo -e "\033[31mCor Código 31\033[0m"
- Código 32 - Letras VERDES
echo -e "\033[32mCor Código 32\033[0m"
- Código 33 - Letras AMARELAS
echo -e "\033[33mCor Código 33\033[0m"
- Código 34 - Letras AZUIS
echo -e "\033[34mCor Código 34\033[0m"
- Código 35 - Letras MAGENTA
echo -e "\033[35mCor Código 35\033[0m"
- Código 36 - Letras CIANO
echo -e "\033[36mCor Código 36\033[0m"
- Código 37 - Letras BRANCAS
echo -e "\033[37mCor Código 37\033[0m"
Negrito[editar]
Sintaxe
\033[1;3Xm
Exemplo:
echo -e "\033[1;37mNEGRITO\033[0m"
Cores de Fundo[editar]
Códigos de cores de fundo
- 41 - Vermelho
- 42 - Verde
- 43 - Amarelo
- 44 - Azul
Sintaxe:
echo -e "\033[cor_do_texto;cor_do_fundomTEXTO\033[0m"
Exemplos:
Fundo VERMELHO:
echo -e "\033[30;41mTexto preto com fundo vermelho\033[0m" echo -e "\033[32;41mTexto verde com fundo vermelho\033[0m" echo -e "\033[33;41mTexto amarelo com fundo vermelho\033[0m" echo -e "\033[34;41mTexto azul com fundo vermelho\033[0m" echo -e "\033[35;41mTexto magenta com fundo vermelho\033[0m" echo -e "\033[36;41mTexto ciano com fundo vermelho\033[0m" echo -e "\033[37;41mTexto branco com fundo vermelho\033[0m"
Fundo VERDE:
echo -e "\033[30;42mTexto preto com fundo verde\033[0m" echo -e "\033[31;42mTexto vermelho com fundo verde\033[0m" echo -e "\033[33;42mTexto amarelo com fundo verde\033[0m" echo -e "\033[34;42mTexto azul com fundo verde\033[0m" echo -e "\033[35;42mTexto magenta com fundo verde\033[0m" echo -e "\033[36;42mTexto ciano com fundo verde\033[0m" echo -e "\033[37;42mTexto branco com fundo verde\033[0m"
Fundo AMARELO:
echo -e "\033[30;43mTexto preto com fundo amarelo\033[0m" echo -e "\033[31;43mTexto vermelho com fundo amarelo\033[0m" echo -e "\033[32;43mTexto verde com fundo amarelo\033[0m" echo -e "\033[34;43mTexto azul com fundo amarelo\033[0m" echo -e "\033[35;43mTexto magenta com fundo amarelo\033[0m" echo -e "\033[36;43mTexto ciano com fundo amarelo\033[0m" echo -e "\033[37;43mTexto branco com fundo amarelo\033[0m"
Fundo AZUL:
echo -e "\033[30;44mTexto preto com fundo azul\033[0m" echo -e "\033[31;44mTexto vermelho com fundo azul\033[0m" echo -e "\033[32;44mTexto verde com fundo azul\033[0m" echo -e "\033[33;44mTexto amarelo com fundo azul\033[0m" echo -e "\033[35;44mTexto magenta com fundo azul\033[0m" echo -e "\033[36;44mTexto ciano com fundo azul\033[0m" echo -e "\033[37;44mTexto branco com fundo azul\033[0m"
Letra e fundo colorido com negrito[editar]
Sintaxe:
echo -e "\033[1;cor_do_texto;cor_do_fundomTEXTO\033[0m"
Exemplos:
Fundo VERMELHO:
echo -e "\033[1;30;41mTexto preto em negrito com fundo vermelho\033[0m" echo -e "\033[1;32;41mTexto verde em negrito com fundo vermelho\033[0m" echo -e "\033[1;33;41mTexto amarelo em negrito com fundo vermelho\033[0m" echo -e "\033[1;34;41mTexto azul em negrito com fundo vermelho\033[0m" echo -e "\033[1;35;41mTexto magenta em negrito com fundo vermelho\033[0m" echo -e "\033[1;36;41mTexto ciano em negrito com fundo vermelho\033[0m" echo -e "\033[1;37;41mTexto branco em negrito com fundo vermelho\033[0m"
Fundo VERDE:
echo -e "\033[1;30;42mTexto preto em negrito com fundo verde\033[0m" echo -e "\033[1;31;42mTexto vermelho em negrito com fundo verde\033[0m" echo -e "\033[1;33;42mTexto amarelo em negrito com fundo verde\033[0m" echo -e "\033[1;34;42mTexto azul em negrito com fundo verde\033[0m" echo -e "\033[1;35;42mTexto magenta em negrito com fundo verde\033[0m" echo -e "\033[1;36;42mTexto ciano em negrito com fundo verde\033[0m" echo -e "\033[1;37;42mTexto branco em negrito com fundo verde\033[0m"
Fundo AMARELO:
echo -e "\033[1;30;43mTexto preto em negrito com fundo amarelo\033[0m" echo -e "\033[1;31;43mTexto vermelho em negrito com fundo amarelo\033[0m" echo -e "\033[1;32;43mTexto verde em negrito com fundo amarelo\033[0m" echo -e "\033[1;34;43mTexto azul em negrito com fundo amarelo\033[0m" echo -e "\033[1;35;43mTexto magenta em negrito com fundo amarelo\033[0m" echo -e "\033[1;36;43mTexto ciano em negrito com fundo amarelo\033[0m" echo -e "\033[1;37;43mTexto branco em negrito com fundo amarelo\033[0m"
Fundo AZUL:
echo -e "\033[1;30;44mTexto preto em negrito com fundo azul\033[0m" echo -e "\033[1;31;44mTexto vermelho em negrito com fundo azul\033[0m" echo -e "\033[1;32;44mTexto verde em negrito com fundo azul\033[0m" echo -e "\033[1;33;44mTexto amarelo em negrito com fundo azul\033[0m" echo -e "\033[1;35;44mTexto magenta em negrito com fundo azul\033[0m" echo -e "\033[1;36;44mTexto ciano em negrito com fundo azul\033[0m" echo -e "\033[1;37;44mTexto branco em negrito com fundo azul\033[0m"
Para inserção em script's[editar]
Nomenclatura
- COR: Indica que é uma variável para cores.
- L: Cor da letra.
- F: Cor de fundo.
- N: Negrito.
- COR_FINAL: Fecha a instrução para colorir uma linha.
### VARIÁVEIS DE CORES COR_L_PRETO="\033[30m" COR_L_VERMELHO="\033[31m" COR_L_VERDE="\033[32m" COR_L_AMARELO="\033[33m" COR_L_AZUL="\033[34m" COR_L_MAGENTA="\033[35m" COR_L_CIANO="\033[36m" COR_L_BRANCO="\033[37m" COR_FINAL="\033[0m" # NEGRITO COR_N_L_BRANCO="\033[1;37m" COR_N_L_PRETO="\033[30m" COR_N_L_VERMELHO="\033[31m" COR_N_L_VERDE="\033[32m" COR_N_L_AMARELO="\033[33m" COR_N_L_AZUL="\033[34m" COR_N_L_MAGENTA="\033[35m" COR_N_L_CIANO="\033[36m" # FUNDO VERMELHO COR_F_VERMELHO_L_PRETO="\033[30;41m" COR_F_VERMELHO_L_VERDE="\033[32;41m" COR_F_VERMELHO_L_AMARELO="\033[33;41m" COR_F_VERMELHO_L_AZUL="\033[34;41m" COR_F_VERMELHO_L_MAGENTA="\033[35;41m" COR_F_VERMELHO_L_CIANO_="\033[36;41m" COR_F_VERMELHO_L_BRANCO="\033[37;41m" # FUNDO VERDE COR_F_VERDE_L_PRETO="\033[30;42m" COR_F_VERDE_L_VERMELHO="\033[31;42m" COR_F_VERDE_L_AMARELO="\033[33;42m" COR_F_VERDE_L_AZUL="\033[34;42m" COR_F_VERDE_L_MAGENTA="\033[35;42m" COR_F_VERDE_L_CIANO="\033[36;42m" COR_F_VERDE_L_BRANCO="\033[37;42m" # FUNDO AMARELO COR_F_AMARELO_L_PRETO="\033[30;43m" COR_F_AMARELO_L_VERMELHO="\033[31;43m" COR_F_AMARELO_L_VERDE="\033[32;43m" COR_F_AMARELO_L_AZUL="\033[34;43m" COR_F_AMARELO_L_MAGENTA="\033[35;43m" COR_F_AMARELO_L_CIANO="\033[36;43m" COR_F_AMARELO_L_BRANCO="\033[37;43m" # FUNDO AZUL COR_F_AZUL_L_PRETO="\033[30;44m" COR_F_AZUL_L_VERMELHO="\033[31;44m" COR_F_AZUL_L_VERDE="\033[32;44m" COR_F_AZUL_L_AMARELO="\033[33;44m" COR_F_AZUL_L_MAGENTA="\033[35;44m" COR_F_AZUL_L_CIANO="\033[36;44m" COR_F_AZUL_L_BRANCO="\033[37;44m" # FUNDO VERMELHO COM NEGRITO COR_F_VERMELHO_L_N_PRETO="\033[1;30;41m" COR_F_VERMELHO_L_N_VERDE="\033[1;32;41m" COR_F_VERMELHO_L_N_AMARELO="\033[1;33;41m" COR_F_VERMELHO_L_N_AZUL="\033[1;34;41m" COR_F_VERMELHO_L_N_MAGENTA="\033[1;35;41m" COR_F_VERMELHO_L_N_CIANO="\033[1;36;41m" COR_F_VERMELHO_L_N_BRANCO="\033[1;37;41m" # FUNDO VERDE COM NEGRITO COR_F_VERDE_L_N_PRETO="\033[1;30;42m" COR_F_VERDE_L_N_VERMELHO="\033[1;31;42m" COR_F_VERDE_L_N_AMARELO="\033[1;33;42m" COR_F_VERDE_L_N_AZUL="\033[1;34;42m" COR_F_VERDE_L_N_MAGENTA="\033[1;35;42m" COR_F_VERDE_L_N_CIANO="\033[1;36;42m" COR_F_VERDE_L_N_BRANCO="\033[1;37;42m" # FUNDO AMARELO COM NEGRITO COR_F_AMARELO_L_N_PRETO="\033[1;30;43m" COR_F_AMARELO_L_N_VERMELHO="\033[1;31;43m" COR_F_AMARELO_L_N_VERDE="\033[1;32;43m" COR_F_AMARELO_L_N_AZUL="\033[1;34;43m" COR_F_AMARELO_L_N_MAGENTA="\033[1;35;43m" COR_F_AMARELO_L_N_CIANO="\033[1;36;43m" COR_F_AMARELO_L_N_BRANCO="\033[1;37;43m" # FUNDO AZUL COM NEGRITO COR_F_AZUL_L_N_PRETO="\033[1;30;44m" COR_F_AZUL_L_N_VERMELHO="\033[1;31;44m" COR_F_AZUL_L_N_VERDE="\033[1;32;44m" COR_F_AZUL_L_N_AMARELO="\033[1;33;44m" COR_F_AZUL_L_N_MAGENTA="\033[1;35;44m" COR_F_AZUL_L_N_CIANO="\033[1;36;44m" COR_F_AZUL_L_N_BRANCO="\033[1;37;44m" #############################
TABELA DE CORES[editar]
Texto (foreground)[editar]
Código ANSI: \e[38;5;Nm
- Amarelo - #5F0000 - \e[38;5;52m
echo -e "\e[38;5;52mTexto"\e[0m"
- Amarelo - #5F5F00 - \e[38;5;58m
echo -e "\e[38;5;58mtexto\e[0m"
- Amarelo - #870000 - \e[38;5;88m
echo -e "\e[38;5;88mtexto\e[0m"
- Amarelo - #875F00 - \e[38;5;94m
echo -e "\e[38;5;94mtexto\e[0m"
- Amarelo - #875F5F - \e[38;5;95m
echo -e "\e[38;5;95mtexto\e[0m"
- Amarelo - #878700 - \e[38;5;100m
echo -e "\e[38;5;100mtexto\e[0m"
- Amarelo - #87875F - \e[38;5;101m
echo -e "\e[38;5;101mtexto\e[0m"
- Amarelo - #AF0000 - \e[38;5;124m
echo -e "\e[38;5;124mtexto\e[0m"
- Amarelo - #AF5F00 - \e[38;5;130m
echo -e "\e[38;5;130mtexto\e[0m"
- Amarelo - #AF5F5F - \e[38;5;131m
echo -e "\e[38;5;131mtexto\e[0m"
- Amarelo - #AF8700 - \e[38;5;136m
echo -e "\e[38;5;136mtexto\e[0m"
- Amarelo - #AF875F - \e[38;5;137m
echo -e "\e[38;5;137mtexto\e[0m"
- Amarelo - #AF8787 - \e[38;5;138m
echo -e "\e[38;5;138mtexto\e[0m"
- Amarelo - #AFAF00 - \e[38;5;142m
echo -e "\e[38;5;142mtexto\e[0m"
- Amarelo - #AFAF5F - \e[38;5;143m
echo -e "\e[38;5;143mtexto\e[0m"
- Amarelo - #AFAF87 - \e[38;5;144m
echo -e "\e[38;5;144mtexto\e[0m"
- Amarelo - #D70000 - \e[38;5;160m
echo -e "\e[38;5;160mtexto\e[0m"
- Amarelo - #D75F00 - \e[38;5;166m
echo -e "\e[38;5;166mtexto\e[0m"
- Amarelo - #D75F5F - \e[38;5;167m
echo -e "\e[38;5;167mtexto\e[0m"
- Amarelo - #D78700 - \e[38;5;172m
echo -e "\e[38;5;172mtexto\e[0m"
- Amarelo - #D7875F - \e[38;5;173m
echo -e "\e[38;5;173mtexto\e[0m"
- Amarelo - #D78787 - \e[38;5;174m
echo -e "\e[38;5;174mtexto\e[0m"
- Amarelo - #D7AF00 - \e[38;5;178m
echo -e "\e[38;5;178mtexto\e[0m"
- Amarelo - #D7AF5F - \e[38;5;179m
echo -e "\e[38;5;179mtexto\e[0m"
- Amarelo - #D7AF87 - \e[38;5;180m
echo -e "\e[38;5;180mtexto\e[0m"
- Amarelo - #D7AFAF - \e[38;5;181m
echo -e "\e[38;5;181mtexto\e[0m"
- Amarelo - #D7D700 - \e[38;5;184m
echo -e "\e[38;5;184mtexto\e[0m"
- Amarelo - #D7D75F - \e[38;5;185m
echo -e "\e[38;5;185mtexto\e[0m"
- Amarelo - #D7D787 - \e[38;5;186m
echo -e "\e[38;5;186mtexto\e[0m"
- Amarelo - #D7D7AF - \e[38;5;187m
echo -e "\e[38;5;187mtexto\e[0m"
- Amarelo - #FF0000 - \e[38;5;196m
echo -e "\e[38;5;196mtexto\e[0m"
- Amarelo - #FF5F00 - \e[38;5;202m
echo -e "\e[38;5;202mtexto\e[0m"
- Amarelo - #FF5F5F - \e[38;5;203m
echo -e "\e[38;5;203mtexto\e[0m"
- Amarelo - #FF8700 - \e[38;5;208m
echo -e "\e[38;5;208mtexto\e[0m"
- Amarelo - #FF875F - \e[38;5;209m
echo -e "\e[38;5;209mtexto\e[0m"
- Amarelo - #FF8787 - \e[38;5;210m
echo -e "\e[38;5;210mtexto\e[0m"
- Amarelo - #FFAF00 - \e[38;5;214m
echo -e "\e[38;5;214mtexto\e[0m"
- Amarelo - #FFAF5F - \e[38;5;215m
echo -e "\e[38;5;215mtexto\e[0m"
- Amarelo - #FFAF87 - \e[38;5;216m
echo -e "\e[38;5;216mtexto\e[0m"
- Amarelo - #FFAFAF - \e[38;5;217m
echo -e "\e[38;5;217mtexto\e[0m"
- Amarelo - #FFD700 - \e[38;5;220m
echo -e "\e[38;5;220mtexto\e[0m"
- Amarelo - #FFD75F - \e[38;5;221m
echo -e "\e[38;5;221mtexto\e[0m"
- Amarelo - #FFD787 - \e[38;5;222m
echo -e "\e[38;5;222mtexto\e[0m"
- Amarelo - #FFD7AF - \e[38;5;223m
echo -e "\e[38;5;223mtexto\e[0m"
- Amarelo - #FFD7D7 - \e[38;5;224m
echo -e "\e[38;5;224mtexto\e[0m"
- Amarelo - #FFFF00 - \e[38;5;226m
echo -e "\e[38;5;226mtexto\e[0m"
- Amarelo - #FFFF5F - \e[38;5;227m
echo -e "\e[38;5;227mtexto\e[0m"
- Amarelo - #FFFF87 - \e[38;5;228m
echo -e "\e[38;5;228mtexto\e[0m"
- Amarelo - #FFFFAF - \e[38;5;229m
echo -e "\e[38;5;229mtexto\e[0m"
- Amarelo - #FFFFD7 - \e[38;5;230m
echo -e "\e[38;5;230mtexto\e[0m"
- Amarelo Ouro - #E9AD0C - \e[38;5;11m
echo -e "\e[38;5;11mtexto\e[0m"
- Azul - #00005F - \e[38;5;17m
echo -e "\e[38;5;17mtexto\e[0m"
- Azul - #000087 - \e[38;5;18m
echo -e "\e[38;5;18mtexto\e[0m"
- Azul - #0000AF - \e[38;5;19m
echo -e "\e[38;5;19mtexto\e[0m"
- Azul - #0000D7 - \e[38;5;20m
echo -e "\e[38;5;20mtexto\e[0m"
- Azul - #0000FF - \e[38;5;21m
echo -e "\e[38;5;21mtexto\e[0m"
- Azul - #005F87 - \e[38;5;24m
echo -e "\e[38;5;24mtexto\e[0m"
- Azul - #005FAF - \e[38;5;25m
echo -e "\e[38;5;25mtexto\e[0m"
- Azul - #005FD7 - \e[38;5;26m
echo -e "\e[38;5;26mtexto\e[0m"
- Azul - #005FFF - \e[38;5;27m
echo -e "\e[38;5;27mtexto\e[0m"
- Azul - #0087AF - \e[38;5;31m
echo -e "\e[38;5;31mtexto\e[0m"
- Azul - #0087D7 - \e[38;5;32m
echo -e "\e[38;5;32mtexto\e[0m"
- Azul - #0087FF - \e[38;5;33m
echo -e "\e[38;5;33mtexto\e[0m"
- Azul - #00AFD7 - \e[38;5;38m
echo -e "\e[38;5;38mtexto\e[0m"
- Azul - #00AFFF - \e[38;5;39m
echo -e "\e[38;5;39mtexto\e[0m"
- Azul - #00D7FF - \e[38;5;45m
echo -e "\e[38;5;45mtexto\e[0m"
- Azul - #5F0087 - \e[38;5;54m
echo -e "\e[38;5;54mtexto\e[0m"
- Azul - #5F00AF - \e[38;5;55m
echo -e "\e[38;5;55mtexto\e[0m"
- Azul - #5F00D7 - \e[38;5;56m
echo -e "\e[38;5;56mtexto\e[0m"
- Azul - #5F00FF - \e[38;5;57m
echo -e "\e[38;5;57mtexto\e[0m"
- Azul - #5F5F87 - \e[38;5;60m
echo -e "\e[38;5;60mtexto\e[0m"
- Azul - #5F5FAF - \e[38;5;61m
echo -e "\e[38;5;61mtexto\e[0m"
- Azul - #5F5FD7 - \e[38;5;62m
echo -e "\e[38;5;62mtexto\e[0m"
- Azul - #5F5FFF - \e[38;5;63m
echo -e "\e[38;5;63mtexto\e[0m"
- Azul - #5F87AF - \e[38;5;67m
echo -e "\e[38;5;67mtexto\e[0m"
- Azul - #5F87D7 - \e[38;5;68m
echo -e "\e[38;5;68mtexto\e[0m"
- Azul - #5F87FF - \e[38;5;69m
echo -e "\e[38;5;69mtexto\e[0m"
- Azul - #5FAFD7 - \e[38;5;74m
echo -e "\e[38;5;74mtexto\e[0m"
- Azul - #5FAFFF - \e[38;5;75m
echo -e "\e[38;5;75mtexto\e[0m"
- Azul - #5FD7FF - \e[38;5;81m
echo -e "\e[38;5;81mtexto\e[0m"
- Azul - #8700AF - \e[38;5;91m
echo -e "\e[38;5;91mtexto\e[0m"
- Azul - #8700D7 - \e[38;5;92m
echo -e "\e[38;5;92mtexto\e[0m"
- Azul - #8700FF - \e[38;5;93m
echo -e "\e[38;5;93mtexto\e[0m"
- Azul - #875FAF - \e[38;5;97m
echo -e "\e[38;5;97mtexto\e[0m"
- Azul - #875FD7 - \e[38;5;98m
echo -e "\e[38;5;98mtexto\e[0m"
- Azul - #875FFF - \e[38;5;99m
echo -e "\e[38;5;99mtexto\e[0m"
- Azul - #8787AF - \e[38;5;103m
echo -e "\e[38;5;103mtexto\e[0m"
- Azul - #8787D7 - \e[38;5;104m
echo -e "\e[38;5;104mtexto\e[0m"
- Azul - #8787FF - \e[38;5;105m
echo -e "\e[38;5;105mtexto\e[0m"
- Azul - #87AFD7 - \e[38;5;110m
echo -e "\e[38;5;110mtexto\e[0m"
- Azul - #87AFFF - \e[38;5;111m
echo -e "\e[38;5;111mtexto\e[0m"
- Azul - #87D7FF - \e[38;5;117m
echo -e "\e[38;5;117mtexto\e[0m"
- Azul - #AF00D7 - \e[38;5;128m
echo -e "\e[38;5;128mtexto\e[0m"
- Azul - #AF00FF - \e[38;5;129m
echo -e "\e[38;5;129mtexto\e[0m"
- Azul - #AF5FD7 - \e[38;5;134m
echo -e "\e[38;5;134mtexto\e[0m"
- Azul - #AF5FFF - \e[38;5;135m
echo -e "\e[38;5;135mtexto\e[0m"
- Azul - #AF87D7 - \e[38;5;140m
echo -e "\e[38;5;140mtexto\e[0m"
- Azul - #AF87FF - \e[38;5;141m
echo -e "\e[38;5;141mtexto\e[0m"
- Azul - #AFAFD7 - \e[38;5;146m
echo -e "\e[38;5;146mtexto\e[0m"
- Azul - #AFAFFF - \e[38;5;147m
echo -e "\e[38;5;147mtexto\e[0m"
- Azul - #AFD7FF - \e[38;5;153m
echo -e "\e[38;5;153mtexto\e[0m"
- Azul - #D700FF - \e[38;5;165m
echo -e "\e[38;5;165mtexto\e[0m"
- Azul - #D75FFF - \e[38;5;171m
echo -e "\e[38;5;171mtexto\e[0m"
- Azul - #D787FF - \e[38;5;177m
echo -e "\e[38;5;177mtexto\e[0m"
- Azul - #D7AFFF - \e[38;5;183m
echo -e "\e[38;5;183mtexto\e[0m"
- Azul - #D7D7FF - \e[38;5;189m
echo -e "\e[38;5;189mtexto\e[0m"
- Azul Claro - #2A7BDE - \e[38;5;12m
echo -e "\e[38;5;12mtexto\e[0m"
- Azul Escuro - #12488B - \e[38;5;4m
echo -e "\e[38;5;4m texto\e[0m"
- Branco - #FFFFFF - \e[38;5;15m
echo -e "\e[38;5;15mtexto\e[0m"
- Branco - #FFFFFF - \e[38;5;231m
echo -e "\e[38;5;231mtexto\e[0m"
- Ciano - #005F5F - \e[38;5;23m
echo -e "\e[38;5;23mtexto\e[0m"
- Ciano - #00875F - \e[38;5;29m
echo -e "\e[38;5;29mtexto\e[0m"
- Ciano - #008787 - \e[38;5;30m
echo -e "\e[38;5;30mtexto\e[0m"
- Ciano - #00AF5F - \e[38;5;35m
echo -e "\e[38;5;35mtexto\e[0m"
- Ciano - #00AF87 - \e[38;5;36m
echo -e "\e[38;5;36mtexto\e[0m"
- Ciano - #00AFAF - \e[38;5;37m
echo -e "\e[38;5;37mtexto\e[0m"
- Ciano - #00D75F - \e[38;5;41m
echo -e "\e[38;5;41mtexto\e[0m"
- Ciano - #00D787 - \e[38;5;42m
echo -e "\e[38;5;42mtexto\e[0m"
- Ciano - #00D7AF - \e[38;5;43m
echo -e "\e[38;5;43mtexto\e[0m"
- Ciano - #00D7D7 - \e[38;5;44m
echo -e "\e[38;5;44mtexto\e[0m"
- Ciano - #00FF5F - \e[38;5;47m
echo -e "\e[38;5;47mtexto\e[0m"
- Ciano - #00FF87 - \e[38;5;48m
echo -e "\e[38;5;48mtexto\e[0m"
- Ciano - #00FFAF - \e[38;5;49m
echo -e "\e[38;5;49mtexto\e[0m"
- Ciano - #00FFD7 - \e[38;5;50m
echo -e "\e[38;5;50mtexto\e[0m"
- Ciano - #00FFFF - \e[38;5;51m
echo -e "\e[38;5;51mtexto\e[0m"
- Ciano - #5F8787 - \e[38;5;66m
echo -e "\e[38;5;66mtexto\e[0m"
- Ciano - #5FAF87 - \e[38;5;72m
echo -e "\e[38;5;72mtexto\e[0m"
- Ciano - #5FAFAF - \e[38;5;73m
echo -e "\e[38;5;73mtexto\e[0m"
- Ciano - #5FD787 - \e[38;5;78m
echo -e "\e[38;5;78mtexto\e[0m"
- Ciano - #5FD7AF - \e[38;5;79m
echo -e "\e[38;5;79mtexto\e[0m"
- Ciano - #5FD7D7 - \e[38;5;80m
echo -e "\e[38;5;80mtexto\e[0m"
- Ciano - #5FFF87 - \e[38;5;84m
echo -e "\e[38;5;84mtexto\e[0m"
- Ciano - #5FFFAF - \e[38;5;85m
echo -e "\e[38;5;85mtexto\e[0m"
- Ciano - #5FFFD7 - \e[38;5;86m
echo -e "\e[38;5;86mtexto\e[0m"
- Ciano - #5FFFFF - \e[38;5;87m
echo -e "\e[38;5;87mtexto\e[0m"
- Ciano - #87AFAF - \e[38;5;109m
echo -e "\e[38;5;109mtexto\e[0m"
- Ciano - #87D7AF - \e[38;5;115m
echo -e "\e[38;5;115mtexto\e[0m"
- Ciano - #87D7D7 - \e[38;5;116m
echo -e "\e[38;5;116mtexto\e[0m"
- Ciano - #87FFAF - \e[38;5;121m
echo -e "\e[38;5;121mtexto\e[0m"
- Ciano - #87FFD7 - \e[38;5;122m
echo -e "\e[38;5;122mtexto\e[0m"
- Ciano - #87FFFF - \e[38;5;123m
echo -e "\e[38;5;123mtexto\e[0m"
- Ciano - #AFD7D7 - \e[38;5;152m
echo -e "\e[38;5;152mtexto\e[0m"
- Ciano - #AFFFD7 - \e[38;5;158m
echo -e "\e[38;5;158mtexto\e[0m"
- Ciano - #AFFFFF - \e[38;5;159m
echo -e "\e[38;5;159mtexto\e[0m"
- Ciano - #D7FFFF - \e[38;5;195m
echo -e "\e[38;5;195mtexto\e[0m"
- Ciano Claro - #33C7DE - \e[38;5;14m
echo -e "\e[38;5;14mtexto\e[0m"
- Ciano Escuro - #2AA1B3 - \e[38;5;6m
echo -e "\e[38;5;6m texto\e[0m"
- Cinza 11% - #1C1C1C - \e[38;5;234m
echo -e "\e[38;5;234mtexto\e[0m"
- Cinza 15% - #262626 - \e[38;5;235m
echo -e "\e[38;5;235mtexto\e[0m"
- Cinza 19% - #303030 - \e[38;5;236m
echo -e "\e[38;5;236mtexto\e[0m"
- Cinza 23% - #3A3A3A - \e[38;5;237m
echo -e "\e[38;5;237mtexto\e[0m"
- Cinza 27% - #444444 - \e[38;5;238m
echo -e "\e[38;5;238mtexto\e[0m"
- Cinza 3% - #080808 - \e[38;5;232m
echo -e "\e[38;5;232mtexto\e[0m"
- Cinza 31% - #4E4E4E - \e[38;5;239m
echo -e "\e[38;5;239mtexto\e[0m"
- Cinza 35% - #585858 - \e[38;5;240m
echo -e "\e[38;5;240mtexto\e[0m"
- Cinza 37% - #5F5F5F - \e[38;5;59m
echo -e "\e[38;5;59mtexto\e[0m"
- Cinza 38% - #626262 - \e[38;5;241m
echo -e "\e[38;5;241mtexto\e[0m"
- Cinza 42% - #6C6C6C - \e[38;5;242m
echo -e "\e[38;5;242mtexto\e[0m"
- Cinza 46% - #767676 - \e[38;5;243m
echo -e "\e[38;5;243mtexto\e[0m"
- Cinza 50% - #808080 - \e[38;5;244m
echo -e "\e[38;5;244mtexto\e[0m"
- Cinza 53% - #878787 - \e[38;5;102m
echo -e "\e[38;5;102mtexto\e[0m"
- Cinza 54% - #8A8A8A - \e[38;5;245m
echo -e "\e[38;5;245mtexto\e[0m"
- Cinza 58% - #949494 - \e[38;5;246m
echo -e "\e[38;5;246mtexto\e[0m"
- Cinza 62% - #9E9E9E - \e[38;5;247m
echo -e "\e[38;5;247mtexto\e[0m"
- Cinza 66% - #A8A8A8 - \e[38;5;248m
echo -e "\e[38;5;248mtexto\e[0m"
- Cinza 69% - #AFAFAF - \e[38;5;145m
echo -e "\e[38;5;145mtexto\e[0m"
- Cinza 7% - #121212 - \e[38;5;233m
echo -e "\e[38;5;233mtexto\e[0m"
- Cinza 70% - #B2B2B2 - \e[38;5;249m
echo -e "\e[38;5;249mtexto\e[0m"
- Cinza 74% - #BCBCBC - \e[38;5;250m
echo -e "\e[38;5;250mtexto\e[0m"
- Cinza 78% - #C6C6C6 - \e[38;5;251m
echo -e "\e[38;5;251mtexto\e[0m"
- Cinza 82% - #D0D0D0 - \e[38;5;252m
echo -e "\e[38;5;252mtexto\e[0m"
- Cinza 84% - #D7D7D7 - \e[38;5;188m
echo -e "\e[38;5;188mtexto\e[0m"
- Cinza 85% - #DADADA - \e[38;5;253m
echo -e "\e[38;5;253mtexto\e[0m"
- Cinza 89% - #E4E4E4 - \e[38;5;254m
echo -e "\e[38;5;254mtexto\e[0m"
- Cinza 93% - #EEEEEE - \e[38;5;255m
echo -e "\e[38;5;255mtexto\e[0m"
- Cinza Claro - #D0CFCC - \e[38;5;7m
echo -e "\e[38;5;7mtexto\e[0m"
- Cinza Escuro - #5E5C64 - \e[38;5;8m
echo -e "\e[38;5;8m texto\e[0m"
- Magenta - #5F005F - \e[38;5;53m
echo -e "\e[38;5;53mtexto\e[0m"
- Magenta - #87005F - \e[38;5;89m
echo -e "\e[38;5;89mtexto\e[0m"
- Magenta - #870087 - \e[38;5;90m
echo -e "\e[38;5;90mtexto\e[0m"
- Magenta - #875F87 - \e[38;5;96m
echo -e "\e[38;5;96mtexto\e[0m"
- Magenta - #AF005F - \e[38;5;125m
echo -e "\e[38;5;125mtexto\e[0m"
- Magenta - #AF0087 - \e[38;5;126m
echo -e "\e[38;5;126mtexto\e[0m"
- Magenta - #AF00AF - \e[38;5;127m
echo -e "\e[38;5;127mtexto\e[0m"
- Magenta - #AF5F87 - \e[38;5;132m
echo -e "\e[38;5;132mtexto\e[0m"
- Magenta - #AF5FAF - \e[38;5;133m
echo -e "\e[38;5;133mtexto\e[0m"
- Magenta - #AF87AF - \e[38;5;139m
echo -e "\e[38;5;139mtexto\e[0m"
- Magenta - #D7005F - \e[38;5;161m
echo -e "\e[38;5;161mtexto\e[0m"
- Magenta - #D70087 - \e[38;5;162m
echo -e "\e[38;5;162mtexto\e[0m"
- Magenta - #D700AF - \e[38;5;163m
echo -e "\e[38;5;163mtexto\e[0m"
- Magenta - #D700D7 - \e[38;5;164m
echo -e "\e[38;5;164mtexto\e[0m"
- Magenta - #D75F87 - \e[38;5;168m
echo -e "\e[38;5;168mtexto\e[0m"
- Magenta - #D75FAF - \e[38;5;169m
echo -e "\e[38;5;169mtexto\e[0m"
- Magenta - #D75FD7 - \e[38;5;170m
echo -e "\e[38;5;170mtexto\e[0m"
- Magenta - #D787AF - \e[38;5;175m
echo -e "\e[38;5;175mtexto\e[0m"
- Magenta - #D787D7 - \e[38;5;176m
echo -e "\e[38;5;176mtexto\e[0m"
- Magenta - #D7AFD7 - \e[38;5;182m
echo -e "\e[38;5;182mtexto\e[0m"
- Magenta - #FF005F - \e[38;5;197m
echo -e "\e[38;5;197mtexto\e[0m"
- Magenta - #FF0087 - \e[38;5;198m
echo -e "\e[38;5;198mtexto\e[0m"
- Magenta - #FF00AF - \e[38;5;199m
echo -e "\e[38;5;199mtexto\e[0m"
- Magenta - #FF00D7 - \e[38;5;200m
echo -e "\e[38;5;200mtexto\e[0m"
- Magenta - #FF00FF - \e[38;5;201m
echo -e "\e[38;5;201mtexto\e[0m"
- Magenta - #FF5F87 - \e[38;5;204m
echo -e "\e[38;5;204mtexto\e[0m"
- Magenta - #FF5FAF - \e[38;5;205m
echo -e "\e[38;5;205mtexto\e[0m"
- Magenta - #FF5FD7 - \e[38;5;206m
echo -e "\e[38;5;206mtexto\e[0m"
- Magenta - #FF5FFF - \e[38;5;207m
echo -e "\e[38;5;207mtexto\e[0m"
- Magenta - #FF87AF - \e[38;5;211m
echo -e "\e[38;5;211mtexto\e[0m"
- Magenta - #FF87D7 - \e[38;5;212m
echo -e "\e[38;5;212mtexto\e[0m"
- Magenta - #FF87FF - \e[38;5;213m
echo -e "\e[38;5;213mtexto\e[0m"
- Magenta - #FFAFD7 - \e[38;5;218m
echo -e "\e[38;5;218mtexto\e[0m"
- Magenta - #FFAFFF - \e[38;5;219m
echo -e "\e[38;5;219mtexto\e[0m"
- Magenta - #FFD7FF - \e[38;5;225m
echo -e "\e[38;5;225mtexto\e[0m"
- Magenta Claro - #C061CB - \e[38;5;13m
echo -e "\e[38;5;13mtexto\e[0m"
- Marrom Claro - #A2734C - \e[38;5;3m
echo -e "\e[38;5;3mtexto\e[0m"
- Preto - #000000 - \e[38;5;16m
echo -e "\e[38;5;16mtexto\e[0m"
- Preto Azulado - #171421 - \e[38;5;0m
echo -e "\e[38;5;0m texto\e[0m"
- Roxo Médio - #A347BA - \e[38;5;5m
echo -e "\e[38;5;5mtexto\e[0m"
- Verde - #005F00 - \e[38;5;22m
echo -e "\e[38;5;22mtexto\e[0m"
- Verde - #008700 - \e[38;5;28m
echo -e "\e[38;5;28mtexto\e[0m"
- Verde - #00AF00 - \e[38;5;34m
echo -e "\e[38;5;34mtexto\e[0m"
- Verde - #00D700 - \e[38;5;40m
echo -e "\e[38;5;40mtexto\e[0m"
- Verde - #00FF00 - \e[38;5;46m
echo -e "\e[38;5;46mtexto\e[0m"
- Verde - #5F8700 - \e[38;5;64m
echo -e "\e[38;5;64mtexto\e[0m"
- Verde - #5F875F - \e[38;5;65m
echo -e "\e[38;5;65mtexto\e[0m"
- Verde - #5FAF00 - \e[38;5;70m
echo -e "\e[38;5;70mtexto\e[0m"
- Verde - #5FAF5F - \e[38;5;71m
echo -e "\e[38;5;71mtexto\e[0m"
- Verde - #5FD700 - \e[38;5;76m
echo -e "\e[38;5;76mtexto\e[0m"
- Verde - #5FD75F - \e[38;5;77m
echo -e "\e[38;5;77mtexto\e[0m"
- Verde - #5FFF00 - \e[38;5;82m
echo -e "\e[38;5;82mtexto\e[0m"
- Verde - #5FFF5F - \e[38;5;83m
echo -e "\e[38;5;83mtexto\e[0m"
- Verde - #87AF00 - \e[38;5;106m
echo -e "\e[38;5;106mtexto\e[0m"
- Verde - #87AF5F - \e[38;5;107m
echo -e "\e[38;5;107mtexto\e[0m"
- Verde - #87AF87 - \e[38;5;108m
echo -e "\e[38;5;108mtexto\e[0m"
- Verde - #87D700 - \e[38;5;112m
echo -e "\e[38;5;112mtexto\e[0m"
- Verde - #87D75F - \e[38;5;113m
echo -e "\e[38;5;113mtexto\e[0m"
- Verde - #87D787 - \e[38;5;114m
echo -e "\e[38;5;114mtexto\e[0m"
- Verde - #87FF00 - \e[38;5;118m
echo -e "\e[38;5;118mtexto\e[0m"
- Verde - #87FF5F - \e[38;5;119m
echo -e "\e[38;5;119mtexto\e[0m"
- Verde - #87FF87 - \e[38;5;120m
echo -e "\e[38;5;120mtexto\e[0m"
- Verde - #AFD700 - \e[38;5;148m
echo -e "\e[38;5;148mtexto\e[0m"
- Verde - #AFD75F - \e[38;5;149m
echo -e "\e[38;5;149mtexto\e[0m"
- Verde - #AFD787 - \e[38;5;150m
echo -e "\e[38;5;150mtexto\e[0m"
- Verde - #AFD7AF - \e[38;5;151m
echo -e "\e[38;5;151mtexto\e[0m"
- Verde - #AFFF00 - \e[38;5;154m
echo -e "\e[38;5;154mtexto\e[0m"
- Verde - #AFFF5F - \e[38;5;155m
echo -e "\e[38;5;155mtexto\e[0m"
- Verde - #AFFF87 - \e[38;5;156m
echo -e "\e[38;5;156mtexto\e[0m"
- Verde - #AFFFAF - \e[38;5;157m
echo -e "\e[38;5;157mtexto\e[0m"
- Verde - #D7FF00 - \e[38;5;190m
echo -e "\e[38;5;190mtexto\e[0m"
- Verde - #D7FF5F - \e[38;5;191m
echo -e "\e[38;5;191mtexto\e[0m"
- Verde - #D7FF87 - \e[38;5;192m
echo -e "\e[38;5;192mtexto\e[0m"
- Verde - #D7FFAF - \e[38;5;193m
echo -e "\e[38;5;193mtexto\e[0m"
- Verde - #D7FFD7 - \e[38;5;194m
echo -e "\e[38;5;194mtexto\e[0m"
- Verde Claro - #33DA7A - \e[38;5;10m
echo -e "\e[38;5;10mtexto\e[0m"
- Verde Médio - #26A269 - \e[38;5;2m
echo -e "\e[38;5;2m texto\e[0m"
- Vermelho Claro - #F66151 - \e[38;5;9m
echo -e "\e[38;5;9mtexto\e[0m"
- Vermelho Escuro - #C01C28 - \e[38;5;1m
echo -e "\e[38;5;1mtexto\e[0m"
Negrito + texto colorido[editar]
Código ANSI: \e[1;38;5;Nm
- #171421 - \e[1;38;5;0m
- #26A269 - \e[1;38;5;2m
- #12488B - \e[1;38;5;4m
- #2AA1B3 - \e[1;38;5;6m
- #5E5C64 - \e[1;38;5;8m
- #33DA7A - \e[1;38;5;10m
- #2A7BDE - \e[1;38;5;12m
- #33C7DE - \e[1;38;5;14m
- #000000 - \e[1;38;5;16m
- #000087 - \e[1;38;5;18m
- #0000D7 - \e[1;38;5;20m
- #005F00 - \e[1;38;5;22m
- #005F87 - \e[1;38;5;24m
- #005FD7 - \e[1;38;5;26m
- #008700 - \e[1;38;5;28m
- #008787 - \e[1;38;5;30m
- #0087D7 - \e[1;38;5;32m
- #00AF00 - \e[1;38;5;34m
- #00AF87 - \e[1;38;5;36m
- #00AFD7 - \e[1;38;5;38m
- #00D700 - \e[1;38;5;40m
- #00D787 - \e[1;38;5;42m
- #00D7D7 - \e[1;38;5;44m
- #00FF00 - \e[1;38;5;46m
- #00FF87 - \e[1;38;5;48m
- #00FFD7 - \e[1;38;5;50m
- #5F0000 - \e[1;38;5;52m
- #5F0087 - \e[1;38;5;54m
- #5F00D7 - \e[1;38;5;56m
- #5F5F00 - \e[1;38;5;58m
- #5F5F87 - \e[1;38;5;60m
- #5F5FD7 - \e[1;38;5;62m
- #5F8700 - \e[1;38;5;64m
- #5F8787 - \e[1;38;5;66m
- #5F87D7 - \e[1;38;5;68m
- #5FAF00 - \e[1;38;5;70m
- #5FAF87 - \e[1;38;5;72m
- #5FAFD7 - \e[1;38;5;74m
- #5FD700 - \e[1;38;5;76m
- #5FD787 - \e[1;38;5;78m
- #5FD7D7 - \e[1;38;5;80m
- #5FFF00 - \e[1;38;5;82m
- #5FFF87 - \e[1;38;5;84m
- #5FFFD7 - \e[1;38;5;86m
- #870000 - \e[1;38;5;88m
- #870087 - \e[1;38;5;90m
- #8700D7 - \e[1;38;5;92m
- #875F00 - \e[1;38;5;94m
- #875F87 - \e[1;38;5;96m
- #875FD7 - \e[1;38;5;98m
- #878700 - \e[1;38;5;100m
- #878787 - \e[1;38;5;102m
- #8787D7 - \e[1;38;5;104m
- #87AF00 - \e[1;38;5;106m
- #87AF87 - \e[1;38;5;108m
- #87AFD7 - \e[1;38;5;110m
- #87D700 - \e[1;38;5;112m
- #87D787 - \e[1;38;5;114m
- #87D7D7 - \e[1;38;5;116m
- #87FF00 - \e[1;38;5;118m
- #87FF87 - \e[1;38;5;120m
- #87FFD7 - \e[1;38;5;122m
- #AF0000 - \e[1;38;5;124m
- #AF0087 - \e[1;38;5;126m
- #AF00D7 - \e[1;38;5;128m
- #AF5F00 - \e[1;38;5;130m
- #AF5F87 - \e[1;38;5;132m
- #AF5FD7 - \e[1;38;5;134m
- #AF8700 - \e[1;38;5;136m
- #AF8787 - \e[1;38;5;138m
- #AF87D7 - \e[1;38;5;140m
- #AFAF00 - \e[1;38;5;142m
- #AFAF87 - \e[1;38;5;144m
- #AFAFD7 - \e[1;38;5;146m
- #AFD700 - \e[1;38;5;148m
- #AFD787 - \e[1;38;5;150m
- #AFD7D7 - \e[1;38;5;152m
- #AFFF00 - \e[1;38;5;154m
- #AFFF87 - \e[1;38;5;156m
- #AFFFD7 - \e[1;38;5;158m
- #D70000 - \e[1;38;5;160m
- #D70087 - \e[1;38;5;162m
- #D700D7 - \e[1;38;5;164m
- #D75F00 - \e[1;38;5;166m
- #D75F87 - \e[1;38;5;168m
- #D75FD7 - \e[1;38;5;170m
- #D78700 - \e[1;38;5;172m
- #D78787 - \e[1;38;5;174m
- #D787D7 - \e[1;38;5;176m
- #D7AF00 - \e[1;38;5;178m
- #D7AF87 - \e[1;38;5;180m
- #D7AFD7 - \e[1;38;5;182m
- #D7D700 - \e[1;38;5;184m
- #D7D787 - \e[1;38;5;186m
- #D7D7D7 - \e[1;38;5;188m
- #D7FF00 - \e[1;38;5;190m
- #D7FF87 - \e[1;38;5;192m
- #D7FFD7 - \e[1;38;5;194m
- #FF0000 - \e[1;38;5;196m
- #FF0087 - \e[1;38;5;198m
- #FF00D7 - \e[1;38;5;200m
- #FF5F00 - \e[1;38;5;202m
- #FF5F87 - \e[1;38;5;204m
- #FF5FD7 - \e[1;38;5;206m
- #FF8700 - \e[1;38;5;208m
- #FF8787 - \e[1;38;5;210m
- #FF87D7 - \e[1;38;5;212m
- #FFAF00 - \e[1;38;5;214m
- #FFAF87 - \e[1;38;5;216m
- #FFAFD7 - \e[1;38;5;218m
- #FFD700 - \e[1;38;5;220m
- #FFD787 - \e[1;38;5;222m
- #FFD7D7 - \e[1;38;5;224m
- #FFFF00 - \e[1;38;5;226m
- #FFFF87 - \e[1;38;5;228m
- #FFFFD7 - \e[1;38;5;230m
- #080808 - \e[1;38;5;232m
- #1C1C1C - \e[1;38;5;234m
- #303030 - \e[1;38;5;236m
- #444444 - \e[1;38;5;238m
- #585858 - \e[1;38;5;240m
- #6C6C6C - \e[1;38;5;242m
- #808080 - \e[1;38;5;244m
- #949494 - \e[1;38;5;246m
- #A8A8A8 - \e[1;38;5;248m
- #BCBCBC - \e[1;38;5;250m
- #D0D0D0 - \e[1;38;5;252m
- #E4E4E4 - \e[1;38;5;254m
- #C01C28 - \e[1;38;5;1m
- #A2734C - \e[1;38;5;3m
- #A347BA - \e[1;38;5;5m
- #D0CFCC - \e[1;38;5;7m
- #F66151 - \e[1;38;5;9m
- #E9AD0C - \e[1;38;5;11m
- #C061CB - \e[1;38;5;13m
- #FFFFFF - \e[1;38;5;15m
- #00005F - \e[1;38;5;17m
- #0000AF - \e[1;38;5;19m
- #0000FF - \e[1;38;5;21m
- #005F5F - \e[1;38;5;23m
- #005FAF - \e[1;38;5;25m
- #005FFF - \e[1;38;5;27m
- #00875F - \e[1;38;5;29m
- #0087AF - \e[1;38;5;31m
- #0087FF - \e[1;38;5;33m
- #00AF5F - \e[1;38;5;35m
- #00AFAF - \e[1;38;5;37m
- #00AFFF - \e[1;38;5;39m
- #00D75F - \e[1;38;5;41m
- #00D7AF - \e[1;38;5;43m
- #00D7FF - \e[1;38;5;45m
- #00FF5F - \e[1;38;5;47m
- #00FFAF - \e[1;38;5;49m
- #00FFFF - \e[1;38;5;51m
- #5F005F - \e[1;38;5;53m
- #5F00AF - \e[1;38;5;55m
- #5F00FF - \e[1;38;5;57m
- #5F5F5F - \e[1;38;5;59m
- #5F5FAF - \e[1;38;5;61m
- #5F5FFF - \e[1;38;5;63m
- #5F875F - \e[1;38;5;65m
- #5F87AF - \e[1;38;5;67m
- #5F87FF - \e[1;38;5;69m
- #5FAF5F - \e[1;38;5;71m
- #5FAFAF - \e[1;38;5;73m
- #5FAFFF - \e[1;38;5;75m
- #5FD75F - \e[1;38;5;77m
- #5FD7AF - \e[1;38;5;79m
- #5FD7FF - \e[1;38;5;81m
- #5FFF5F - \e[1;38;5;83m
- #5FFFAF - \e[1;38;5;85m
- #5FFFFF - \e[1;38;5;87m
- #87005F - \e[1;38;5;89m
- #8700AF - \e[1;38;5;91m
- #8700FF - \e[1;38;5;93m
- #875F5F - \e[1;38;5;95m
- #875FAF - \e[1;38;5;97m
- #875FFF - \e[1;38;5;99m
- #87875F - \e[1;38;5;101m
- #8787AF - \e[1;38;5;103m
- #8787FF - \e[1;38;5;105m
- #87AF5F - \e[1;38;5;107m
- #87AFAF - \e[1;38;5;109m
- #87AFFF - \e[1;38;5;111m
- #87D75F - \e[1;38;5;113m
- #87D7AF - \e[1;38;5;115m
- #87D7FF - \e[1;38;5;117m
- #87FF5F - \e[1;38;5;119m
- #87FFAF - \e[1;38;5;121m
- #87FFFF - \e[1;38;5;123m
- #AF005F - \e[1;38;5;125m
- #AF00AF - \e[1;38;5;127m
- #AF00FF - \e[1;38;5;129m
- #AF5F5F - \e[1;38;5;131m
- #AF5FAF - \e[1;38;5;133m
- #AF5FFF - \e[1;38;5;135m
- #AF875F - \e[1;38;5;137m
- #AF87AF - \e[1;38;5;139m
- #AF87FF - \e[1;38;5;141m
- #AFAF5F - \e[1;38;5;143m
- #AFAFAF - \e[1;38;5;145m
- #AFAFFF - \e[1;38;5;147m
- #AFD75F - \e[1;38;5;149m
- #AFD7AF - \e[1;38;5;151m
- #AFD7FF - \e[1;38;5;153m
- #AFFF5F - \e[1;38;5;155m
- #AFFFAF - \e[1;38;5;157m
- #AFFFFF - \e[1;38;5;159m
- #D7005F - \e[1;38;5;161m
- #D700AF - \e[1;38;5;163m
- #D700FF - \e[1;38;5;165m
- #D75F5F - \e[1;38;5;167m
- #D75FAF - \e[1;38;5;169m
- #D75FFF - \e[1;38;5;171m
- #D7875F - \e[1;38;5;173m
- #D787AF - \e[1;38;5;175m
- #D787FF - \e[1;38;5;177m
- #D7AF5F - \e[1;38;5;179m
- #D7AFAF - \e[1;38;5;181m
- #D7AFFF - \e[1;38;5;183m
- #D7D75F - \e[1;38;5;185m
- #D7D7AF - \e[1;38;5;187m
- #D7D7FF - \e[1;38;5;189m
- #D7FF5F - \e[1;38;5;191m
- #D7FFAF - \e[1;38;5;193m
- #D7FFFF - \e[1;38;5;195m
- #FF005F - \e[1;38;5;197m
- #FF00AF - \e[1;38;5;199m
- #FF00FF - \e[1;38;5;201m
- #FF5F5F - \e[1;38;5;203m
- #FF5FAF - \e[1;38;5;205m
- #FF5FFF - \e[1;38;5;207m
- #FF875F - \e[1;38;5;209m
- #FF87AF - \e[1;38;5;211m
- #FF87FF - \e[1;38;5;213m
- #FFAF5F - \e[1;38;5;215m
- #FFAFAF - \e[1;38;5;217m
- #FFAFFF - \e[1;38;5;219m
- #FFD75F - \e[1;38;5;221m
- #FFD7AF - \e[1;38;5;223m
- #FFD7FF - \e[1;38;5;225m
- #FFFF5F - \e[1;38;5;227m
- #FFFFAF - \e[1;38;5;229m
- #FFFFFF - \e[1;38;5;231m
- #121212 - \e[1;38;5;233m
- #262626 - \e[1;38;5;235m
- #3A3A3A - \e[1;38;5;237m
- #4E4E4E - \e[1;38;5;239m
- #626262 - \e[1;38;5;241m
- #767676 - \e[1;38;5;243m
- #8A8A8A - \e[1;38;5;245m
- #9E9E9E - \e[1;38;5;247m
- #B2B2B2 - \e[1;38;5;249m
- #C6C6C6 - \e[1;38;5;251m
- #DADADA - \e[1;38;5;253m
- #EEEEEE - \e[1;38;5;255m
Cores Básicas (16 cores)[editar]
- Texto preto - #171421 - \e[30m
- Fundo preto - #171421 - \e[40m
- Texto vermelho - #C01C28 - \e[31m
- Fundo vermelho - #C01C28 - \e[41m
- Texto verde - #26A269 - \e[32m
- Fundo verde - #26A269 - \e[42m
- Texto amarelo - #A2734C - \e[33m
- Fundo amarelo - #A2734C - \e[43m
- Texto azul - #12488B - \e[34m
- Fundo azul - #12488B - \e[44m
- Texto magenta - #A347BA - \e[35m
- Fundo magenta - #A347BA - \e[45m
- Texto ciano - #2AA1B3 - \e[36m
- Fundo ciano - #2AA1B3 - \e[46m
- Texto branco - #D0CFCC - \e[37m
- Fundo branco - #D0CFCC - \e[47m
Estilos de texto[editar]
- Normal - \e[0m
- Negrito - \e[1m
- Esmaecido - \e[2m
- Itálico - \e[3m
- Sublinhado - \e[4m
- Invertido - \e[7m
Tachado- \e[9m
Exemplos combinados[editar]
- NEGRITO LARANJA EM FUNDO PRETO
\e[1;38;5;208;48;5;0m
- NEGRITO AZUL ESCURO EM FUNDO BRANCO
\e[1;38;5;19;48;5;255m
- NEGRITO AMARELO
\e[1;33m
- NEGRITO VERDE
\e[1;38;5;46m
Resetar Formatação[editar]
\e[0m