Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Comprehensive AI design skill providing design intelligence across platforms with 161 reasoning rules.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/logo-design.md
1# Logo Design Reference23AI-powered logo design with 55+ styles, 30 color palettes, 25 industry guides. Uses Gemini Nano Banana models.45## Scripts67| Script | Purpose |8|--------|---------|9| `scripts/logo/search.py` | Search styles, colors, industries; generate design briefs |10| `scripts/logo/generate.py` | Generate logos with Gemini Nano Banana |11| `scripts/logo/core.py` | BM25 search engine for logo data |1213## Commands1415### Design Brief (Start Here)1617```bash18python3 ~/.claude/skills/design/scripts/logo/search.py "tech startup modern" --design-brief -p "BrandName"19```2021### Search Domains2223```bash24# Styles25python3 ~/.claude/skills/design/scripts/logo/search.py "minimalist clean" --domain style2627# Color palettes28python3 ~/.claude/skills/design/scripts/logo/search.py "tech professional" --domain color2930# Industry guidelines31python3 ~/.claude/skills/design/scripts/logo/search.py "healthcare medical" --domain industry32```3334### Generate Logo3536**ALWAYS** use white background for output logos.3738```bash39python3 ~/.claude/skills/design/scripts/logo/generate.py --brand "TechFlow" --style minimalist --industry tech40python3 ~/.claude/skills/design/scripts/logo/generate.py --prompt "coffee shop vintage badge" --style vintage41```4243Options: `--style`, `--industry`, `--prompt`4445## Available Styles4647| Category | Styles |48|----------|--------|49| General | Minimalist, Wordmark, Lettermark, Pictorial Mark, Abstract Mark, Mascot, Emblem, Combination Mark |50| Aesthetic | Vintage/Retro, Art Deco, Luxury, Playful, Corporate, Organic, Neon, Grunge, Watercolor |51| Modern | Gradient, Flat Design, 3D/Isometric, Geometric, Line Art, Duotone, Motion-Ready |52| Clever | Negative Space, Monoline, Split/Fragmented, Responsive/Adaptive |5354## Color Psychology5556| Color | Psychology | Best For |57|-------|------------|----------|58| Blue | Trust, stability | Finance, tech, healthcare |59| Green | Growth, natural | Eco, wellness, organic |60| Red | Energy, passion | Food, sports, entertainment |61| Gold | Luxury, premium | Fashion, jewelry, hotels |62| Purple | Creative, innovative | Beauty, creative, tech |6364## Industry Defaults6566| Industry | Style | Colors | Typography |67|----------|-------|--------|------------|68| Tech | Minimalist, Abstract | Blues, purples, gradients | Geometric sans |69| Healthcare | Professional, Line Art | Blues, greens, teals | Clean sans |70| Finance | Corporate, Emblem | Navy, gold | Serif or clean sans |71| Food | Vintage Badge, Mascot | Warm reds, oranges | Friendly, script |72| Fashion | Wordmark, Luxury | Black, gold, white | Elegant serif |7374## Workflow75761. Generate design brief → `scripts/logo/search.py --design-brief`772. Generate logo variations → `scripts/logo/generate.py --brand --style --industry`783. Ask user about HTML preview → `AskUserQuestion` tool794. If yes, invoke `/ui-ux-pro-max` for HTML gallery8081## Detailed References8283- `references/logo-style-guide.md` - Detailed style descriptions84- `references/logo-color-psychology.md` - Color meanings and combinations85- `references/logo-prompt-engineering.md` - AI generation prompts8687## Setup8889```bash90export GEMINI_API_KEY="your-key"91pip install google-genai92```93