19 lines
268 B
Bash
Executable File
19 lines
268 B
Bash
Executable File
#! /bin/bash
|
|
|
|
RED="\e[31m"
|
|
GREEN="\e[32m"
|
|
YELLOW="\e[33m"
|
|
BLUE="\e[34m"
|
|
MAGENTA="\e[35m"
|
|
CYAN="\e[36m"
|
|
GRAY="\e[90m"
|
|
ENDCOLOR="\e[0m"
|
|
|
|
ENDCOLOR="\e[0m"
|
|
BOLD="\e[1m"
|
|
FAINT="\e[2m"
|
|
ITALIC="\e[3m"
|
|
UNDERLINE="\e[4m"
|
|
|
|
# Example usage: echo -e "${GRAY}Gray text${ENDCOLOR}"
|