A command-line tool to generate app icons for mobile applications in various sizes and formats.
- Generate foreground layer for adaptive icons with text
- Customizable text and color
- Automatically creates all required sizes for Android
# Clone the repository
git clone https://github.com/yourusername/app-icon-generator.git
cd app-icon-generator
# Install dependencies
npm install
# Link the package globally (optional)
npm link
# Basic usage
app-icon-generator "myapp" "white" "./output"
# Arguments:
# 1. Text to display (default: "easyrep.")
# 2. Text color (default: "white")
# 3. Output directory (default: ".")
# Generate foreground icons with "myapp" text in white
app-icon-generator "myapp" "white" "./my-project"
# Generate foreground icons with "easyrep." text in blue
app-icon-generator "easyrep." "#2500DD" "./my-project"
MIT