Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
AI-powered brand identity skill for generating cohesive brand guidelines, color palettes, and visual identity.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/brand-guideline-template.md
1# Brand Guidelines Template23Use this template to create comprehensive brand guidelines for any project.45## Document Structure67```markdown8# Brand Guidelines v{X.Y}910## Quick Reference11- **Primary Color:** #XXXXXX12- **Secondary Color:** #XXXXXX13- **Primary Font:** {font-family}14- **Voice:** {3 key traits}1516## 1. Color Palette1718### Primary Colors19| Name | Hex | RGB | Usage |20|------|-----|-----|-------|21| {Name} | #{hex} | rgb({r},{g},{b}) | Primary brand color, CTAs, headers |22| {Name} | #{hex} | rgb({r},{g},{b}) | Supporting accent |2324### Secondary Colors25| Name | Hex | RGB | Usage |26|------|-----|-----|-------|27| {Name} | #{hex} | rgb({r},{g},{b}) | Secondary elements |28| {Name} | #{hex} | rgb({r},{g},{b}) | Highlights |2930### Neutral Palette31| Name | Hex | RGB | Usage |32|------|-----|-----|-------|33| Background | #{hex} | rgb({r},{g},{b}) | Page backgrounds |34| Text Primary | #{hex} | rgb({r},{g},{b}) | Body text |35| Text Secondary | #{hex} | rgb({r},{g},{b}) | Captions, muted text |36| Border | #{hex} | rgb({r},{g},{b}) | Dividers, borders |3738### Accessibility39- Text/Background Contrast: {ratio}:1 (WCAG {level})40- CTA Contrast: {ratio}:141- All interactive elements meet WCAG 2.1 AA4243## 2. Typography4445### Font Stack46```css47--font-heading: '{Font}', sans-serif;48--font-body: '{Font}', sans-serif;49--font-mono: '{Font}', monospace;50```5152### Type Scale53| Element | Font | Weight | Size (Desktop/Mobile) | Line Height |54|---------|------|--------|----------------------|-------------|55| H1 | {font} | 700 | 48px / 32px | 1.2 |56| H2 | {font} | 600 | 36px / 28px | 1.25 |57| H3 | {font} | 600 | 28px / 24px | 1.3 |58| H4 | {font} | 600 | 24px / 20px | 1.35 |59| Body | {font} | 400 | 16px / 16px | 1.5 |60| Small | {font} | 400 | 14px / 14px | 1.5 |61| Caption | {font} | 400 | 12px / 12px | 1.4 |6263## 3. Logo Usage6465### Variants66- **Primary:** Full horizontal logo with wordmark67- **Stacked:** Vertical arrangement for square spaces68- **Icon:** Symbol only for favicons, app icons69- **Monochrome:** Single color for limited palettes7071### Clear Space72Minimum clear space = height of logo mark7374### Minimum Size75- Digital: 80px width minimum76- Print: 25mm width minimum7778### Don'ts79- Don't rotate or skew80- Don't change colors outside approved palette81- Don't add effects (shadows, gradients)82- Don't crop or modify proportions83- Don't place on busy backgrounds8485## 4. Voice & Tone8687### Brand Personality88{Trait 1}: {Description}89{Trait 2}: {Description}90{Trait 3}: {Description}9192### Voice Chart93| Trait | We Are | We Are Not |94|-------|--------|------------|95| {Trait} | {Description} | {Anti-description} |9697### Tone by Context98| Context | Tone | Example |99|---------|------|---------|100| Marketing | {tone} | "{example}" |101| Support | {tone} | "{example}" |102| Error Messages | {tone} | "{example}" |103| Success | {tone} | "{example}" |104105### Prohibited Terms106- {term 1} (reason)107- {term 2} (reason)108109## 5. Imagery Guidelines110111### Photography Style112- {Lighting preference}113- {Subject guidelines}114- {Color treatment}115116### Illustrations117- Style: {description}118- Colors: Brand palette only119- Stroke: {weight}px120121### Icons122- Style: {outlined/filled/duotone}123- Size: 24px base grid124- Corner radius: {value}px125```126127## Usage1281291. Copy template above1302. Fill in brand-specific values1313. Save as `docs/brand-guidelines.md`1324. Reference in content workflows133134## Extractable Fields135136Scripts can extract:137- `colors.primary`, `colors.secondary`, `colors.neutral`138- `typography.heading`, `typography.body`139- `voice.traits`, `voice.prohibited`140- `logo.variants`, `logo.minSize`141