1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-08-03 00:49:28 +02:00

Update install loader w/ ANSI_AQUA theme color

This commit is contained in:
billz 2025-05-17 00:56:28 -07:00
parent 231b4c3326
commit 452f4aefbd

View File

@ -207,7 +207,7 @@ function _setup_colors() {
ANSI_RED="\033[0;31m" ANSI_RED="\033[0;31m"
ANSI_GREEN="\033[0;32m" ANSI_GREEN="\033[0;32m"
ANSI_YELLOW="\033[0;33m" ANSI_YELLOW="\033[0;33m"
ANSI_RASPBERRY="\033[0;35m" ANSI_AQUA="\033[38;5;30m"
ANSI_ERROR="\033[1;37;41m" ANSI_ERROR="\033[1;37;41m"
ANSI_RESET="\033[m" ANSI_RESET="\033[m"
} }
@ -229,7 +229,7 @@ function _version() {
# Outputs a welcome message # Outputs a welcome message
function _display_welcome() { function _display_welcome() {
echo -e "${ANSI_RASPBERRY}\n" echo -e "${ANSI_AQUA}\n"
echo -e " 888888ba .d888888 888888ba" echo -e " 888888ba .d888888 888888ba"
echo -e " 88 8b d8 88 88 8b" echo -e " 88 8b d8 88 88 8b"
echo -e "a88aaaa8P' .d8888b. .d8888b. 88d888b. 88aaaaa88a a88aaaa8P" echo -e "a88aaaa8P' .d8888b. .d8888b. 88d888b. 88aaaaa88a a88aaaa8P"
@ -292,7 +292,7 @@ function _install_status() {
echo -e "[$ANSI_YELLOW \U26A0 warning $ANSI_RESET] $2" echo -e "[$ANSI_YELLOW \U26A0 warning $ANSI_RESET] $2"
;; ;;
3) 3)
echo -e "[$ANSI_RASPBERRY ! important $ANSI_RESET] $2" echo -e "[$ANSI_AQUA ! important $ANSI_RESET] $2"
esac esac
} }