rknall

SVG Logo Designer

13
3
# Install this skill:
npx skills add rknall/claude-skills --skill "SVG Logo Designer"

Install specific skill from multi-skill repository

# Description

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.

# SKILL.md


name: "SVG Logo Designer"
description: "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."


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:

  1. Brand Information
  2. Company/product name
  3. Industry and market
  4. Target audience
  5. Brand personality (modern, classic, playful, serious, etc.)
  6. Brand values and messaging
  7. Competitors (for differentiation)

  8. Design Preferences

  9. 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)
  10. Style Guidelines

  11. Color palette (specific colors or let AI choose)
  12. Color psychology considerations
  13. Font preferences (if text-based)
  14. Visual style:

    • Minimalist
    • Geometric
    • Organic/flowing
    • Bold/strong
    • Elegant/refined
    • Playful/friendly
    • Tech/modern
    • Vintage/retro
  15. Technical Requirements

  16. Size constraints (will it be used small? large?)
  17. Application contexts (website, print, merchandise, etc.)
  18. Color vs monochrome versions needed
  19. Background usage (light, dark, transparent)
  20. Scalability requirements

  21. Number of Variations

  22. How many different concepts? (Recommend 3-5)
  23. How many layouts per concept? (Horizontal, vertical, square, circular)
  24. 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:

  1. 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>
  1. Scalable Design
  2. Use viewBox for scalability
  3. Avoid pixel-specific sizes
  4. Use relative units
  5. Design at multiple sizes to test

  6. 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" />
  1. Optimization
  2. Remove unnecessary attributes
  3. Combine paths where possible
  4. Use symbols for repeated elements
  5. Minimize decimal precision
  6. Remove invisible elements

  7. 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)
```xml
<svg><!-- SVG code here --></svg>

Usage: Headers, website navigation, business cards
Dimensions: 200×60px (scalable)

Vertical Layout

<svg><!-- SVG code here --></svg>

Usage: Social media profiles, mobile apps
Dimensions: 100×120px (scalable)

Icon Only

<svg><!-- SVG code here --></svg>

Usage: Favicon, app icon, small spaces
Dimensions: 64×64px (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


Concept 2: [Concept Name/Theme]

[Repeat structure for additional concepts]

### Phase 6: File Generation

Save SVG files with proper naming:

```javascript
// File naming convention
company-name-logo-concept1-horizontal.svg
company-name-logo-concept1-vertical.svg
company-name-logo-concept1-icon.svg
company-name-logo-concept2-horizontal.svg
// etc.

Use the Write tool to save each variation:

// Example
Write({
  file_path: "./logos/acme-logo-concept1-horizontal.svg",
  content: svgCode
});

Phase 7: Usage Guidelines

Provide comprehensive usage documentation:

# Logo Usage Guidelines

## File Formats Provided

### SVG (Scalable Vector Graphics)
- **Use for:** Websites, digital applications, large prints
- **Benefits:** Infinitely scalable, small file size, editable
- **How to use:** Embed directly in HTML or open in design tools

### Exporting to PNG
If you need PNG format:

**Option 1: Using Inkscape (Free)**
```bash
inkscape logo.svg --export-png=logo.png --export-width=1000

Option 2: Using ImageMagick

convert -background none logo.svg logo.png

Option 3: Online Converter
- Visit: https://cloudconvert.com/svg-to-png
- Upload SVG, download PNG

Clear Space

Maintain minimum clear space around logo:
- Distance = Height of logo symbol
- No text or graphics in clear space

Minimum Sizes

  • Digital: 100px width minimum
  • Print: 1 inch width minimum

Color Usage

Primary Color Palette

  • Use full color on white/light backgrounds
  • Use monochrome white on dark backgrounds
  • Use monochrome dark on light backgrounds

Color Variations by Context

Website Headers:
- Full color version preferred
- Ensure 4.5:1 contrast with background

Social Media:
- Use square/circular crops
- Provide background color if needed

Print Materials:
- Full color for color printing
- Monochrome black for B&W printing
- Consider spot color for cost-effective printing

Incorrect Usage

❌ Do Not:
- Stretch or distort the logo
- Change colors outside approved palette
- Add effects (shadows, glows, etc.)
- Rotate or skew the logo
- Place on busy backgrounds without clear space
- Recreate or modify logo elements

File Organization

logos/
  concept-1/
    horizontal/
      full-color.svg
      monochrome-dark.svg
      monochrome-light.svg
    vertical/
      [same variations]
    icon/
      [same variations]
  concept-2/
    [same structure]

Technical Specifications

Web Usage

<!-- Inline SVG (Recommended for control) -->
<svg><!-- SVG code --></svg>

<!-- Image tag (Simpler) -->
<img src="logo.svg" alt="Company Name Logo" />

<!-- CSS Background -->
.logo {
  background-image: url('logo.svg');
  background-size: contain;
}

Responsive Implementation

.logo {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    max-width: 150px;
  }
}
## Design Patterns & Examples

### Wordmark Logo

```xml
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 80">
  <defs>
    <style>
      .wordmark {
        font-family: 'Helvetica', sans-serif;
        font-size: 48px;
        font-weight: 700;
        fill: #1F2937;
      }
    </style>
  </defs>
  <text x="10" y="60" class="wordmark">COMPANY</text>
</svg>

Geometric Icon

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
  <defs>
    <linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4F46E5" />
      <stop offset="100%" style="stop-color:#7C3AED" />
    </linearGradient>
  </defs>

  <!-- Hexagon shape -->
  <polygon
    points="50,5 95,27.5 95,72.5 50,95 5,72.5 5,27.5"
    fill="url(#grad)"
    stroke="#312E81"
    stroke-width="2"
  />

  <!-- Inner element -->
  <circle cx="50" cy="50" r="20" fill="#FFFFFF" />
</svg>

Abstract Mark

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
  <!-- Flowing abstract shape -->
  <path
    d="M10,50 Q30,20 50,50 T90,50 Q70,80 50,50 T10,50 Z"
    fill="#10B981"
    opacity="0.8"
  />
  <path
    d="M15,55 Q35,25 55,55 T95,55"
    fill="none"
    stroke="#059669"
    stroke-width="3"
    stroke-linecap="round"
  />
</svg>

Combination Mark

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 80">
  <!-- Icon -->
  <g id="icon">
    <circle cx="40" cy="40" r="30" fill="#4F46E5" />
    <path d="M30,35 L35,45 L50,25" stroke="#FFFFFF" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round" />
  </g>

  <!-- Text -->
  <g id="text">
    <text x="85" y="45" font-family="Arial, sans-serif" font-size="28" font-weight="700" fill="#1F2937">
      COMPANY
    </text>
  </g>
</svg>

Color Psychology Guide

Help users choose appropriate colors:

Blue (#0066CC, #4F46E5)
- Trust, professionalism, stability
- Industries: Finance, technology, healthcare

Green (#10B981, #059669)
- Growth, health, eco-friendly
- Industries: Environment, wellness, finance

Red (#DC2626, #EF4444)
- Energy, passion, urgency
- Industries: Food, entertainment, retail

Purple (#7C3AED, #8B5CF6)
- Creativity, luxury, spirituality
- Industries: Beauty, tech, creative

Orange (#F97316, #FB923C)
- Friendly, energetic, affordable
- Industries: Retail, food, entertainment

Yellow (#FBBF24, #FCD34D)
- Optimism, clarity, warmth
- Industries: Food, children, energy

Black/Gray (#1F2937, #6B7280)
- Sophisticated, modern, classic
- Industries: Luxury, fashion, technology

Iteration Process

After presenting initial concepts:

  1. Gather Feedback
  2. Which concept resonates most?
  3. What elements to keep/change?
  4. Any concerns or issues?

  5. Refine Selected Concept

  6. Adjust colors if needed
  7. Tweak proportions
  8. Refine details
  9. Test at different sizes

  10. Create Final Variations

  11. All layout options
  12. All color variations
  13. Special use cases

  14. Deliver Final Package

  15. All SVG files
  16. Usage guidelines
  17. Technical specs
  18. Export instructions

Communication Style

When working with users:

  1. Understand the Brand
  2. Ask about brand personality
  3. Understand target audience
  4. Research industry context

  5. Explain Design Choices

  6. Share rationale for visual metaphors
  7. Explain color psychology
  8. Justify composition decisions

  9. Provide Options

  10. Offer multiple concepts
  11. Show layout variations
  12. Demonstrate color options

  13. Be Flexible

  14. Accept feedback gracefully
  15. Iterate based on input
  16. Explain limitations when necessary

  17. Educate

  18. Explain SVG benefits
  19. Guide on proper usage
  20. Share best practices

Deliverables

Provide complete logo package:

  1. SVG Files
  2. All concepts (3-5)
  3. All layouts per concept (3-5)
  4. All color variations (3-4)
  5. Total: 30-75 files typically

  6. Documentation

  7. Usage guidelines
  8. Color specifications
  9. Size recommendations
  10. Do's and don'ts

  11. Technical Info

  12. File organization structure
  13. Export instructions (SVG to PNG)
  14. Web implementation examples
  15. Print specifications

  16. Optional: Mockups

  17. Logo on business card
  18. Logo on website header
  19. Logo on product
  20. Logo on signage

Example Workflow

User Request:

"Create a logo for my tech startup called 'CloudSync'. We provide cloud storage solutions. Looking for something modern and trustworthy."

Your Response:

  1. Clarify:
  2. "I'll create a modern, tech-focused logo for CloudSync. A few questions:

    • Preferred colors? (Suggesting blue for trust, or let me propose a palette)
    • Logo type preference? (I'm thinking combination mark - icon + text)
    • Any visual elements to avoid or include? (clouds, sync symbols, etc.)
    • How many concepts would you like to see? (I recommend 3-4)"
  3. Develop Concepts:

  4. Concept 1: Abstract cloud with sync arrows, modern geometric style
  5. Concept 2: Minimalist wordmark with stylized 'C' incorporating cloud
  6. Concept 3: Circular badge with cloud and connection nodes
  7. Concept 4: Bold lettermark 'CS' with cloud integration

  8. Create Variations:

  9. For each concept: horizontal, vertical, icon-only layouts
  10. Color variations: full color, monochrome, reversed

  11. Present:

  12. Show all concepts with rationale
  13. Provide SVG code for each
  14. Include usage guidelines
  15. Offer iteration based on feedback

  16. Refine:

  17. User selects favorite concept
  18. Make requested adjustments
  19. Finalize all variations
  20. Deliver complete package

Remember: 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!

# Supported AI Coding Agents

This skill is compatible with the SKILL.md standard and works with all major AI coding agents:

Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.