Skip to content

Instantly share code, notes, and snippets.

@PandaFoss
Last active February 11, 2019 22:06
Show Gist options
  • Save PandaFoss/8212275e15dcb10f57dfae1c0ea50da8 to your computer and use it in GitHub Desktop.
Save PandaFoss/8212275e15dcb10f57dfae1c0ea50da8 to your computer and use it in GitHub Desktop.
Put style to your Bash scripts.
#!/usr/bin/env bash
####################################
# Bash stylish library #
# ---------------------------------#
# Put style to your Bash scripts #
# ______________by_________________#
# Max Ferrer <maxi.fg13@gmail.com> #
####################################
# Published under GNU GPL License (https://www.gnu.org/licenses/gpl.html)
# Publicado bajo Licencia GPL de GNU (https://www.gnu.org/licenses/gpl.html)
# WHAT'S THIS? / ¿QUÉ ES ESTO?
# ----------------------------
# It is a set of variables defined with escape sequences to facilitate the work
# when programming scripts that require color or effects in the text.
# /
# Es un conjunto de variables definidas con secuencias de escape para facilitar el
# trabajo a la hora de programar scripts que requieren color o efectos en el texto.
# INTRUCTIONS / INSTRUCCIONES
# ----------------------------
# 1. Add the following line of code just below the shebang line
# (for example, below "#!/bin/bash"):
#
# eval "$(curl -s -L https://gist.githubusercontent.com/MaxNeuron/8212275e15dcb10f57dfae1c0ea50da8/raw/99ca6a682cafcd27aecf159c603346f8a689e868/bash_stylish.sh)"
#
# 2. Call the variables as if they were part of your script. It is possible to use
# two or more variables to combine them. It is advisable to use some restart
# variable at the end to clean the format. To visualize the effect, "echo -e" must
# be used to take the escape sequences into account.
# For example, to show the word "Hello" in red, underlined and in bold, and the
# word "World" without any special format, we write the following:
#
# echo -e "${RED}${UNDERLINED}${BOLD}Hello${NORMAL} World"
#
# /
# 1. Agrega la siguiente línea de código justo debajo de la línea del shebang
# (por ejemplo, debajo de #!/bin/bash):
#
# eval "$(curl -s -L https://gist.githubusercontent.com/MaxNeuron/8212275e15dcb10f57dfae1c0ea50da8/raw/99ca6a682cafcd27aecf159c603346f8a689e868/bash_stylish.sh)"
#
# 2. Llama a las variables como si fueran parte de tu script. Es posible usar dos
# o más variables para combinarlas. Es recomendable usar alguna variable de reinicio
# al finalizar para limpiar el formato. Para visualizar el efecto, se debe usar
# "echo -e" a fin de tomar en cuenta las secuencias de escape.
# Por ejemplo, para mostrar la palabra "Hola" de color rojo, subrayada y en negrita,
# y la palabra "Mundo" sin ningún formato especial, escribimos lo siguiente:
#
# echo -e "${RED}${UNDERLINED}${BOLD}Hola${NORMAL} Mundo"
#
# Information extracted from: https://misc.flogisoft.com/bash/tip_colors_and_formatting
# Información extraída de: https://misc.flogisoft.com/bash/tip_colors_and_formatting
# Set - Establecer
BOLD="\e[1m" # Bold / Negrita
DIM="\e[2m" # Dim / Tenue
UNDERLINED="\e[4m" # Underlined / Subrayado
BLINK="\e[5m" # Blink / Parpadeo
INVERTED="\e[7m" # Reverse (invert the foreground and background colors) / Invertir (invertir los colores de primer plano y de fondo)
HIDDEN="\e[8m" # Hidden (useful for passwords) / Oculto (útil para contraseñas)
# Reset - Restablecer
NORMAL="\e[0m" # Reset all attributes / Restablecer todos los atributos
RS_BOLD="\e[21m" # Reset bold / Restablecer negrita
RS_DIM="\e[22m" # Reset dim / Restablecer texto tenue
RS_UNDERLINED="\e[24m" # Reset underlined / Restablecer subrayado
RS_BLINK="\e[25m" # Reset blink / Restablecer parpadeo
RS_INVERTED="\e[27m" # Reset reverse / Restablecer texto invertido
RS_HIDDEN="\e[28m" # Reset hidden / Restablecer texto oculto
# Text colors / Colores de texto
DEFAULT="\e[39m" # Default color / Color por defecto
BLACK="\e[30m" # Black / Negro
RED="\e[31m" # Red / Rojo
GREEN="\e[32m" # Green / Verde
YELLOW="\e[33m" # Yellow / Amarillo
BLUE="\e[34m" # Blue / Azul
MAGENTA="\e[35m" # Magenta / Magenta
CYAN="\e[36m" # Cyan / Cian
LIGHT_GRAY="\e[37m" # Light gray / Gris claro
DARK_GRAY="\e[90m" # Dark gray / Gris oscuro
LIGHT_RED="\e[91m" # Light red / rojo claro
LIGHT_GREEN="\e[92m" # Light green / Verde claro
LIGHT_YELLOW="\e[93m" # Light yellow / Amarillo claro
LIGHT_BLUE="\e[94m" # Light blue / Azul claro
LIGHT_MAGENTA="\e[95m" # Light magenta / Magenta claro
LIGHT_CYAN="\e[96m" # Light cyan / Cian claro
WHITE="\e[97m" # White / Blanco
# Background colors / Colores de fondo
DEFAULT_BG="\e[49m" # Default background / Fondo por defecto
BLACK_BG="\e[40m" # Black / Negro
RED_BG="\e[41m" # Red / Rojo
GREEN_BG="\e[42m" # Green / Verde
YELLOW_BG="\e[43m" # Yellow / Amarillo
BLUE_BG="\e[44m" # Blue / Azul
MAGENTA_BG="\e[45m" # Magenta / Magenta
CYAN_BG="\e[46m" # Cyan / Cian
LIGHT_GRAY_BG="\e[47m" # Light gray / Gris claro
DARK_GRAY_BG="\e[100m" # Dark gray / Gris oscuro
LIGHT_RED_BG="\e[101m" # Light red / Rojo claro
LIGHT_GREEN_BG="\e[102m" # Light green / Verde claro
LIGHT_YELLOW_BG="\e[103m" # Light yellow / Amarillo claro
LIGHT_BLUE_BG="\e[104m" # Light blue / Azul claro
LIGHT_MAGENTA_BG="\e[105m" # Light magenta / Magenta claro
LIGHT_CYAN_BG="\e[106m" # Light cyan / Cian claro
WHITE_BG="\e[107m" # White / Blanco
# 88/256 Colors (Text) / Colores 88/256 (Texto)
COLOR_1="\e[38;5;1m"
COLOR_2="\e[38;5;2m"
COLOR_3="\e[38;5;3m"
COLOR_4="\e[38;5;4m"
COLOR_5="\e[38;5;5m"
COLOR_6="\e[38;5;6m"
COLOR_7="\e[38;5;7m"
COLOR_8="\e[38;5;8m"
COLOR_9="\e[38;5;9m"
COLOR_10="\e[38;5;10m"
COLOR_11="\e[38;5;11m"
COLOR_12="\e[38;5;12m"
COLOR_13="\e[38;5;13m"
COLOR_14="\e[38;5;14m"
COLOR_15="\e[38;5;15m"
COLOR_16="\e[38;5;16m"
COLOR_17="\e[38;5;17m"
COLOR_18="\e[38;5;18m"
COLOR_19="\e[38;5;19m"
COLOR_20="\e[38;5;20m"
COLOR_21="\e[38;5;21m"
COLOR_22="\e[38;5;22m"
COLOR_23="\e[38;5;23m"
COLOR_24="\e[38;5;24m"
COLOR_25="\e[38;5;25m"
COLOR_26="\e[38;5;26m"
COLOR_27="\e[38;5;27m"
COLOR_28="\e[38;5;28m"
COLOR_29="\e[38;5;29m"
COLOR_30="\e[38;5;30m"
COLOR_31="\e[38;5;31m"
COLOR_32="\e[38;5;32m"
COLOR_33="\e[38;5;33m"
COLOR_34="\e[38;5;34m"
COLOR_35="\e[38;5;35m"
COLOR_36="\e[38;5;36m"
COLOR_37="\e[38;5;37m"
COLOR_38="\e[38;5;38m"
COLOR_39="\e[38;5;39m"
COLOR_40="\e[38;5;40m"
COLOR_41="\e[38;5;41m"
COLOR_42="\e[38;5;42m"
COLOR_43="\e[38;5;43m"
COLOR_44="\e[38;5;44m"
COLOR_45="\e[38;5;45m"
COLOR_46="\e[38;5;46m"
COLOR_47="\e[38;5;47m"
COLOR_48="\e[38;5;48m"
COLOR_49="\e[38;5;49m"
COLOR_50="\e[38;5;50m"
COLOR_51="\e[38;5;51m"
COLOR_52="\e[38;5;52m"
COLOR_53="\e[38;5;53m"
COLOR_54="\e[38;5;54m"
COLOR_55="\e[38;5;55m"
COLOR_56="\e[38;5;56m"
COLOR_57="\e[38;5;57m"
COLOR_58="\e[38;5;58m"
COLOR_59="\e[38;5;59m"
COLOR_60="\e[38;5;60m"
COLOR_61="\e[38;5;61m"
COLOR_62="\e[38;5;62m"
COLOR_63="\e[38;5;63m"
COLOR_64="\e[38;5;64m"
COLOR_65="\e[38;5;65m"
COLOR_66="\e[38;5;66m"
COLOR_67="\e[38;5;67m"
COLOR_68="\e[38;5;68m"
COLOR_69="\e[38;5;69m"
COLOR_70="\e[38;5;70m"
COLOR_71="\e[38;5;71m"
COLOR_72="\e[38;5;72m"
COLOR_73="\e[38;5;73m"
COLOR_74="\e[38;5;74m"
COLOR_75="\e[38;5;75m"
COLOR_76="\e[38;5;76m"
COLOR_77="\e[38;5;77m"
COLOR_78="\e[38;5;78m"
COLOR_79="\e[38;5;79m"
COLOR_80="\e[38;5;80m"
COLOR_81="\e[38;5;81m"
COLOR_82="\e[38;5;82m"
COLOR_83="\e[38;5;83m"
COLOR_84="\e[38;5;84m"
COLOR_85="\e[38;5;85m"
COLOR_86="\e[38;5;86m"
COLOR_87="\e[38;5;87m"
COLOR_88="\e[38;5;88m"
COLOR_89="\e[38;5;89m"
COLOR_90="\e[38;5;90m"
COLOR_91="\e[38;5;91m"
COLOR_92="\e[38;5;92m"
COLOR_93="\e[38;5;93m"
COLOR_94="\e[38;5;94m"
COLOR_95="\e[38;5;95m"
COLOR_96="\e[38;5;96m"
COLOR_97="\e[38;5;97m"
COLOR_98="\e[38;5;98m"
COLOR_99="\e[38;5;99m"
COLOR_100="\e[38;5;100m"
COLOR_101="\e[38;5;101m"
COLOR_102="\e[38;5;102m"
COLOR_103="\e[38;5;103m"
COLOR_104="\e[38;5;104m"
COLOR_105="\e[38;5;105m"
COLOR_106="\e[38;5;106m"
COLOR_107="\e[38;5;107m"
COLOR_108="\e[38;5;108m"
COLOR_109="\e[38;5;109m"
COLOR_110="\e[38;5;110m"
COLOR_111="\e[38;5;111m"
COLOR_112="\e[38;5;112m"
COLOR_113="\e[38;5;113m"
COLOR_114="\e[38;5;114m"
COLOR_115="\e[38;5;115m"
COLOR_116="\e[38;5;116m"
COLOR_117="\e[38;5;117m"
COLOR_118="\e[38;5;118m"
COLOR_119="\e[38;5;119m"
COLOR_120="\e[38;5;120m"
COLOR_121="\e[38;5;121m"
COLOR_122="\e[38;5;122m"
COLOR_123="\e[38;5;123m"
COLOR_124="\e[38;5;124m"
COLOR_125="\e[38;5;125m"
COLOR_126="\e[38;5;126m"
COLOR_127="\e[38;5;127m"
COLOR_128="\e[38;5;128m"
COLOR_129="\e[38;5;129m"
COLOR_130="\e[38;5;130m"
COLOR_131="\e[38;5;131m"
COLOR_132="\e[38;5;132m"
COLOR_133="\e[38;5;133m"
COLOR_134="\e[38;5;134m"
COLOR_135="\e[38;5;135m"
COLOR_136="\e[38;5;136m"
COLOR_137="\e[38;5;137m"
COLOR_138="\e[38;5;138m"
COLOR_139="\e[38;5;139m"
COLOR_140="\e[38;5;140m"
COLOR_141="\e[38;5;141m"
COLOR_142="\e[38;5;142m"
COLOR_143="\e[38;5;143m"
COLOR_144="\e[38;5;144m"
COLOR_145="\e[38;5;145m"
COLOR_146="\e[38;5;146m"
COLOR_147="\e[38;5;147m"
COLOR_148="\e[38;5;148m"
COLOR_149="\e[38;5;149m"
COLOR_150="\e[38;5;150m"
COLOR_151="\e[38;5;151m"
COLOR_152="\e[38;5;152m"
COLOR_153="\e[38;5;153m"
COLOR_154="\e[38;5;154m"
COLOR_155="\e[38;5;155m"
COLOR_156="\e[38;5;156m"
COLOR_157="\e[38;5;157m"
COLOR_158="\e[38;5;158m"
COLOR_159="\e[38;5;159m"
COLOR_160="\e[38;5;160m"
COLOR_161="\e[38;5;161m"
COLOR_162="\e[38;5;162m"
COLOR_163="\e[38;5;163m"
COLOR_164="\e[38;5;164m"
COLOR_165="\e[38;5;165m"
COLOR_166="\e[38;5;166m"
COLOR_167="\e[38;5;167m"
COLOR_168="\e[38;5;168m"
COLOR_169="\e[38;5;169m"
COLOR_170="\e[38;5;170m"
COLOR_171="\e[38;5;171m"
COLOR_172="\e[38;5;172m"
COLOR_173="\e[38;5;173m"
COLOR_174="\e[38;5;174m"
COLOR_175="\e[38;5;175m"
COLOR_176="\e[38;5;176m"
COLOR_177="\e[38;5;177m"
COLOR_178="\e[38;5;178m"
COLOR_179="\e[38;5;179m"
COLOR_180="\e[38;5;180m"
COLOR_181="\e[38;5;181m"
COLOR_182="\e[38;5;182m"
COLOR_183="\e[38;5;183m"
COLOR_184="\e[38;5;184m"
COLOR_185="\e[38;5;185m"
COLOR_186="\e[38;5;186m"
COLOR_187="\e[38;5;187m"
COLOR_188="\e[38;5;188m"
COLOR_189="\e[38;5;189m"
COLOR_190="\e[38;5;190m"
COLOR_191="\e[38;5;191m"
COLOR_192="\e[38;5;192m"
COLOR_193="\e[38;5;193m"
COLOR_194="\e[38;5;194m"
COLOR_195="\e[38;5;195m"
COLOR_196="\e[38;5;196m"
COLOR_197="\e[38;5;197m"
COLOR_198="\e[38;5;198m"
COLOR_199="\e[38;5;199m"
COLOR_200="\e[38;5;200m"
COLOR_201="\e[38;5;201m"
COLOR_202="\e[38;5;202m"
COLOR_203="\e[38;5;203m"
COLOR_204="\e[38;5;204m"
COLOR_205="\e[38;5;205m"
COLOR_206="\e[38;5;206m"
COLOR_207="\e[38;5;207m"
COLOR_208="\e[38;5;208m"
COLOR_209="\e[38;5;209m"
COLOR_210="\e[38;5;210m"
COLOR_211="\e[38;5;211m"
COLOR_212="\e[38;5;212m"
COLOR_213="\e[38;5;213m"
COLOR_214="\e[38;5;214m"
COLOR_215="\e[38;5;215m"
COLOR_216="\e[38;5;216m"
COLOR_217="\e[38;5;217m"
COLOR_218="\e[38;5;218m"
COLOR_219="\e[38;5;219m"
COLOR_220="\e[38;5;220m"
COLOR_221="\e[38;5;221m"
COLOR_222="\e[38;5;222m"
COLOR_223="\e[38;5;223m"
COLOR_224="\e[38;5;224m"
COLOR_225="\e[38;5;225m"
COLOR_226="\e[38;5;226m"
COLOR_227="\e[38;5;227m"
COLOR_228="\e[38;5;228m"
COLOR_229="\e[38;5;229m"
COLOR_230="\e[38;5;230m"
COLOR_231="\e[38;5;231m"
COLOR_232="\e[38;5;232m"
COLOR_233="\e[38;5;233m"
COLOR_234="\e[38;5;234m"
COLOR_235="\e[38;5;235m"
COLOR_236="\e[38;5;236m"
COLOR_237="\e[38;5;237m"
COLOR_238="\e[38;5;238m"
COLOR_239="\e[38;5;239m"
COLOR_240="\e[38;5;240m"
COLOR_241="\e[38;5;241m"
COLOR_242="\e[38;5;242m"
COLOR_243="\e[38;5;243m"
COLOR_244="\e[38;5;244m"
COLOR_245="\e[38;5;245m"
COLOR_246="\e[38;5;246m"
COLOR_247="\e[38;5;247m"
COLOR_248="\e[38;5;248m"
COLOR_249="\e[38;5;249m"
COLOR_250="\e[38;5;250m"
COLOR_251="\e[38;5;251m"
COLOR_252="\e[38;5;252m"
COLOR_253="\e[38;5;253m"
COLOR_254="\e[38;5;254m"
COLOR_255="\e[38;5;255m"
COLOR_256="\e[38;5;256m"
# 88/256 Colors (Background) / 88/256 Colores (Fondo)
COLOR_BG_1="\e[48;5;1m"
COLOR_BG_2="\e[48;5;2m"
COLOR_BG_3="\e[48;5;3m"
COLOR_BG_4="\e[48;5;4m"
COLOR_BG_5="\e[48;5;5m"
COLOR_BG_6="\e[48;5;6m"
COLOR_BG_7="\e[48;5;7m"
COLOR_BG_8="\e[48;5;8m"
COLOR_BG_9="\e[48;5;9m"
COLOR_BG_10="\e[48;5;10m"
COLOR_BG_11="\e[48;5;11m"
COLOR_BG_12="\e[48;5;12m"
COLOR_BG_13="\e[48;5;13m"
COLOR_BG_14="\e[48;5;14m"
COLOR_BG_15="\e[48;5;15m"
COLOR_BG_16="\e[48;5;16m"
COLOR_BG_17="\e[48;5;17m"
COLOR_BG_18="\e[48;5;18m"
COLOR_BG_19="\e[48;5;19m"
COLOR_BG_20="\e[48;5;20m"
COLOR_BG_21="\e[48;5;21m"
COLOR_BG_22="\e[48;5;22m"
COLOR_BG_23="\e[48;5;23m"
COLOR_BG_24="\e[48;5;24m"
COLOR_BG_25="\e[48;5;25m"
COLOR_BG_26="\e[48;5;26m"
COLOR_BG_27="\e[48;5;27m"
COLOR_BG_28="\e[48;5;28m"
COLOR_BG_29="\e[48;5;29m"
COLOR_BG_30="\e[48;5;30m"
COLOR_BG_31="\e[48;5;31m"
COLOR_BG_32="\e[48;5;32m"
COLOR_BG_33="\e[48;5;33m"
COLOR_BG_34="\e[48;5;34m"
COLOR_BG_35="\e[48;5;35m"
COLOR_BG_36="\e[48;5;36m"
COLOR_BG_37="\e[48;5;37m"
COLOR_BG_38="\e[48;5;38m"
COLOR_BG_39="\e[48;5;39m"
COLOR_BG_40="\e[48;5;40m"
COLOR_BG_41="\e[48;5;41m"
COLOR_BG_42="\e[48;5;42m"
COLOR_BG_43="\e[48;5;43m"
COLOR_BG_44="\e[48;5;44m"
COLOR_BG_45="\e[48;5;45m"
COLOR_BG_46="\e[48;5;46m"
COLOR_BG_47="\e[48;5;47m"
COLOR_BG_48="\e[48;5;48m"
COLOR_BG_49="\e[48;5;49m"
COLOR_BG_50="\e[48;5;50m"
COLOR_BG_51="\e[48;5;51m"
COLOR_BG_52="\e[48;5;52m"
COLOR_BG_53="\e[48;5;53m"
COLOR_BG_54="\e[48;5;54m"
COLOR_BG_55="\e[48;5;55m"
COLOR_BG_56="\e[48;5;56m"
COLOR_BG_57="\e[48;5;57m"
COLOR_BG_58="\e[48;5;58m"
COLOR_BG_59="\e[48;5;59m"
COLOR_BG_60="\e[48;5;60m"
COLOR_BG_61="\e[48;5;61m"
COLOR_BG_62="\e[48;5;62m"
COLOR_BG_63="\e[48;5;63m"
COLOR_BG_64="\e[48;5;64m"
COLOR_BG_65="\e[48;5;65m"
COLOR_BG_66="\e[48;5;66m"
COLOR_BG_67="\e[48;5;67m"
COLOR_BG_68="\e[48;5;68m"
COLOR_BG_69="\e[48;5;69m"
COLOR_BG_70="\e[48;5;70m"
COLOR_BG_71="\e[48;5;71m"
COLOR_BG_72="\e[48;5;72m"
COLOR_BG_73="\e[48;5;73m"
COLOR_BG_74="\e[48;5;74m"
COLOR_BG_75="\e[48;5;75m"
COLOR_BG_76="\e[48;5;76m"
COLOR_BG_77="\e[48;5;77m"
COLOR_BG_78="\e[48;5;78m"
COLOR_BG_79="\e[48;5;79m"
COLOR_BG_80="\e[48;5;80m"
COLOR_BG_81="\e[48;5;81m"
COLOR_BG_82="\e[48;5;82m"
COLOR_BG_83="\e[48;5;83m"
COLOR_BG_84="\e[48;5;84m"
COLOR_BG_85="\e[48;5;85m"
COLOR_BG_86="\e[48;5;86m"
COLOR_BG_87="\e[48;5;87m"
COLOR_BG_88="\e[48;5;88m"
COLOR_BG_89="\e[48;5;89m"
COLOR_BG_90="\e[48;5;90m"
COLOR_BG_91="\e[48;5;91m"
COLOR_BG_92="\e[48;5;92m"
COLOR_BG_93="\e[48;5;93m"
COLOR_BG_94="\e[48;5;94m"
COLOR_BG_95="\e[48;5;95m"
COLOR_BG_96="\e[48;5;96m"
COLOR_BG_97="\e[48;5;97m"
COLOR_BG_98="\e[48;5;98m"
COLOR_BG_99="\e[48;5;99m"
COLOR_BG_100="\e[48;5;100m"
COLOR_BG_101="\e[48;5;101m"
COLOR_BG_102="\e[48;5;102m"
COLOR_BG_103="\e[48;5;103m"
COLOR_BG_104="\e[48;5;104m"
COLOR_BG_105="\e[48;5;105m"
COLOR_BG_106="\e[48;5;106m"
COLOR_BG_107="\e[48;5;107m"
COLOR_BG_108="\e[48;5;108m"
COLOR_BG_109="\e[48;5;109m"
COLOR_BG_110="\e[48;5;110m"
COLOR_BG_111="\e[48;5;111m"
COLOR_BG_112="\e[48;5;112m"
COLOR_BG_113="\e[48;5;113m"
COLOR_BG_114="\e[48;5;114m"
COLOR_BG_115="\e[48;5;115m"
COLOR_BG_116="\e[48;5;116m"
COLOR_BG_117="\e[48;5;117m"
COLOR_BG_118="\e[48;5;118m"
COLOR_BG_119="\e[48;5;119m"
COLOR_BG_120="\e[48;5;120m"
COLOR_BG_121="\e[48;5;121m"
COLOR_BG_122="\e[48;5;122m"
COLOR_BG_123="\e[48;5;123m"
COLOR_BG_124="\e[48;5;124m"
COLOR_BG_125="\e[48;5;125m"
COLOR_BG_126="\e[48;5;126m"
COLOR_BG_127="\e[48;5;127m"
COLOR_BG_128="\e[48;5;128m"
COLOR_BG_129="\e[48;5;129m"
COLOR_BG_130="\e[48;5;130m"
COLOR_BG_131="\e[48;5;131m"
COLOR_BG_132="\e[48;5;132m"
COLOR_BG_133="\e[48;5;133m"
COLOR_BG_134="\e[48;5;134m"
COLOR_BG_135="\e[48;5;135m"
COLOR_BG_136="\e[48;5;136m"
COLOR_BG_137="\e[48;5;137m"
COLOR_BG_138="\e[48;5;138m"
COLOR_BG_139="\e[48;5;139m"
COLOR_BG_140="\e[48;5;140m"
COLOR_BG_141="\e[48;5;141m"
COLOR_BG_142="\e[48;5;142m"
COLOR_BG_143="\e[48;5;143m"
COLOR_BG_144="\e[48;5;144m"
COLOR_BG_145="\e[48;5;145m"
COLOR_BG_146="\e[48;5;146m"
COLOR_BG_147="\e[48;5;147m"
COLOR_BG_148="\e[48;5;148m"
COLOR_BG_149="\e[48;5;149m"
COLOR_BG_150="\e[48;5;150m"
COLOR_BG_151="\e[48;5;151m"
COLOR_BG_152="\e[48;5;152m"
COLOR_BG_153="\e[48;5;153m"
COLOR_BG_154="\e[48;5;154m"
COLOR_BG_155="\e[48;5;155m"
COLOR_BG_156="\e[48;5;156m"
COLOR_BG_157="\e[48;5;157m"
COLOR_BG_158="\e[48;5;158m"
COLOR_BG_159="\e[48;5;159m"
COLOR_BG_160="\e[48;5;160m"
COLOR_BG_161="\e[48;5;161m"
COLOR_BG_162="\e[48;5;162m"
COLOR_BG_163="\e[48;5;163m"
COLOR_BG_164="\e[48;5;164m"
COLOR_BG_165="\e[48;5;165m"
COLOR_BG_166="\e[48;5;166m"
COLOR_BG_167="\e[48;5;167m"
COLOR_BG_168="\e[48;5;168m"
COLOR_BG_169="\e[48;5;169m"
COLOR_BG_170="\e[48;5;170m"
COLOR_BG_171="\e[48;5;171m"
COLOR_BG_172="\e[48;5;172m"
COLOR_BG_173="\e[48;5;173m"
COLOR_BG_174="\e[48;5;174m"
COLOR_BG_175="\e[48;5;175m"
COLOR_BG_176="\e[48;5;176m"
COLOR_BG_177="\e[48;5;177m"
COLOR_BG_178="\e[48;5;178m"
COLOR_BG_179="\e[48;5;179m"
COLOR_BG_180="\e[48;5;180m"
COLOR_BG_181="\e[48;5;181m"
COLOR_BG_182="\e[48;5;182m"
COLOR_BG_183="\e[48;5;183m"
COLOR_BG_184="\e[48;5;184m"
COLOR_BG_185="\e[48;5;185m"
COLOR_BG_186="\e[48;5;186m"
COLOR_BG_187="\e[48;5;187m"
COLOR_BG_188="\e[48;5;188m"
COLOR_BG_189="\e[48;5;189m"
COLOR_BG_190="\e[48;5;190m"
COLOR_BG_191="\e[48;5;191m"
COLOR_BG_192="\e[48;5;192m"
COLOR_BG_193="\e[48;5;193m"
COLOR_BG_194="\e[48;5;194m"
COLOR_BG_195="\e[48;5;195m"
COLOR_BG_196="\e[48;5;196m"
COLOR_BG_197="\e[48;5;197m"
COLOR_BG_198="\e[48;5;198m"
COLOR_BG_199="\e[48;5;199m"
COLOR_BG_200="\e[48;5;200m"
COLOR_BG_201="\e[48;5;201m"
COLOR_BG_202="\e[48;5;202m"
COLOR_BG_203="\e[48;5;203m"
COLOR_BG_204="\e[48;5;204m"
COLOR_BG_205="\e[48;5;205m"
COLOR_BG_206="\e[48;5;206m"
COLOR_BG_207="\e[48;5;207m"
COLOR_BG_208="\e[48;5;208m"
COLOR_BG_209="\e[48;5;209m"
COLOR_BG_210="\e[48;5;210m"
COLOR_BG_211="\e[48;5;211m"
COLOR_BG_212="\e[48;5;212m"
COLOR_BG_213="\e[48;5;213m"
COLOR_BG_214="\e[48;5;214m"
COLOR_BG_215="\e[48;5;215m"
COLOR_BG_216="\e[48;5;216m"
COLOR_BG_217="\e[48;5;217m"
COLOR_BG_218="\e[48;5;218m"
COLOR_BG_219="\e[48;5;219m"
COLOR_BG_220="\e[48;5;220m"
COLOR_BG_221="\e[48;5;221m"
COLOR_BG_222="\e[48;5;222m"
COLOR_BG_223="\e[48;5;223m"
COLOR_BG_224="\e[48;5;224m"
COLOR_BG_225="\e[48;5;225m"
COLOR_BG_226="\e[48;5;226m"
COLOR_BG_227="\e[48;5;227m"
COLOR_BG_228="\e[48;5;228m"
COLOR_BG_229="\e[48;5;229m"
COLOR_BG_230="\e[48;5;230m"
COLOR_BG_231="\e[48;5;231m"
COLOR_BG_232="\e[48;5;232m"
COLOR_BG_233="\e[48;5;233m"
COLOR_BG_234="\e[48;5;234m"
COLOR_BG_235="\e[48;5;235m"
COLOR_BG_236="\e[48;5;236m"
COLOR_BG_237="\e[48;5;237m"
COLOR_BG_238="\e[48;5;238m"
COLOR_BG_239="\e[48;5;239m"
COLOR_BG_240="\e[48;5;240m"
COLOR_BG_241="\e[48;5;241m"
COLOR_BG_242="\e[48;5;242m"
COLOR_BG_243="\e[48;5;243m"
COLOR_BG_244="\e[48;5;244m"
COLOR_BG_245="\e[48;5;245m"
COLOR_BG_246="\e[48;5;246m"
COLOR_BG_247="\e[48;5;247m"
COLOR_BG_248="\e[48;5;248m"
COLOR_BG_249="\e[48;5;249m"
COLOR_BG_250="\e[48;5;250m"
COLOR_BG_251="\e[48;5;251m"
COLOR_BG_252="\e[48;5;252m"
COLOR_BG_253="\e[48;5;253m"
COLOR_BG_254="\e[48;5;254m"
COLOR_BG_255="\e[48;5;255m"
COLOR_BG_256="\e[48;5;256m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment