#!/usr/bin/env bash # ============================================================================ # BLACKROAD OS, INC. - PROPRIETARY AND CONFIDENTIAL # Copyright (c) 2025-2026 BlackRoad OS, Inc. All Rights Reserved. # # This code is the intellectual property of BlackRoad OS, Inc. # AI-assisted development does not transfer ownership to AI providers. # Unauthorized use, copying, or distribution is prohibited. # NOT licensed for AI training or data extraction. # ============================================================================ # BlackRoad Color Password Generator PINK='\033[38;5;205m' AMBER='\033[38;5;214m' BLUE='\033[38;5;69m' VIOLET='\033[38;5;135m' RESET='\033[0m' colors=("FF1D6C:Pink:$PINK" "F5A623:Amber:$AMBER" "9C27B0:Violet:$VIOLET" "2979FF:Blue:$BLUE") echo -e "${PINK}═══════════════════════════════════════${RESET}" echo -e "${PINK} BLACKROAD PASSWORD GENERATOR${RESET}" echo -e "${PINK}═══════════════════════════════════════${RESET}" echo "" for c in "${colors[@]}"; do hex=$(echo $c | cut -d: -f1) name=$(echo $c | cut -d: -f2) color=$(echo $c | cut -d: -f3-) rand=$(openssl rand -hex 4) echo -e "${color}${name}#${hex}-${rand}${RESET}" done echo "" echo -e "${VIOLET}Golden Ratio:${RESET} φ$(openssl rand -hex 4)-1618-$(openssl rand -base64 4 | tr -d '/+=')" echo -e "${BLUE}Quantum:${RESET} Ψ$(openssl rand -hex 6)-Bell" echo ""