#!/usr/bin/env zsh # https://en.wikipedia.org/wiki/ANSI_escape_code c="\033[0m" echo -e "" echo -e " \033[4;38;5;15m8 colors$c" echo -e "" echo -e " \033[1;38;5;15mForeground:$c \ \033[1;38;5;15mBackground:$c" echo -e "" echo -e " \033[1;30m30 Black$c \033[1;90m90 BrightBlack$c \ \033[40m40 Black$c \033[100m100 BrightBlack$c" echo -e " \033[1;31m31 Red$c \033[1;91m91 BrightRed$c \ \033[41m41 Red$c \033[101m101 BrightRed$c" echo -e " \033[1;32m32 Green$c \033[1;92m92 BrightGreen$c \ \033[42m42 Green$c \033[0;102m\033[1;30m102 BrightGreen$c" echo -e " \033[1;33m33 Yellow$c \033[1;93m93 BrightYellow$c \ \033[0;43m\033[1;30m43 Yellow$c \033[0;103m\033[1;30m103 BrightYellow$c" echo -e " \033[1;34m34 Blue$c \033[1;94m94 BrightBlue$c \ \033[44m44 Blue$c \033[104m104 BrightBlue$c" echo -e " \033[1;35m35 Magenta$c \033[1;95m95 BrightMagenta$c \ \033[45m45 Magenta$c \033[105m105 BrightMagenta$c" echo -e " \033[1;36m36 Cyan$c \033[1;96m96 BrightCyan$c \ \033[0;46m\033[1;30m46 Cyan$c \033[0;106m\033[1;30m106 BrightCyan$c" echo -e " \033[1;37m37 White$c \033[1;97m97 BrightWhite $c \ \033[0;47m\033[1;30m47 White$c \033[0;107m\033[1;30m107 BrightWhite$c" echo -e ""