svg-logo-creator

安装量: 44
排名: #16761

安装

npx skills add https://github.com/kbravh/skills --skill svg-logo-creator
SVG Logo Creator
Create professional, scalable SVG logos from concept briefs or descriptions.
Input Requirements
Before creating, gather or confirm:
Text
Exact company/brand name and any tagline
Logo type
Wordmark, lettermark, pictorial, abstract, combination, or emblem
Visual concept
Core imagery, metaphor, or style direction
Colors
Primary and secondary colors (hex values preferred)
Typography direction
Modern/classic, geometric/humanist, bold/light If working from a logo-ideation concept brief, these details should already be specified. Creation Workflow 1. Plan the Design Before writing SVG code: Sketch the basic shapes mentally Identify reusable elements (define once, reference with ) Plan the viewBox dimensions (typically 100x100 or proportional) Determine color palette as CSS custom properties 2. Create Primary Logo Write clean, semantic SVG: < svg xmlns = " http://www.w3.org/2000/svg " viewBox = " 0 0 200 60 " role = " img " aria-label = " Company Name logo "

< style

:root { --primary :

2563eb

; --secondary :

1e40af

; --text :

0f172a

; } </ style

< defs

</ defs

</ svg

  1. Generate Variations Create these standard variations: Variation Use case Notes Primary/horizontal Default, wide spaces Full logo with icon and text side-by-side Stacked/vertical Square spaces, mobile Icon above text Icon-only Favicons, app icons, small spaces Symbol without text Wordmark-only When icon context is established Text without symbol Monochrome Single-color contexts Black or white version Inverted Dark backgrounds Light colors for dark bg
  2. Save Files Use consistent naming: logo-primary.svg logo-stacked.svg logo-icon.svg logo-wordmark.svg logo-mono-black.svg logo-mono-white.svg logo-inverted.svg SVG Best Practices Structure Use viewBox for scalability, never fixed width/height Define colors as CSS custom properties in