Generator

Brand Kit Generator

Build a brand kit with primary/secondary/accent colors and font choices. Exports Markdown guidelines + design tokens.

Brand kit guidelines
# Acme Brand Kit

## Colors
- **Primary:** #2563eb
- **Secondary:** #0f172a
- **Accent:** #f59e0b

## Typography
- **Headings:** Inter
- **Body:** Inter

## Voice
- _TODO: add tone, voice attributes_

## Logo usage
- _TODO: minimum size, clear space, color variants_

## Don't
- _TODO: examples of misuse_
Design tokens
// design-tokens.ts
export const tokens = {
  color: {
    primary: '#2563eb',
    secondary: '#0f172a',
    accent: '#f59e0b',
  },
  font: {
    heading: 'Inter',
    body: 'Inter',
  },
};