Back to skills
SkillHub ClubDesign ProductFull StackDesigner

craftedwell-brand

CraftedWell brand guidelines for presentations and documents. Use this skill whenever creating or styling documents (docx, pdf) or presentations (pptx) for CraftedWell. Apply warm, artisanal aesthetic with chocolate/caramel color palette, Georgia headings, and Arial body text.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
836
Hot score
99
Updated
March 20, 2026
Overall rating
C4.4
Composite score
4.4
Best-practice grade
B75.1

Install command

npx @skill-hub/cli install https-deeplearning-ai-sc-agent-skills-files-craftedwell-brand

Repository

https-deeplearning-ai/sc-agent-skills-files

Skill path: L3/brand_guidelines_skill/craftedwell-brand

CraftedWell brand guidelines for presentations and documents. Use this skill whenever creating or styling documents (docx, pdf) or presentations (pptx) for CraftedWell. Apply warm, artisanal aesthetic with chocolate/caramel color palette, Georgia headings, and Arial body text.

Open repository

Best for

Primary workflow: Design Product.

Technical facets: Full Stack, Designer.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: https-deeplearning-ai.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install craftedwell-brand into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/https-deeplearning-ai/sc-agent-skills-files before adding craftedwell-brand to shared team environments
  • Use craftedwell-brand for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: craftedwell-brand
description: CraftedWell brand guidelines for presentations and documents. Use this skill whenever creating or styling documents (docx, pdf) or presentations (pptx) for CraftedWell. Apply warm, artisanal aesthetic with chocolate/caramel color palette, Georgia headings, and Arial body text.
---

# CraftedWell Brand Guidelines

Apply CraftedWell's warm, artisanal brand to documents and presentations.

## Quick Reference

**Colors:**
- Primary text: Dark Chocolate `#3D2314`
- Headings: Chocolate `#5A2C10`
- Secondary: Cocoa `#8B4A24`
- Highlights: Caramel `#C07F43`, Soft Gold `#D4A45A`
- Backgrounds: Cream `#FDF8F3`, White `#FFFFFF`
- Borders: `#E5D5C5`

**Typography:**
- Headings: Georgia Bold
- Body: Arial

**Logos:** See `assets/` — use `logo-primary.png` on light backgrounds, `logo-reversed.png` on Dark Chocolate backgrounds only.

For complete specifications, read [`references/brand-guide.md`](references/brand-guide.md).

---

## Document Creation (docx)

Use with the `docx` skill. Apply these styles:

```javascript
// CraftedWell document styles for docx-js
const BRAND = {
  colors: {
    darkChocolate: "3D2314",
    chocolate: "5A2C10",
    cocoa: "8B4A24",
    caramel: "C07F43",
    cream: "FDF8F3",
    border: "E5D5C5"
  }
};

// Heading styles
paragraphStyles: [
  { id: "Heading1", name: "Heading 1", basedOn: "Normal", next: "Normal", quickFormat: true,
    run: { size: 36, bold: true, font: "Georgia", color: BRAND.colors.chocolate },
    paragraph: { spacing: { before: 240, after: 120 }, outlineLevel: 0 } },
  { id: "Heading2", name: "Heading 2", basedOn: "Normal", next: "Normal", quickFormat: true,
    run: { size: 28, bold: true, font: "Georgia", color: BRAND.colors.cocoa },
    paragraph: { spacing: { before: 200, after: 100 }, outlineLevel: 1 } },
  { id: "Heading3", name: "Heading 3", basedOn: "Normal", next: "Normal", quickFormat: true,
    run: { size: 24, bold: true, font: "Arial", color: BRAND.colors.darkChocolate },
    paragraph: { spacing: { before: 160, after: 80 }, outlineLevel: 2 } }
]

// Default body style
default: { document: { run: { font: "Arial", size: 22, color: BRAND.colors.darkChocolate } } }

// Table header
shading: { fill: BRAND.colors.chocolate, type: ShadingType.CLEAR }
// with white text: color: "FFFFFF"

// Table body rows: alternate White and Cream
shading: { fill: BRAND.colors.cream, type: ShadingType.CLEAR }
```

**Page setup:** Letter size (12240 × 15840 DXA), 1" margins (1440 DXA), 1.15 line spacing.

---

## Presentation Creation (pptx)

Use with the `pptx` skill and html2pptx workflow. Apply these CSS variables:

```css
/* CraftedWell brand variables for html2pptx */
:root {
  /* Primary palette */
  --dark-chocolate: #3D2314;
  --chocolate: #5A2C10;
  --cocoa: #8B4A24;
  --caramel: #C07F43;
  --soft-gold: #D4A45A;
  --cream: #FDF8F3;
  --border: #E5D5C5;
  
  /* Semantic */
  --forest: #5A7A4A;
  --terracotta: #B85C38;
  --slate: #6B6B6B;
  
  /* Typography */
  --font-display: Georgia, serif;
  --font-body: Arial, sans-serif;
  
  /* Text colors */
  --text-primary: var(--dark-chocolate);
  --text-heading: var(--chocolate);
  --text-secondary: var(--cocoa);
  
  /* Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: var(--cream);
  --bg-dark: var(--dark-chocolate);
}

/* Base styles */
body { font-family: var(--font-body); color: var(--text-primary); background: var(--bg-primary); }
h1, h2, h3 { font-family: var(--font-display); color: var(--text-heading); font-weight: bold; }

/* Slide titles: 32-44pt Georgia Bold in Chocolate */
.slide-title { font-size: 36px; font-family: var(--font-display); color: var(--chocolate); font-weight: bold; }

/* Section divider: Dark Chocolate background, white text */
.section-divider { background: var(--bg-dark); color: white; }

/* Accent bar: 8px Chocolate bar on left of content slides */
.accent-bar { width: 8px; background: var(--chocolate); }

/* Cards: Cream background, 6-8px rounded corners */
.card { background: var(--cream); border-radius: 6px; }

/* Quote slides: Cream background, Caramel quote mark */
.quote-mark { color: var(--caramel); font-size: 72px; font-family: var(--font-display); }
.quote-text { font-family: var(--font-display); font-style: italic; color: var(--text-primary); }
```

### Slide Layout Guidance

| Slide Type | Background | Key Styling |
|------------|------------|-------------|
| Title | White | Centered title (Georgia Bold 44pt), horizontal logo at bottom |
| Section | Dark Chocolate (#3D2314) | White text, centered |
| Content | White | 8px Chocolate accent bar left, title top-left |
| Quote | Cream | Large Caramel quote mark, italic Georgia text |
| Closing | Dark Chocolate | "Thank You" white, reversed logo |

### Charts

Use brand colors in order: Chocolate, Cocoa, Caramel, Soft Gold, Dark Chocolate.
For positive/negative: Forest (#5A7A4A) / Terracotta (#B85C38).

---

## Tables (All Formats)

| Part | Style |
|------|-------|
| Header | Chocolate (#5A2C10) background, white bold Arial text |
| Body | Alternating White / Cream (#FDF8F3) rows |
| Borders | 1pt #E5D5C5, horizontal only |
| Alignment | Text left, numbers right |


---

## Referenced Files

> The following files are referenced in this skill and included for context.

### references/brand-guide.md

```markdown
# CraftedWell Brand Reference

**Tagline:** "Crafted with care, savored with joy."

**Brand Pillars:** Artisanal Quality, Warm & Inviting, Simple Elegance

---

## Colors

### Primary Colors (use for text and main UI)
| Name | Hex | Use |
|------|-----|-----|
| Dark Chocolate | `#3D2314` | Body text, dark backgrounds |
| Chocolate | `#5A2C10` | Headings, primary accents |
| Cocoa | `#8B4A24` | Secondary text, subtle accents |

### Accent Colors (highlights and decorative)
| Name | Hex | Use |
|------|-----|-----|
| Caramel | `#C07F43` | Highlights, decorative elements |
| Soft Gold | `#D4A45A` | Premium accents, gradients |
| Cream | `#FDF8F3` | Backgrounds, cards |
| White | `#FFFFFF` | Page/slide backgrounds |

### Supporting Colors
| Name | Hex | Use |
|------|-----|-----|
| Muted Cream | `#F5EDE5` | Muted backgrounds |
| Border | `#E5D5C5` | Borders, dividers |

### Semantic Colors
| Name | Hex | Use |
|------|-----|-----|
| Forest | `#5A7A4A` | Positive, success, growth |
| Terracotta | `#B85C38` | Negative, warnings, decline |
| Slate | `#6B6B6B` | Neutral, N/A |

### Chart Colors (use in order)
1. Chocolate (#5A2C10)
2. Cocoa (#8B4A24)
3. Caramel (#C07F43)
4. Soft Gold (#D4A45A)
5. Dark Chocolate (#3D2314)

For positive/negative in charts: Forest (#5A7A4A) and Terracotta (#B85C38)

### Contrast Guide
| Combination | Ratio | Allowed |
|-------------|-------|---------|
| Dark Chocolate on White/Cream | 12:1 | ✓ Body text |
| Chocolate on White | 9:1 | ✓ Headings |
| White on Dark Chocolate | 12:1 | ✓ Reversed text |
| Caramel on White | 3:1 | Large text only |
| Soft Gold on White | 2:1 | Decorative only |

---

## Typography

**Display Font:** Georgia (serif) — titles, headings, quotes
**Body Font:** Arial (sans-serif) — body text, captions, labels

### Document Styles (Word/PDF)
| Level | Font | Size | Color |
|-------|------|------|-------|
| Title | Georgia Bold | 24pt | Chocolate (#5A2C10) |
| Heading 1 | Georgia Bold | 18pt | Chocolate (#5A2C10) |
| Heading 2 | Georgia Bold | 14pt | Cocoa (#8B4A24) |
| Heading 3 | Arial Bold | 12pt | Dark Chocolate (#3D2314) |
| Body | Arial | 11pt | Dark Chocolate (#3D2314) |
| Caption | Arial | 9pt | Cocoa (#8B4A24) |

### Presentation Styles (PowerPoint)
| Element | Font | Size |
|---------|------|------|
| Slide Title | Georgia Bold | 32–44pt |
| Section Header | Georgia Bold | 18–24pt |
| Body | Arial | 12–14pt |
| Caption/Label | Arial | 9–11pt |

---

## Logos

Three logo versions in `assets/`:

| File | Use Case |
|------|----------|
| `logo-primary.png` | White/light backgrounds |
| `logo-horizontal.png` | Headers, footers |
| `logo-reversed.png` | Dark Chocolate backgrounds only |

**Rules:**
- Clear space: height of "C" mark on all sides
- Minimum size: 80px width (digital), 0.75" (print)
- Never stretch, distort, add effects, or place on busy backgrounds

---

## Document Layout (Word/PDF)

- **Margins:** 1" all sides
- **Page size:** Letter (8.5" × 11")
- **Line spacing:** 1.15

### Element Styles
| Element | Style |
|---------|-------|
| Header | Horizontal logo left, page number right |
| Footer | Tagline or document title, Arial 9pt, Cocoa |
| Lists | Chocolate bullet/number, 0.25" indent |
| Block quotes | Cream background, Cocoa left border (3pt), italic |
| Hyperlinks | Cocoa, underlined |

---

## Presentation Layout (PowerPoint)

### Slide Types
| Layout | Background | Elements |
|--------|------------|----------|
| Title | White | Centered title, subtitle, horizontal logo bottom |
| Section Divider | Dark Chocolate | White text, centered |
| Content | White | Left accent bar (Chocolate, 8px), title top-left |
| Two Column | White | Side-by-side cards with Cream backgrounds |
| Data & Charts | White | Chart (2/3 width), metrics sidebar (1/3) |
| Quote | Cream | Caramel quotation mark, centered italic Georgia |
| Three Cards | White | Numbered circles in brand colors |
| Closing | Dark Chocolate | "Thank You" in white, reversed logo |

---

## Tables (All Formats)

| Element | Style |
|---------|-------|
| Header row | Chocolate background (#5A2C10), white text, Arial bold |
| Body rows | Alternating White and Cream |
| Borders | 1pt Border color (#E5D5C5), horizontal only |
| Alignment | Text left, numbers right |

---

## Visual Style

**Do:**
- White or Cream backgrounds
- Warm photography with natural lighting
- Rounded corners (6–8px) on cards and images
- Generous margins

**Don't:**
- Bright saturated colors
- Overcrowded layouts
- Heavy shadows or 3D effects
- Cold or blue-toned photography

---

## Voice & Tone

- Warm and approachable
- Clear and concise
- Avoid jargon and excessive punctuation

```

craftedwell-brand | SkillHub