commit bc2a067de2f357e285414e53976e23d7dc0784d8 Author: Harper Innes Date: Fri Oct 6 08:42:41 2023 +1100 Added Transflag to your terminal diff --git a/pridetrans.sh b/pridetrans.sh new file mode 100644 index 0000000..3c0bc0f --- /dev/null +++ b/pridetrans.sh @@ -0,0 +1,41 @@ +#!/usr/bin/env bash + +#Colours +red="\033[00;31m" +RED="\033[01;31m" + +green="\033[00;32m" +GREEN="\033[01;32m" + +brown="\033[00;33m" +YELLOW="\033[01;33m" + +blue="\033[00;34m" +BLUE="\033[01;34m" + +purple="\033[00;35m" +PURPLE="\033[01;35m" + +cyan="\033[00;36m" +CYAN="\033[01;36m" + +white="\033[00;37m" +WHITE="\033[01;37m" + +aqua="\033[48;5;74;48;2;70;194;228m" +AQUA="\033[48;5;74;48;2;70;194;228m" + +cream="\033[48;5;255;48;2;255;255;255m" + +pink="\033[48;5;175;48;2;229;150;182m" + +NC="\033[00m" +echo -e "${aqua} ${NC}" +echo -e "${pink} ${NC}" +echo -e "${cream} ${NC}" +echo -e "${pink} ${NC}" +echo -e "${aqua} ${NC}" +echo "____________________" +# Reset Terminal Colour Back to Normal +echo -e "${aqua} #TRANSLIVESMATTER ${NC}" +echo -e "${NC}" \ No newline at end of file