Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Brand Guidelines (Anthropic Style)

A skill that applies Anthropic's official brand colors and typography consistently across documents, slides, and design artifacts.

Design & UIBeginner1,575272AI 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

  1. "Restyle this deck with Anthropic brand styling" → heading/body fonts and brand colors are applied throughout.
  2. "Recolor the accent shapes on the cover in brand accents" → orange, blue, and green are cycled.
  3. "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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open your terminal.
  2. Clone the repository: git clone https://github.com/Prat011/awesome-llm-skills.git
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r awesome-llm-skills/brand-guidelines ~/.claude/skills/
  5. (Optional) Pre-install the Poppins and Lora fonts on your system for best results.
  6. Restart Claude Code and prompt something like "apply the brand guidelines to this document".
  7. For PowerPoint work, install the library: pip install python-pptx.