SVG Logo Designer
This skill creates professional, scalable vector graphic (SVG) logos from design specifications, offering multiple variations and layout options.
When to Use This Skill
Activate this skill when the user requests:
- Create a logo from a description or specification
- Design a brand identity or visual mark
- Generate logo variations and concepts
- Create icons or symbols
- Design wordmarks or lettermarks
- Produce scalable graphics for branding
- Export logos in different layouts and styles
Core Workflow
Phase 1: Requirements Gathering
When a user requests a logo, gather comprehensive design requirements:
Brand Information
- Company/product name
- Industry and market
- Target audience
- Brand personality (modern, classic, playful, serious, etc.)
- Brand values and messaging
- Competitors (for differentiation)
Design Preferences
- Logo type:
- Wordmark: Text-based logo (Google, Coca-Cola style)
- Lettermark: Initials/abbreviation (IBM, HBO style)
- Pictorial Mark: Icon/symbol (Apple, Twitter style)
- Abstract Mark: Abstract geometric form (Pepsi, Adidas style)
- Mascot: Character-based (KFC Colonel, Michelin Man style)
- Combination Mark: Icon + text (Burger King, Lacoste style)
- Emblem: Text inside symbol (Starbucks, Harley-Davidson style)
Style Guidelines
- Color palette (specific colors or let AI choose)
- Color psychology considerations
- Font preferences (if text-based)
- Visual style:
- Minimalist
- Geometric
- Organic/flowing
- Bold/strong
- Elegant/refined
- Playful/friendly
- Tech/modern
- Vintage/retro
Technical Requirements
- Size constraints (will it be used small? large?)
- Application contexts (website, print, merchandise, etc.)
- Color vs monochrome versions needed
- Background usage (light, dark, transparent)
- Scalability requirements
Number of Variations
- How many different concepts? (Recommend 3-5)
- How many layouts per concept? (Horizontal, vertical, square, circular)
- Color variations needed?
Phase 2: Design Concept Development
Create multiple logo concepts based on requirements:
Concept 1: Primary Direction
Develop the main design direction:
Design Thinking:
- Research visual metaphors related to brand
- Consider negative space opportunities
- Ensure memorability and uniqueness
- Balance simplicity with distinctiveness
- Consider cultural appropriateness
SVG Structure:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
<defs>
<!-- Gradients, patterns, filters -->
<linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4F46E5;stop-opacity:1" />
<stop offset="100%" style="stop-color:#7C3AED;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Logo elements -->
<g id="logo-symbol">
<!-- Symbol/icon elements -->
</g>
<g id="logo-text">
<!-- Text elements (if applicable) -->
</g>
</svg>
Concept 2-5: Alternative Directions
Create variations exploring different visual approaches:
- Different visual metaphors
- Different style treatments
- Different layouts and compositions
- Different color applications
Phase 3: Layout Variations
For each concept, create multiple layout options:
Layout A: Horizontal Lockup
- Icon on left, text on right
- Best for website headers, business cards
- Wider aspect ratio
Layout B: Vertical Lockup
- Icon on top, text below
- Best for social media profiles, app icons
- Taller aspect ratio
Layout C: Square/Centered
- Icon and text centered
- Best for favicon, app icon, profile picture
- 1:1 aspect ratio
Layout D: Icon Only
- Symbol without text
- Best for small sizes, watermarks
- Compact, recognizable
Layout E: Text Only
- Wordmark without icon
- Best for minimal applications
- Typography-focused
Phase 4: SVG Generation
Create professional, optimized SVG code:
Best Practices:
- Clean, Semantic Code
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60">
<!-- Use groups for organization -->
<g id="icon">
<!-- Icon elements -->
</g>
<g id="wordmark">
<!-- Text elements -->
</g>
</svg>
Scalable Design
- Use viewBox for scalability
- Avoid pixel-specific sizes
- Use relative units
- Design at multiple sizes to test
Color Management
<!-- Define colors once, reuse throughout -->
<defs>
<style>
.primary { fill: #4F46E5; }
.secondary { fill: #10B981; }
.text { fill: #1F2937; }
</style>
</defs>
<rect class="primary" x="0" y="0" width="100" height="100" />
Optimization
- Remove unnecessary attributes
- Combine paths where possible
- Use symbols for repeated elements
- Minimize decimal precision
- Remove invisible elements
Accessibility
<svg role="img" aria-labelledby="logo-title logo-desc">
<title id="logo-title">Company Name Logo</title>
<desc id="logo-desc">A blue circular icon with the company name</desc>
<!-- Logo content -->
</svg>
Phase 5: Presentation
Present logos in an organized, professional manner:
# Logo Design Concepts
## Concept 1: [Concept Name/Theme]
### Design Rationale
[Explain the thinking behind this design, visual metaphors used, and how it represents the brand]
### Primary Logo (Horizontal)
[SVG code here]
**Usage:** Headers, website navigation, business cards
**Dimensions:** 200x60px (scalable)
### Vertical Layout
[SVG code here]
**Usage:** Social media profiles, mobile apps
**Dimensions:** 100x120px (scalable)
### Icon Only
[SVG code here]
**Usage:** Favicon, app icon, small spaces
**Dimensions:** 64x64px (scalable)
### Color Variations
**Full Color:**
- Primary: #4F46E5 (Indigo)
- Secondary: #10B981 (Emerald)
**Monochrome (Dark):**
- Single color: #1F2937 (Gray-900)
**Monochrome (Light):**
- Single color: #FFFFFF (White)
**Reversed:**
- For dark backgrounds
Phase 6: File Generation
Save SVG files with proper naming:
company-name-logo-concept1-horizontal.svg
company-name-logo-concept1-vertical.svg
company-name-logo-concept1-icon.svg
company-name-logo-concept2-horizontal.svg
Use the Write tool to save each variation.
Phase 7: Usage Guidelines
Provide comprehensive usage documentation:
Clear Space
- Maintain minimum clear space around logo
- Distance = Height of logo symbol
Minimum Sizes
- Digital: 100px width minimum
- Print: 1 inch width minimum
Color Usage
- Use full color on white/light backgrounds
- Use monochrome white on dark backgrounds
- Use monochrome dark on light backgrounds
Incorrect Usage
- Do not stretch or distort the logo
- Do not change colors outside approved palette
- Do not add effects (shadows, glows, etc.)
- Do not rotate or skew the logo
- Do not place on busy backgrounds without clear space
Web Implementation
<!-- Inline SVG (Recommended for control) -->
<svg><!-- SVG code --></svg>
<!-- Image tag (Simpler) -->
<img src="logo.svg" alt="Company Name Logo" />
<!-- CSS Background -->
<style>
.logo {
background-image: url('logo.svg');
background-size: contain;
}
</style>
Export to PNG
# Using Inkscape (Free)
inkscape logo.svg --export-png=logo.png --export-width=1000
# Using ImageMagick
convert -background none logo.svg logo.png
Color Psychology Guide
| Color |
Meaning |
Industries |
| Blue |
Trust, professionalism, stability |
Finance, technology, healthcare |
| Green |
Growth, health, eco-friendly |
Environment, wellness, finance |
| Red |
Energy, passion, urgency |
Food, entertainment, retail |
| Purple |
Creativity, luxury, spirituality |
Beauty, tech, creative |
| Orange |
Friendly, energetic, affordable |
Retail, food, entertainment |
| Yellow |
Optimism, clarity, warmth |
Food, children, energy |
| Black/Gray |
Sophisticated, modern, classic |
Luxury, fashion, technology |
Iteration Process
- Gather Feedback - Which concept resonates most?
- Refine Selected Concept - Adjust colors, proportions, details
- Create Final Variations - All layouts and color variations
- Deliver Final Package - All SVG files + usage guidelines
Deliverables
- SVG Files - All concepts, layouts, and color variations
- Documentation - Usage guidelines, color specs, size recommendations
- Technical Info - Export instructions, web implementation examples
- Optional: Mockups - Logo on business card, website header, product
Great logos are simple, memorable, timeless, versatile, and appropriate. Focus on creating designs that will work across all applications and stand the test of time.
1---2name: svg-logo-designer3description: Create professional SVG logos from descriptions and design specifications. Generates multiple logo variations with different layouts, styles, and concepts. Produces scalable vector graphics that can be used directly or exported to PNG. Use this skill when users ask to create logos, brand identities, icons, or visual marks for their designs.4---56# SVG Logo Designer78This skill creates professional, scalable vector graphic (SVG) logos from design specifications, offering multiple variations and layout options.910## When to Use This Skill1112Activate this skill when the user requests:13- Create a logo from a description or specification14- Design a brand identity or visual mark15- Generate logo variations and concepts16- Create icons or symbols17- Design wordmarks or lettermarks18- Produce scalable graphics for branding19- Export logos in different layouts and styles2021## Core Workflow2223### Phase 1: Requirements Gathering2425When a user requests a logo, gather comprehensive design requirements:26271. **Brand Information**28 - Company/product name29 - Industry and market30 - Target audience31 - Brand personality (modern, classic, playful, serious, etc.)32 - Brand values and messaging33 - Competitors (for differentiation)34352. **Design Preferences**36 - Logo type:37 - **Wordmark**: Text-based logo (Google, Coca-Cola style)38 - **Lettermark**: Initials/abbreviation (IBM, HBO style)39 - **Pictorial Mark**: Icon/symbol (Apple, Twitter style)40 - **Abstract Mark**: Abstract geometric form (Pepsi, Adidas style)41 - **Mascot**: Character-based (KFC Colonel, Michelin Man style)42 - **Combination Mark**: Icon + text (Burger King, Lacoste style)43 - **Emblem**: Text inside symbol (Starbucks, Harley-Davidson style)44453. **Style Guidelines**46 - Color palette (specific colors or let AI choose)47 - Color psychology considerations48 - Font preferences (if text-based)49 - Visual style:50 - Minimalist51 - Geometric52 - Organic/flowing53 - Bold/strong54 - Elegant/refined55 - Playful/friendly56 - Tech/modern57 - Vintage/retro58594. **Technical Requirements**60 - Size constraints (will it be used small? large?)61 - Application contexts (website, print, merchandise, etc.)62 - Color vs monochrome versions needed63 - Background usage (light, dark, transparent)64 - Scalability requirements65665. **Number of Variations**67 - How many different concepts? (Recommend 3-5)68 - How many layouts per concept? (Horizontal, vertical, square, circular)69 - Color variations needed?7071### Phase 2: Design Concept Development7273Create multiple logo concepts based on requirements:7475#### Concept 1: Primary Direction7677Develop the main design direction:7879**Design Thinking:**80- Research visual metaphors related to brand81- Consider negative space opportunities82- Ensure memorability and uniqueness83- Balance simplicity with distinctiveness84- Consider cultural appropriateness8586**SVG Structure:**87```xml88<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">89 <defs>90 <!-- Gradients, patterns, filters -->91 <linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="100%">92 <stop offset="0%" style="stop-color:#4F46E5;stop-opacity:1" />93 <stop offset="100%" style="stop-color:#7C3AED;stop-opacity:1" />94 </linearGradient>95 </defs>9697 <!-- Logo elements -->98 <g id="logo-symbol">99 <!-- Symbol/icon elements -->100 </g>101102 <g id="logo-text">103 <!-- Text elements (if applicable) -->104 </g>105</svg>106```107108#### Concept 2-5: Alternative Directions109110Create variations exploring different visual approaches:111- Different visual metaphors112- Different style treatments113- Different layouts and compositions114- Different color applications115116### Phase 3: Layout Variations117118For each concept, create multiple layout options:119120#### Layout A: Horizontal Lockup121- Icon on left, text on right122- Best for website headers, business cards123- Wider aspect ratio124125#### Layout B: Vertical Lockup126- Icon on top, text below127- Best for social media profiles, app icons128- Taller aspect ratio129130#### Layout C: Square/Centered131- Icon and text centered132- Best for favicon, app icon, profile picture133- 1:1 aspect ratio134135#### Layout D: Icon Only136- Symbol without text137- Best for small sizes, watermarks138- Compact, recognizable139140#### Layout E: Text Only141- Wordmark without icon142- Best for minimal applications143- Typography-focused144145### Phase 4: SVG Generation146147Create professional, optimized SVG code:148149**Best Practices:**1501511. **Clean, Semantic Code**152```xml153<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60">154 <!-- Use groups for organization -->155 <g id="icon">156 <!-- Icon elements -->157 </g>158 <g id="wordmark">159 <!-- Text elements -->160 </g>161</svg>162```1631642. **Scalable Design**165 - Use viewBox for scalability166 - Avoid pixel-specific sizes167 - Use relative units168 - Design at multiple sizes to test1691703. **Color Management**171```xml172<!-- Define colors once, reuse throughout -->173<defs>174 <style>175 .primary { fill: #4F46E5; }176 .secondary { fill: #10B981; }177 .text { fill: #1F2937; }178 </style>179</defs>180181<rect class="primary" x="0" y="0" width="100" height="100" />182```1831844. **Optimization**185 - Remove unnecessary attributes186 - Combine paths where possible187 - Use symbols for repeated elements188 - Minimize decimal precision189 - Remove invisible elements1901915. **Accessibility**192```xml193<svg role="img" aria-labelledby="logo-title logo-desc">194 <title id="logo-title">Company Name Logo</title>195 <desc id="logo-desc">A blue circular icon with the company name</desc>196 <!-- Logo content -->197</svg>198```199200### Phase 5: Presentation201202Present logos in an organized, professional manner:203204```markdown205# Logo Design Concepts206207## Concept 1: [Concept Name/Theme]208209### Design Rationale210[Explain the thinking behind this design, visual metaphors used, and how it represents the brand]211212### Primary Logo (Horizontal)213[SVG code here]214215**Usage:** Headers, website navigation, business cards216**Dimensions:** 200x60px (scalable)217218### Vertical Layout219[SVG code here]220221**Usage:** Social media profiles, mobile apps222**Dimensions:** 100x120px (scalable)223224### Icon Only225[SVG code here]226227**Usage:** Favicon, app icon, small spaces228**Dimensions:** 64x64px (scalable)229230### Color Variations231232**Full Color:**233- Primary: #4F46E5 (Indigo)234- Secondary: #10B981 (Emerald)235236**Monochrome (Dark):**237- Single color: #1F2937 (Gray-900)238239**Monochrome (Light):**240- Single color: #FFFFFF (White)241242**Reversed:**243- For dark backgrounds244```245246### Phase 6: File Generation247248Save SVG files with proper naming:249250```251company-name-logo-concept1-horizontal.svg252company-name-logo-concept1-vertical.svg253company-name-logo-concept1-icon.svg254company-name-logo-concept2-horizontal.svg255```256257Use the Write tool to save each variation.258259### Phase 7: Usage Guidelines260261Provide comprehensive usage documentation:262263## Clear Space264- Maintain minimum clear space around logo265- Distance = Height of logo symbol266267## Minimum Sizes268- **Digital:** 100px width minimum269- **Print:** 1 inch width minimum270271## Color Usage272- Use full color on white/light backgrounds273- Use monochrome white on dark backgrounds274- Use monochrome dark on light backgrounds275276## Incorrect Usage277- Do not stretch or distort the logo278- Do not change colors outside approved palette279- Do not add effects (shadows, glows, etc.)280- Do not rotate or skew the logo281- Do not place on busy backgrounds without clear space282283## Web Implementation284```html285<!-- Inline SVG (Recommended for control) -->286<svg><!-- SVG code --></svg>287288<!-- Image tag (Simpler) -->289<img src="logo.svg" alt="Company Name Logo" />290291<!-- CSS Background -->292<style>293.logo {294 background-image: url('logo.svg');295 background-size: contain;296}297</style>298```299300## Export to PNG301```bash302# Using Inkscape (Free)303inkscape logo.svg --export-png=logo.png --export-width=1000304305# Using ImageMagick306convert -background none logo.svg logo.png307```308309## Color Psychology Guide310311| Color | Meaning | Industries |312|-------|---------|------------|313| **Blue** | Trust, professionalism, stability | Finance, technology, healthcare |314| **Green** | Growth, health, eco-friendly | Environment, wellness, finance |315| **Red** | Energy, passion, urgency | Food, entertainment, retail |316| **Purple** | Creativity, luxury, spirituality | Beauty, tech, creative |317| **Orange** | Friendly, energetic, affordable | Retail, food, entertainment |318| **Yellow** | Optimism, clarity, warmth | Food, children, energy |319| **Black/Gray** | Sophisticated, modern, classic | Luxury, fashion, technology |320321## Iteration Process3223231. **Gather Feedback** - Which concept resonates most?3242. **Refine Selected Concept** - Adjust colors, proportions, details3253. **Create Final Variations** - All layouts and color variations3264. **Deliver Final Package** - All SVG files + usage guidelines327328## Deliverables3293301. **SVG Files** - All concepts, layouts, and color variations3312. **Documentation** - Usage guidelines, color specs, size recommendations3323. **Technical Info** - Export instructions, web implementation examples3334. **Optional: Mockups** - Logo on business card, website header, product334335Great logos are simple, memorable, timeless, versatile, and appropriate. Focus on creating designs that will work across all applications and stand the test of time.