Generate scalable vector graphics (SVG) logos with multiple concepts, layouts, and color variations
Generate scalable vector graphics (SVG) logos with multiple concepts, layouts, and color variations.
Create professional SVG logos with multiple design directions, layouts, and color schemes.
viewBox for scalability — never set fixed width/height on the root <svg> element.<title> and <desc> for accessibility — screen readers need these to describe the logo.<defs> — gradients, patterns, and masks go here, not inline.Ask about: brand name, industry, target audience, color preferences, style (modern, classic, playful), logo type (wordmark, icon, combination).
Create 3-5 distinct design directions exploring different visual metaphors and composition styles.
For each selected concept: horizontal, vertical/stacked, square, icon-only, text-only.
Each layout in: full color, monochrome dark, monochrome light, reversed.
<svg viewBox="0 0 [width] [height]" xmlns="http://www.w3.org/2000/svg">
<title>Logo Name</title>
<desc>Brief description for accessibility</desc>
<defs><!-- Gradients, patterns --></defs>
<!-- Logo elements -->
</svg>
```text
### 6. Deliverables
SVG files for each variation, color specs (HEX/RGB), usage guidelines.