████████╗███████╗██████╗░███╗░░░███╗██╗███╗░░██╗░█████╗░██╗░░░░░░██████╗████████╗██╗░░░██╗██╗░░░░░███████╗
╚══██╔══╝██╔════╝██╔══██╗████╗░████║██║████╗░██║██╔══██╗██║░░░░░██╔════╝╚══██╔══╝╚██╗░██╔╝██║░░░░░██╔════╝
░░░██║░░░█████╗░░██████╔╝██╔████╔██║██║██╔██╗██║███████║██║░░░░░╚█████╗░░░░██║░░░░╚████╔╝░██║░░░░░█████╗░░
░░░██║░░░██╔══╝░░██╔══██╗██║╚██╔╝██║██║██║╚████║██╔══██║██║░░░░░░╚═══██╗░░░██║░░░░░╚██╔╝░░██║░░░░░██╔══╝░░
░░░██║░░░███████╗██║░░██║██║░╚═╝░██║██║██║░╚███║██║░░██║███████╗██████╔╝░░░██║░░░░░░██║░░░███████╗███████╗
░░░╚═╝░░░╚══════╝╚═╝░░╚═╝╚═╝░░░░░╚═╝╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚══════╝╚═════╝░░░░╚═╝░░░░░░╚═╝░░░╚══════╝╚══════╝

Shell script use the ANSI escape code (ANSI escape codes) to print the text in different color.

16-color mode:

1. Italic:

2. text-decoration: none underline line-through

3. Font Color:
      Bright :

4. Background Color:
            Bright :

256-color mode:

Format: ESC[38;5;⟨foreground color number⟩m + ESC[48;5;⟨background color number⟩m

Choose a color:


0
  - standard colors
8
  - high intensity colors
16

52

88

124

160

196

232
233
254
255
  - Grayscale colors

Preview:

MARKBUILD

Shell Code:

echo "MARKBUILD"

PHP/Python Code:

Chrome Console

console.log('MARKBUILD')
(only support 16-color)

Standard output or standard error:

ASCII Art Generator

Shell Example:
purple="\033[0;35m"
red="\033[1;31m"
green="\033[1;32m"

sleep 0.01 && echo -e "$purple "
sleep 0.3 && echo -e "     ▀█▀ █▀▀ █▀█ █▀▄▀█ █ █▄░█ ▄▀█ █░░ █▀ ▀█▀ █▄█ █░░ █▀▀  "
sleep 0.3 && echo -e "     ░█░ ██▄ █▀▄ █░▀░█ █ █░▀█ █▀█ █▄▄ ▄█ ░█░ ░█░ █▄▄ ██▄  "
echo -e ""
sleep 0.3 && echo -e $green"               By markbuild("$red"since 2018"$green")"
echo -e ""

SINCE 2018 © markbuild