This applies a neobrutalism design system to your artifacts with hard shadows, bold colors, and zero border radius. You get orange, yellow, and blue as your primary palette, Geist for headings and EB Garamond for body text, plus the signature 4px offset shadow with no blur. It includes CSS variables, SVG filters, and ready-made social media templates that use ASCII art styling. The style guide is opinionated and specific, which is refreshing if you're tired of rounded corners and soft shadows everywhere. Works across presentations, web interfaces, and graphics, so your brand stays consistent whether you're building a landing page or a slide deck.
npx -y skills add glebis/claude-skills --skill brand-agency --agent claude-codeInstalls into .claude/skills of the current project.
To access Agency's official brand identity and style resources, use this skill. The style is based on neobrutalism aesthetic with bold colors, hard shadows, and strong typography.
Main Colors:
#ffffff - Light backgrounds#000000 - Primary text and dark elements#e5e5e5 - Subtle backgrounds, secondary elementsPrimary Palette:
#e85d04 - Main accent, CTAs, highlights#ffd60a - Secondary accent, warnings, attention#3a86ff - Links, interactive elements, infoChart/Extended Colors:
#38b000 - Success states, positive indicators#d62828 - Error states, destructive actionsFont Stack:
Google Fonts Import:
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Geist:wght@800&family=Geist+Mono:wght@400;500&display=swap');
CSS Variables:
:root {
--font-body: 'EB Garamond', Georgia, serif;
--font-heading: 'Geist', Arial, sans-serif;
--font-mono: 'Geist Mono', 'Courier New', monospace;
}
Shadows:
4px 4px 0px 0px #000000box-shadow: 4px 4px 0px 0px #000000;<feDropShadow dx="4" dy="4" stdDeviation="0" flood-color="#000000"/>Borders:
#000000Key Principles:
To create SVG in Agency brand style:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400">
<defs>
<filter id="shadow" x="-20%" y="-20%" width="150%" height="150%">
<feDropShadow dx="4" dy="4" stdDeviation="0" flood-color="#000000" flood-opacity="1"/>
</filter>
</defs>
<circle cx="200" cy="200" r="80"
fill="#e85d04"
stroke="#000000"
stroke-width="3"
filter="url(#shadow)"/>
</svg>
Slide backgrounds by type:
#e85d04#ffffff or Muted #e5e5e5#ffd60a, Accent Blue #3a86ff#000000Text colors:
#000000#ffffff:root {
/* Colors */
--color-background: #ffffff;
--color-foreground: #000000;
--color-primary: #e85d04;
--color-secondary: #ffd60a;
--color-accent: #3a86ff;
--color-success: #38b000;
--color-error: #d62828;
--color-muted: #e5e5e5;
/* Typography */
--font-body: 'EB Garamond', Georgia, serif;
--font-heading: 'Geist', Arial, sans-serif;
--font-mono: 'Geist Mono', 'Courier New', monospace;
/* Shadows */
--shadow: 4px 4px 0px 0px #000000;
--shadow-sm: 2px 2px 0px 0px #000000;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 800;
}
/* Body */
body {
font-family: var(--font-body);
color: var(--color-foreground);
background: var(--color-background);
}
/* Buttons */
.btn {
background: var(--color-primary);
color: white;
border: 3px solid var(--color-foreground);
box-shadow: var(--shadow);
border-radius: 0;
font-family: var(--font-heading);
font-weight: 800;
}
/* Cards */
.card {
background: var(--color-background);
border: 3px solid var(--color-foreground);
box-shadow: var(--shadow);
border-radius: 0;
}
/* Code */
code, pre {
font-family: var(--font-mono);
background: var(--color-foreground);
color: white;
border: 3px solid var(--color-foreground);
}
| Context | Color | Hex |
|---|---|---|
| Primary action | Orange | #e85d04 |
| Secondary action | Yellow | #ffd60a |
| Links/Info | Blue | #3a86ff |
| Success | Green | #38b000 |
| Error/Danger | Red | #d62828 |
| Text (light bg) | Black | #000000 |
| Text (dark bg) | White | #ffffff |
| Muted/Disabled | Gray | #e5e5e5 |
Logo: assets/logo.svg - Agency logo in neobrutalism style (terminal window with code symbols and geometric shapes)
ASCII-art style HTML templates for social media using Geist Mono font. Render to PNG using Playwright.
| Template | Size | Platform |
|---|---|---|
instagram/story-announcement | 1080x1920 | IG Story |
instagram/story-quote | 1080x1920 | IG Story |
instagram/post-title | 1080x1350 | IG Post |
instagram/post-tips | 1080x1350 | IG Post |
instagram/post-event | 1080x1350 | IG Post |
youtube/thumbnail | 1280x720 | YT Thumbnail |
youtube/shorts-cover | 1080x1920 | YT Shorts |
social/cover-banner | 1584x396 | LinkedIn/FB |
social/tiktok | 1080x1920 | TikTok |
social/twitter-post | 1200x675 | X/Twitter |
social/pinterest-pin | 1000x1500 |
# Render all templates
node scripts/render-templates.js
# Render specific template
node scripts/render-templates.js --template instagram/story-announcement
# Custom output path
node scripts/render-templates.js -t youtube/thumbnail -o my-thumbnail.png
# List available templates
node scripts/render-templates.js --list
Templates use ASCII box-drawing characters for decoration:
Frames: ┌─────┐ ╔═════╗ ┏━━━━━┓
│ │ ║ ║ ┃ ┃
└─────┘ ╚═════╝ ┗━━━━━┛
Lines: ─ │ ═ ║ ━ ┃
Arrows: → ← ↑ ↓ ▶ ◀ ▲ ▼
Shapes: ● ○ ■ □ ▲ △ ★ ☆ ◆ ◇
Blocks: █ ▓ ▒ ░
Located in: assets/templates/