1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-09 03:49:21 +00:00

Uniform color specifications

This commit is contained in:
Tw93
2025-12-02 14:45:48 +08:00
parent 8d29a35fc9
commit 8cdf583d85
14 changed files with 40 additions and 36 deletions

Binary file not shown.

View File

@@ -34,10 +34,10 @@ main() {
# Run all checks in parallel with spinner
if [[ -t 1 ]]; then
echo -ne "${PURPLE}System Check${NC} "
echo -ne "${PURPLE_BOLD}System Check${NC} "
start_inline_spinner "Running checks..."
else
echo -e "${PURPLE}System Check${NC}"
echo -e "${PURPLE_BOLD}System Check${NC}"
echo ""
fi

View File

@@ -171,7 +171,7 @@ start_section() {
TRACK_SECTION=1
SECTION_ACTIVITY=0
echo ""
echo -e "${PURPLE}${ICON_ARROW} $1${NC}"
echo -e "${PURPLE_BOLD}${ICON_ARROW} $1${NC}"
}
end_section() {
@@ -369,7 +369,7 @@ safe_clean() {
start_cleanup() {
clear
printf '\n'
echo -e "${PURPLE}Clean Your Mac${NC}"
echo -e "${PURPLE_BOLD}Clean Your Mac${NC}"
echo ""
if [[ "$DRY_RUN" != "true" && -t 0 ]]; then

View File

@@ -17,7 +17,7 @@ source "$SCRIPT_DIR/lib/check/all.sh"
print_header() {
printf '\n'
echo -e "${PURPLE}Optimize and Check${NC}"
echo -e "${PURPLE_BOLD}Optimize and Check${NC}"
echo ""
}
@@ -25,7 +25,7 @@ print_header() {
run_system_checks() {
unset AUTO_FIX_SUMMARY AUTO_FIX_DETAILS
echo ""
echo -e "${PURPLE}System Check${NC}"
echo -e "${PURPLE_BOLD}System Check${NC}"
echo ""
# Check updates - real-time display

Binary file not shown.