# ## colors, colors, attributes, and more colors # Sourced when mtime changes on ~/.bash/prompt, used in a function to rebuild # ~/var/bash/prompt, which acts as a PS1 cache so we don't have the expense or # environment litter of doing all these variable assignments every shell # invocation. Function should be unset by caller. local COLOR_escape="\033[" local COLOR_bold=";01" local COLOR_reset=";00" local COLOR_flash=";05" local COLOR_endesc="m" local COLOR_fgblack=";30" local COLOR_fgred=";31" local COLOR_fggreen=";32" local COLOR_fgyellow=";33" local COLOR_fgblue=";34" local COLOR_fgmagenta=";35" local COLOR_fgcyan=";36" local COLOR_fgwhite=";37" local COLOR_bgblack=";40" local COLOR_bgred=";41" local COLOR_bggreen=";42" local COLOR_bgyellow=";43" local COLOR_bgblue=";44" local COLOR_bgmagenta=";45" local COLOR_bgcyan=";46" local COLOR_bgwhite=";47" local CLR_flash_bold_fgblack_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_bold_fgblack_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_bold_fgblack_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_bold_fgblack_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_bold_fgblack_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_bold_fgblack_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_bold_fgblack_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_bold_fgblack_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_bold_fgred_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_bold_fgred_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_bold_fgred_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_bold_fgred_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_bold_fgred_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_bold_fgred_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_bold_fgred_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_bold_fgred_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_bold_fggreen_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_bold_fggreen_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_bold_fggreen_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_bold_fggreen_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_bold_fggreen_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_bold_fggreen_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_bold_fggreen_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_bold_fggreen_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_bold_fgyellow_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_bold_fgyellow_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_bold_fgyellow_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_bold_fgyellow_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_bold_fgyellow_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_bold_fgyellow_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_bold_fgyellow_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_bold_fgyellow_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_bold_fgblue_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_bold_fgblue_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_bold_fgblue_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_bold_fgblue_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_bold_fgblue_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_bold_fgblue_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_bold_fgblue_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_bold_fgblue_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_bold_fgmagenta_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_bold_fgmagenta_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_bold_fgmagenta_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_bold_fgmagenta_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_bold_fgmagenta_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_bold_fgmagenta_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_bold_fgmagenta_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_bold_fgmagenta_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_bold_fgcyan_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_bold_fgcyan_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_bold_fgcyan_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_bold_fgcyan_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_bold_fgcyan_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_bold_fgcyan_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_bold_fgcyan_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_bold_fgcyan_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_bold_fgwhite_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_bold_fgwhite_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_bold_fgwhite_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_bold_fgwhite_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_bold_fgwhite_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_bold_fgwhite_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_bold_fgwhite_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_bold_fgwhite_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_flat_fgblack_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_flat_fgblack_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_flat_fgblack_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_flat_fgblack_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_flat_fgblack_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_flat_fgblack_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_flat_fgblack_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_flat_fgblack_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_flat_fgred_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_flat_fgred_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_flat_fgred_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_flat_fgred_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_flat_fgred_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_flat_fgred_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_flat_fgred_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_flat_fgred_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_flat_fggreen_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_flat_fggreen_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_flat_fggreen_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_flat_fggreen_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_flat_fggreen_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_flat_fggreen_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_flat_fggreen_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_flat_fggreen_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_flat_fgyellow_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_flat_fgyellow_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_flat_fgyellow_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_flat_fgyellow_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_flat_fgyellow_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_flat_fgyellow_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_flat_fgyellow_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_flat_fgyellow_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_flat_fgblue_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_flat_fgblue_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_flat_fgblue_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_flat_fgblue_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_flat_fgblue_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_flat_fgblue_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_flat_fgblue_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_flat_fgblue_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_flat_fgmagenta_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_flat_fgmagenta_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_flat_fgmagenta_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_flat_fgmagenta_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_flat_fgmagenta_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_flat_fgmagenta_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_flat_fgmagenta_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_flat_fgmagenta_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_flat_fgcyan_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_flat_fgcyan_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_flat_fgcyan_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_flat_fgcyan_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_flat_fgcyan_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_flat_fgcyan_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_flat_fgcyan_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_flat_fgcyan_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgwhite}${COLOR_endesc}" local CLR_flash_flat_fgwhite_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgblack}${COLOR_endesc}" local CLR_flash_flat_fgwhite_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgred}${COLOR_endesc}" local CLR_flash_flat_fgwhite_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bggreen}${COLOR_endesc}" local CLR_flash_flat_fgwhite_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgyellow}${COLOR_endesc}" local CLR_flash_flat_fgwhite_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgblue}${COLOR_endesc}" local CLR_flash_flat_fgwhite_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_flash_flat_fgwhite_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgcyan}${COLOR_endesc}" local CLR_flash_flat_fgwhite_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_bold_fgblack_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_bold_fgblack_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_bold_fgblack_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_bold_fgblack_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_bold_fgblack_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_bold_fgblack_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_bold_fgblack_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_bold_fgblack_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_bold_fgred_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_bold_fgred_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_bold_fgred_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_bold_fgred_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_bold_fgred_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_bold_fgred_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_bold_fgred_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_bold_fgred_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_bold_fggreen_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_bold_fggreen_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_bold_fggreen_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_bold_fggreen_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_bold_fggreen_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_bold_fggreen_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_bold_fggreen_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_bold_fggreen_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_bold_fgyellow_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_bold_fgyellow_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_bold_fgyellow_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_bold_fgyellow_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_bold_fgyellow_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_bold_fgyellow_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_bold_fgyellow_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_bold_fgyellow_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_bold_fgblue_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_bold_fgblue_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_bold_fgblue_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_bold_fgblue_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_bold_fgblue_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_bold_fgblue_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_bold_fgblue_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_bold_fgblue_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_bold_fgmagenta_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_bold_fgmagenta_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_bold_fgmagenta_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_bold_fgmagenta_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_bold_fgmagenta_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_bold_fgmagenta_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_bold_fgmagenta_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_bold_fgmagenta_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_bold_fgcyan_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_bold_fgcyan_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_bold_fgcyan_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_bold_fgcyan_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_bold_fgcyan_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_bold_fgcyan_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_bold_fgcyan_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_bold_fgcyan_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_bold_fgwhite_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_bold_fgwhite_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_bold_fgwhite_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_bold_fgwhite_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_bold_fgwhite_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_bold_fgwhite_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_bold_fgwhite_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_bold_fgwhite_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_flat_fgblack_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_flat_fgblack_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_flat_fgblack_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_flat_fgblack_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_flat_fgblack_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_flat_fgblack_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_flat_fgblack_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_flat_fgblack_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_flat_fgred_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_flat_fgred_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_flat_fgred_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_flat_fgred_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_flat_fgred_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_flat_fgred_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_flat_fgred_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_flat_fgred_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_flat_fggreen_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_flat_fggreen_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_flat_fggreen_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_flat_fggreen_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_flat_fggreen_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_flat_fggreen_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_flat_fggreen_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_flat_fggreen_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_flat_fgyellow_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_flat_fgyellow_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_flat_fgyellow_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_flat_fgyellow_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_flat_fgyellow_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_flat_fgyellow_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_flat_fgyellow_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_flat_fgyellow_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_flat_fgblue_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_flat_fgblue_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_flat_fgblue_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_flat_fgblue_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_flat_fgblue_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_flat_fgblue_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_flat_fgblue_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_flat_fgblue_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_flat_fgmagenta_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_flat_fgmagenta_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_flat_fgmagenta_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_flat_fgmagenta_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_flat_fgmagenta_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_flat_fgmagenta_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_flat_fgmagenta_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_flat_fgmagenta_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_flat_fgcyan_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_flat_fgcyan_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_flat_fgcyan_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_flat_fgcyan_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_flat_fgcyan_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_flat_fgcyan_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_flat_fgcyan_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_flat_fgcyan_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgwhite}${COLOR_endesc}" local CLR_solid_flat_fgwhite_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgblack}${COLOR_endesc}" local CLR_solid_flat_fgwhite_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgred}${COLOR_endesc}" local CLR_solid_flat_fgwhite_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bggreen}${COLOR_endesc}" local CLR_solid_flat_fgwhite_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgyellow}${COLOR_endesc}" local CLR_solid_flat_fgwhite_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgblue}${COLOR_endesc}" local CLR_solid_flat_fgwhite_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgmagenta}${COLOR_endesc}" local CLR_solid_flat_fgwhite_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgcyan}${COLOR_endesc}" local CLR_solid_flat_fgwhite_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgwhite}${COLOR_endesc}" # vim:syn=sh:nowrap: