Logo Design Guide
When to Use
Use this skill as needed to perform the specified automation task.
Design effective logos with AI image generation via inference.sh CLI.
Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a logo concept
infsh app run falai/flux-dev-lora --input '{
"prompt": "flat vector logo of a mountain peak with a sunrise, minimal geometric style, single color, clean lines, white background",
"width": 1024,
"height": 1024
}'
Logo Types
| Type |
Description |
When to Use |
Example |
| Wordmark |
Company name styled as logo |
Strong brand name, short (< 10 chars) |
Google, Coca-Cola |
| Lettermark |
Initials only |
Long company name, formal |
IBM, HBO, CNN |
| Pictorial |
Recognizable icon/symbol |
Universal brand, works without text |
Apple, Twitter bird |
| Abstract |
Geometric/non-literal shape |
Tech companies, conceptual brands |
Nike swoosh, Pepsi |
| Mascot |
Character illustration |
Friendly brands, food/sports |
KFC Colonel, Pringles |
| Combination |
Icon + wordmark together |
New brands needing both recognition and name |
Burger King, Adidas |
Critical AI Limitation
AI image generators cannot reliably render text. Letters will be distorted, misspelled, or garbled.
Strategy:
- Generate the icon/symbol only with AI
- Add text/wordmark in a design tool (Figma, Canva, Illustrator)
- Or use a combination approach: AI icon + manually set typography
Prompting for Logos
Keywords That Work
flat vector logo, simple minimal icon, single color silhouette,
geometric logo mark, clean lines, negative space design,
line art logo, flat design icon, minimalist symbol
Keywords That Fail
❌ photorealistic logo (contradiction — logos aren't photos)
❌ 3D rendered logo (too complex, won't scale down)
❌ gradient logo (inconsistent results, hard to reproduce)
❌ logo with text "Company Name" (text rendering fails)
Prompt Structure
flat vector logo of [subject], [style], [color constraint], [background], [additional detail]
Examples by Logo Type
# Abstract geometric
infsh app run falai/flux-dev-lora --input '{
"prompt": "flat vector abstract logo, interlocking hexagonal shapes forming a letter S, minimal geometric style, single navy blue color, white background, clean sharp edges"
}'
# Pictorial nature
infsh app run falai/flux-dev-lora --input '{
"prompt": "flat vector logo of a fox head in profile, geometric faceted style, orange and white, minimal clean lines, white background, negative space design"
}'
# Mascot style
infsh app run bytedance/seedream-4-5 --input '{
"prompt": "friendly cartoon owl mascot logo, simple flat illustration, wearing graduation cap, purple and gold colors, white background, clean vector style"
}'
# Tech abstract
infsh app run xai/grok-imagine-image-pro --input '{
"prompt": "minimal abstract logo mark, interconnected nodes forming a brain shape, line art style, single teal color, white background, tech startup aesthetic"
}'
Scalability Rules
A logo must work at every size:
| Context |
Size |
What Must Work |
| Favicon |
16x16 px |
Silhouette recognizable |
| App icon |
1024x1024 px |
Full detail visible |
| Social avatar |
400x400 px |
Clear at a glance |
| Business card |
~1 inch |
Clean print reproduction |
| Billboard |
10+ feet |
No pixelation, simple enough |
Scalability Checklist
Color Guidelines
- Maximum 2-3 colors for the primary logo
- Must work in single color (black, white, or brand primary)
- Consider color psychology:
- Blue: trust, professional (finance, tech, healthcare)
- Red: energy, urgency (food, entertainment, retail)
- Green: growth, nature (health, sustainability, finance)
- Orange: friendly, creative (startups, youth brands)
- Purple: luxury, wisdom (beauty, education)
- Black: premium, elegant (fashion, luxury, tech)
- Test on both light and dark backgrounds
Iteration Workflow
# Step 1: Generate 5-10 broad concepts
for i in {1..5}; do
infsh app run falai/flux-dev-lora --input '{
"prompt": "flat vector logo of a lighthouse, minimal geometric, single color, white background"
}' --no-wait
done
# Step 2: Refine the best concept with variations
infsh app run falai/flux-dev-lora --input '{
"prompt": "flat vector logo of a geometric lighthouse with light beam rays, minimal line art, navy blue, white background, negative space design"
}'
# Step 3: Generate at high resolution for final
infsh app run bytedance/seedream-4-5 --input '{
"prompt": "flat vector logo of a geometric lighthouse with radiating light beams, minimal clean design, navy blue single color, pure white background",
"size": "2K"
}'
# Step 4: Upscale for production use
infsh app run falai/topaz-image-upscaler --input '{
"image": "path/to/best-logo.png",
"scale": 4
}'
Common Mistakes
| Mistake |
Problem |
Fix |
| Too much detail |
Loses clarity at small sizes |
Simplify to essential shapes |
| Relies on color |
Fails in B&W contexts |
Design in black first |
| Text in AI generation |
Garbled/misspelled letters |
Generate icon only, add text manually |
| Trendy effects (glows, shadows) |
Dates quickly, reproduction issues |
Stick to flat, timeless design |
| Too many colors |
Hard to reproduce, expensive printing |
Max 2-3 colors |
| Asymmetric without purpose |
Looks unfinished |
Use intentional asymmetry or stay balanced |
File Format Delivery
| Format |
Use Case |
| SVG |
Scalable vector, web, editing |
| PNG (transparent) |
Digital use, presentations |
| PNG (white bg) |
Documents, email signatures |
| ICO / Favicon |
Website favicon (16, 32, 48px) |
| High-res PNG (4096px+) |
Print, billboards |
Note: AI generates raster images (PNG). For true vector SVG, use the AI output as a reference and trace in a vector tool, or use AI-to-SVG conversion tools.
Related Skills
npx skills add inference-sh/skills@ai-image-generation
npx skills add inference-sh/skills@prompt-engineering
Browse all apps: infsh app list
1---2name: logo-design-guide3description: Logo design principles and AI image generation best practices for creating logos. Covers logo types, prompting techniques, scalability rules, and iteration workflows. Use for: brand identity, startup logos, app icons, favicons, logo concepts. Triggers: logo design, create logo, brand logo,...4license: MIT5---6# Logo Design Guide78## When to Use910Use this skill as needed to perform the specified automation task.1112Design effective logos with AI image generation via [inference.sh](https://inference.sh) CLI.1314## Quick Start1516```bash17curl -fsSL https://cli.inference.sh | sh && infsh login1819# Generate a logo concept20infsh app run falai/flux-dev-lora --input '{21 "prompt": "flat vector logo of a mountain peak with a sunrise, minimal geometric style, single color, clean lines, white background",22 "width": 1024,23 "height": 102424}'25```2627## Logo Types2829| Type | Description | When to Use | Example |30|------|-------------|-------------|---------|31| **Wordmark** | Company name styled as logo | Strong brand name, short (< 10 chars) | Google, Coca-Cola |32| **Lettermark** | Initials only | Long company name, formal | IBM, HBO, CNN |33| **Pictorial** | Recognizable icon/symbol | Universal brand, works without text | Apple, Twitter bird |34| **Abstract** | Geometric/non-literal shape | Tech companies, conceptual brands | Nike swoosh, Pepsi |35| **Mascot** | Character illustration | Friendly brands, food/sports | KFC Colonel, Pringles |36| **Combination** | Icon + wordmark together | New brands needing both recognition and name | Burger King, Adidas |3738## Critical AI Limitation3940**AI image generators cannot reliably render text.** Letters will be distorted, misspelled, or garbled.4142Strategy:431. Generate the **icon/symbol only** with AI442. Add text/wordmark in a design tool (Figma, Canva, Illustrator)453. Or use a combination approach: AI icon + manually set typography4647## Prompting for Logos4849### Keywords That Work5051```52flat vector logo, simple minimal icon, single color silhouette,53geometric logo mark, clean lines, negative space design,54line art logo, flat design icon, minimalist symbol55```5657### Keywords That Fail5859```60❌ photorealistic logo (contradiction — logos aren't photos)61❌ 3D rendered logo (too complex, won't scale down)62❌ gradient logo (inconsistent results, hard to reproduce)63❌ logo with text "Company Name" (text rendering fails)64```6566### Prompt Structure6768```69flat vector logo of [subject], [style], [color constraint], [background], [additional detail]70```7172### Examples by Logo Type7374```bash75# Abstract geometric76infsh app run falai/flux-dev-lora --input '{77 "prompt": "flat vector abstract logo, interlocking hexagonal shapes forming a letter S, minimal geometric style, single navy blue color, white background, clean sharp edges"78}'7980# Pictorial nature81infsh app run falai/flux-dev-lora --input '{82 "prompt": "flat vector logo of a fox head in profile, geometric faceted style, orange and white, minimal clean lines, white background, negative space design"83}'8485# Mascot style86infsh app run bytedance/seedream-4-5 --input '{87 "prompt": "friendly cartoon owl mascot logo, simple flat illustration, wearing graduation cap, purple and gold colors, white background, clean vector style"88}'8990# Tech abstract91infsh app run xai/grok-imagine-image-pro --input '{92 "prompt": "minimal abstract logo mark, interconnected nodes forming a brain shape, line art style, single teal color, white background, tech startup aesthetic"93}'94```9596## Scalability Rules9798A logo must work at every size:99100| Context | Size | What Must Work |101|---------|------|----------------|102| Favicon | 16x16 px | Silhouette recognizable |103| App icon | 1024x1024 px | Full detail visible |104| Social avatar | 400x400 px | Clear at a glance |105| Business card | ~1 inch | Clean print reproduction |106| Billboard | 10+ feet | No pixelation, simple enough |107108### Scalability Checklist109110- [ ] Recognizable as a 16px favicon (squint test)111- [ ] Works in single color (black on white)112- [ ] Works inverted (white on black)113- [ ] No tiny details that disappear at small sizes114- [ ] No thin lines that vanish when shrunk115- [ ] Clear silhouette without color116117## Color Guidelines118119- **Maximum 2-3 colors** for the primary logo120- Must work in **single color** (black, white, or brand primary)121- Consider **color psychology**:122 - Blue: trust, professional (finance, tech, healthcare)123 - Red: energy, urgency (food, entertainment, retail)124 - Green: growth, nature (health, sustainability, finance)125 - Orange: friendly, creative (startups, youth brands)126 - Purple: luxury, wisdom (beauty, education)127 - Black: premium, elegant (fashion, luxury, tech)128- Test on both light and dark backgrounds129130## Iteration Workflow131132```bash133# Step 1: Generate 5-10 broad concepts134for i in {1..5}; do135 infsh app run falai/flux-dev-lora --input '{136 "prompt": "flat vector logo of a lighthouse, minimal geometric, single color, white background"137 }' --no-wait138done139140# Step 2: Refine the best concept with variations141infsh app run falai/flux-dev-lora --input '{142 "prompt": "flat vector logo of a geometric lighthouse with light beam rays, minimal line art, navy blue, white background, negative space design"143}'144145# Step 3: Generate at high resolution for final146infsh app run bytedance/seedream-4-5 --input '{147 "prompt": "flat vector logo of a geometric lighthouse with radiating light beams, minimal clean design, navy blue single color, pure white background",148 "size": "2K"149}'150151# Step 4: Upscale for production use152infsh app run falai/topaz-image-upscaler --input '{153 "image": "path/to/best-logo.png",154 "scale": 4155}'156```157158## Common Mistakes159160| Mistake | Problem | Fix |161|---------|---------|-----|162| Too much detail | Loses clarity at small sizes | Simplify to essential shapes |163| Relies on color | Fails in B&W contexts | Design in black first |164| Text in AI generation | Garbled/misspelled letters | Generate icon only, add text manually |165| Trendy effects (glows, shadows) | Dates quickly, reproduction issues | Stick to flat, timeless design |166| Too many colors | Hard to reproduce, expensive printing | Max 2-3 colors |167| Asymmetric without purpose | Looks unfinished | Use intentional asymmetry or stay balanced |168169## File Format Delivery170171| Format | Use Case |172|--------|----------|173| SVG | Scalable vector, web, editing |174| PNG (transparent) | Digital use, presentations |175| PNG (white bg) | Documents, email signatures |176| ICO / Favicon | Website favicon (16, 32, 48px) |177| High-res PNG (4096px+) | Print, billboards |178179Note: AI generates raster images (PNG). For true vector SVG, use the AI output as a reference and trace in a vector tool, or use AI-to-SVG conversion tools.180181## Related Skills182183```bash184npx skills add inference-sh/skills@ai-image-generation185npx skills add inference-sh/skills@prompt-engineering186```187188Browse all apps: `infsh app list`