Brand Guidelines (Anthropic Style)
A skill that applies Anthropic's official brand colors and typography consistently across documents, slides, and design artifacts.
Design & UIBeginner★ 1,575⑂ 272AI score 6/10Last updated: Jul 14, 2026
What it does
- Supplies Anthropic's brand palette with exact HEX values (dark
#141413, light#faf9f5, orange#d97757, blue#6a9bcc, green#788c5d). - Enforces typography rules: Poppins for headings (Arial fallback), Lora for body text (Georgia fallback).
- Treats text at 24pt or larger as headings and picks text color based on background brightness.
- Cycles accent colors (orange → blue → green) across non-text shapes to stay on-brand.
- Uses python-pptx's RGBColor class for precise color fidelity in PowerPoint output.
Who it's for
- Anyone producing decks or reports that must match Anthropic's look and feel.
- Marketers and PMs who want consistent colors and fonts without a designer.
- Developers building pipelines that apply brand identity programmatically.
Example uses
- "Restyle this deck with Anthropic brand styling" → heading/body fonts and brand colors are applied throughout.
- "Recolor the accent shapes on the cover in brand accents" → orange, blue, and green are cycled.
- "Give me the brand HEX codes and font stack for a landing page mockup" → a clean reference list with fallbacks.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/Prat011/awesome-llm-skills/HEAD/brand-guidelines/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the brand-guidelines folder from the GitHub repo Prat011/awesome-llm-skills into my ~/.claude/skills/prat011-brand-guidelines/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/Prat011/awesome-llm-skills.git && mkdir -p ~/.claude/skills && cp -r awesome-llm-skills/brand-guidelines ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open your terminal.
- Clone the repository:
git clone https://github.com/Prat011/awesome-llm-skills.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r awesome-llm-skills/brand-guidelines ~/.claude/skills/ - (Optional) Pre-install the Poppins and Lora fonts on your system for best results.
- Restart Claude Code and prompt something like "apply the brand guidelines to this document".
- For PowerPoint work, install the library:
pip install python-pptx.