# Marp 2 Frontmatter Configuration

> Sub-skill of marp: 2. Frontmatter Configuration (+4).

- Skill: `vamseeachanta/marp-2-frontmatter-configuration` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/marp-2-frontmatter-configuration`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/marp-2-frontmatter-configuration/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/marp-2-frontmatter-configuration

---


# 2. Frontmatter Configuration (+4)

## 2. Frontmatter Configuration


```markdown
---
marp: true
title: Project Presentation
description: Quarterly review for Q4 2025
author: Your Name
theme: default
paginate: true
header: 'Company Name'
footer: 'Confidential - Internal Use Only'

*See sub-skills for full details.*

## 3. Themes and Styling


```markdown
---
marp: true
theme: default
---

<!-- Available built-in themes: default, gaia, uncover -->

# Default Theme


*See sub-skills for full details.*

## 4. Custom CSS Theme


```css
/* themes/custom.css */

/* @theme custom-theme */
@import 'default';

section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-family: 'Inter', sans-serif;

*See sub-skills for full details.*

## 5. Directives and Classes


```markdown
---
marp: true
---

<!-- Local directive (applies to current slide only) -->
<!-- _class: lead -->
<!-- _backgroundColor: #2563eb -->
<!-- _color: white -->


*See sub-skills for full details.*

## 6. Speaker Notes


```markdown
---
marp: true
---

# Presentation Title

Overview of topics

<!--

*See sub-skills for full details.*

