SVG Logo Designer
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.
What this skill does
# 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**
- Company/product name
- Industry and market
- Target audience
- Brand personality (modern, classic, playful, serious, etc.)
- Brand values and messaging
- Competitors (for differentiation)
2. **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)
3. **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
4. **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
5. **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:**
```xml
<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**
```xml
<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>
```
2. **Scalable Design**
- Use viewBox for scalability
- Avoid pixel-specific sizes
- Use relative units
- Design at multiple sizes to test
3. **Color Management**
```xml
<!-- 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" />
```
4. **Optimization**
- Remove unnecessary attributes
- Combine paths where possible
- Use symbols for repeated elements
- Minimize decimal precision
- Remove invisible elements
5. **Accessibility**
```xml
<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:
```markdown
# 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
```xml
<svg><!-- SVG code here --></svg>
```
**Usage:** Social media profiles, mobile apps
**Dimensions:** 100×120px (scalable)
### Icon Only
```xml
<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:
```javascript
// Example
Write({
file_path: "./logos/acme-logo-concept1-horizontal.svg",
content: svgCode
});
```
### Phase 7: Usage Guidelines
Provide comprehensive usage documentation:
```markdown
# 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**
```bash
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
**SocRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".