Frontend Slides
Create zero-dependency, animation-rich HTML presentations that run entirely in the browser.
Core Principles
- Zero Dependencies — Single HTML files with inline CSS/JS. No npm, no build tools.
- Show, Don't Tell — Generate visual previews, not abstract choices. People discover what they want by seeing it.
- Distinctive Design — No generic "AI slop." Every presentation must feel custom-crafted.
- Viewport Fitting (NON-NEGOTIABLE) — Every slide MUST fit exactly within 100vh. No scrolling within slides, ever. Content overflows? Split into multiple slides.
Design Aesthetics
You tend to converge toward generic, "on distribution" outputs. In frontend design, this creates what users call the "AI slop" aesthetic. Avoid this: make creative, distinctive frontends that surprise and delight.
Focus on:
- Typography: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics.
- Color & Theme: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes. Draw from IDE themes and cultural aesthetics for inspiration.
- Motion: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions.
- Backgrounds: Create atmosphere and depth rather than defaulting to solid colors. Layer CSS gradients, use geometric patterns, or add contextual effects that match the overall aesthetic.
Avoid generic AI-generated aesthetics:
- Overused font families (Inter, Roboto, Arial, system fonts)
- Cliched color schemes (particularly purple gradients on white backgrounds)
- Predictable layouts and component patterns
- Cookie-cutter design that lacks context-specific character
Interpret creatively and make unexpected choices that feel genuinely designed for the context. Vary between light and dark themes, different fonts, different aesthetics. You still tend to converge on common choices (Space Grotesk, for example) across generations. Avoid this: it is critical that you think outside the box!
Viewport Fitting Rules
These invariants apply to EVERY slide in EVERY presentation:
- Every
.slide must have height: 100vh; height: 100dvh; overflow: hidden;
- ALL font sizes and spacing must use
clamp(min, preferred, max) — never fixed px/rem
- Content containers need
max-height constraints
- Images:
max-height: min(50vh, 400px)
- Breakpoints required for heights: 700px, 600px, 500px
- Include
prefers-reduced-motion support
- Never negate CSS functions directly (
-clamp(), -min(), -max() are silently ignored) — use calc(-1 * clamp(...)) instead
When generating, read viewport-base.css and include its full contents in every presentation.
Content Density Limits Per Slide
| Slide Type |
Maximum Content |
| Title slide |
1 heading + 1 subtitle + optional tagline |
| Content slide |
1 heading + 4-6 bullet points OR 1 heading + 2 paragraphs |
| Feature grid |
1 heading + 6 cards maximum (2x3 or 3x2) |
| Code slide |
1 heading + 8-10 lines of code |
| Quote slide |
1 quote (max 3 lines) + attribution |
| Image slide |
1 heading + 1 image (max 60vh height) |
Content exceeds limits? Split into multiple slides. Never cram, never scroll.
Phase 0: Detect Mode
Determine what the user wants:
- Mode A: New Presentation — Create from scratch. Go to Phase 1.
- Mode B: PPT Conversion — Convert a .pptx file. Go to Phase 4.
- Mode C: Enhancement — Improve an existing HTML presentation. Read it, understand it, enhance. Follow Mode C modification rules below.
Mode C: Modification Rules
When enhancing existing presentations, viewport fitting is the biggest risk:
- Before adding content: Count existing elements, check against density limits
- Adding images: Must have
max-height: min(50vh, 400px). If slide already has max content, split into two slides
- Adding text: Max 4-6 bullets per slide. Exceeds limits? Split into continuation slides
- After ANY modification, verify:
.slide has overflow: hidden, new elements use clamp(), images have viewport-relative max-height, content fits at 1280x720
- Proactively reorganize: If modifications will cause overflow, automatically split content and inform the user. Don't wait to be asked
When adding images to existing slides: Move image to new slide or reduce other content first. Never add images without checking if existing content already fills the viewport.
Phase 1: Content Discovery (New Presentations)
Ask ALL questions in a single AskUserQuestion call so the user fills everything out at once:
Question 1 — Purpose (header: "Purpose"):
What is this presentation for? Options: Pitch deck / Teaching-Tutorial / Conference talk / Internal presentation
Question 2 — Length (header: "Length"):
Approximately how many slides? Options: Short 5-10 / Medium 10-20 / Long 20+
Question 3 — Content (header: "Content"):
Do you have content ready? Options: All content ready / Rough notes / Topic only
Question 4 — Inline Editing (header: "Editing"):
Do you need to edit text directly in the browser after generation? Options:
- "Yes (Recommended)" — Can edit text in-browser, auto-save to localStorage, export file
- "No" — Presentation only, keeps file smaller
Remember the user's editing choice — it determines whether edit-related code is included in Phase 3.
If user has content, ask them to share it.
Step 1.2: Image Evaluation (if images provided)
If user selected "No images" → skip to Phase 2.
If user provides an image folder:
- Scan — List all image files (.png, .jpg, .svg, .webp, etc.)
- View each image — Use the Read tool (Claude is multimodal)
- Evaluate — For each: what it shows, USABLE or NOT USABLE (with reason), what concept it represents, dominant colors
- Co-design the outline — Curated images inform slide structure alongside text. This is NOT "plan slides then add images" — design around both from the start (e.g., 3 screenshots → 3 feature slides, 1 logo → title/closing slide)
- Confirm via AskUserQuestion (header: "Outline"): "Does this slide outline and image selection look right?" Options: Looks good / Adjust images / Adjust outline
Logo in previews: If a usable logo was identified, embed it (base64) into each style preview in Phase 2 — the user sees their brand styled three different ways.
Phase 2: Style Discovery
This is the "show, don't tell" phase. Most people can't articulate design preferences in words.
Step 2.0: Style Path
Ask how they want to choose (header: "Style"):
- "Show me options" (recommended) — Generate 3 previews based on mood
- "I know what I want" — Pick from preset list directly
- "Professional templates" — Choose from 8 curated designer templates (beautiful-html-templates)
If direct selection: Show preset picker and skip to Phase 3. Available presets are defined in STYLE_PRESETS.md.
If Professional templates: Go to Step 2.P (Professional Template Selection).
Step 2.1: Mood Selection (Guided Discovery)
Ask (header: "Vibe", multiSelect: true, max 2):
What feeling should the audience have? Options:
- Impressed/Confident — Professional, trustworthy
- Excited/Energized — Innovative, bold
- Calm/Focused — Clear, thoughtful
- Inspired/Moved — Emotional, memorable
Step 2.2: Generate 3 Style Previews
Based on mood, generate 3 distinct single-slide HTML previews showing typography, colors, animation, and overall aesthetic. Read STYLE_PRESETS.md for available presets and their specifications.
| Mood |
Suggested Presets |
| Impressed/Confident |
Bold Signal, Electric Studio, Dark Botanical |
| Excited/Energized |
Creative Voltage, Neon Cyber, Split Pastel |
| Calm/Focused |
Notebook Tabs, Paper & Ink, Swiss Modern |
| Inspired/Moved |
Dark Botanical, Vintage Editorial, Pastel Geometry |
Save previews to .claude-design/slide-previews/ (style-a.html, style-b.html, style-c.html). Each should be self-contained, ~50-100 lines, showing one animated title slide.
Open each preview automatically for the user.
Step 2.3: User Picks
Ask (header: "Style"):
Which style preview do you prefer? Options: Style A: [Name] / Style B: [Name] / Style C: [Name] / Mix elements
If "Mix elements", ask for specifics.
Step 2.P: Professional Template Selection
When user selects "Professional templates" in Step 2.0:
Read the template index — Read templates/<slug>/template.html for each of the 8 templates:
- Signal, Pin & Paper, Mat, Grove, Coral, Cartesian, Vellum, Soft Editorial
Match templates to purpose — Based on user's Purpose (Phase 1):
- Pitch deck → Signal, Coral, Soft Editorial
- Teaching-Tutorial → Cartesian, Vellum, Mat
- Conference talk → Signal, Coral, Grove
- Internal presentation → Signal, Cartesian, Mat
Show template options — Present 3 templates with their screenshots/description:
Available templates:
- Signal — Deep navy + bone paper + muted gold (investor decks, consulting)
- Pin & Paper — Yellow paper + handwritten Caveat (research, workshop)
- Mat — Sage green + burnt orange (design, architecture)
- Grove — Forest green + Playfair (sustainability, wellness)
- Coral — Cream + coral + Bebas Neue (fashion, bold)
- Cartesian — Warm neutral + Playfair (academic, whitepaper)
- Vellum — Navy + warm yellow serif (research, scholarly)
- Soft Editorial — Warm paper + Cormorant (brand stories, elegant)
Generate preview — For selected template:
- Clone the template folder to a temp location
- Replace placeholder content with user's actual title/subtitle
- Save as
previews/template-<slug>.html
User picks — Ask which template they prefer
Template location: templates/<slug>/template.html (relative to this skill folder)
Phase 3: Generate Presentation
Generate the full presentation using content from Phase 1 (text, or text + curated images) and style from Phase 2.
Path A: Code Presets (existing)
If user chose "Show me options" or "I know what I want":
- Read html-template.md — HTML architecture and JS features
- Read viewport-base.css — Mandatory CSS (include in full)
- Read animation-patterns.md — Animation reference
- Generate single HTML file with all CSS/JS inline
- Use fonts from Fontshare or Google Fonts — never system fonts
Path B: Professional Templates (beautiful-html-templates)
If user chose "Professional templates" and selected a template:
- Clone template folder — Copy
templates/<slug>/ to project
- Adapt template — Follow the template adaptation rules:
- PRESERVE: fonts, color palette, layout grid, slide CSS classes, decorative elements
- REPLACE: headlines, body copy, numbers, names, dates, images
- Add/remove slides — Duplicate existing layouts to fit content; update page numbers
- Design missing layouts — If needed, create new slide types using template's design system
- Output:
<template-name>.html (single file, merge all assets inline)
Key requirements:
- Single self-contained HTML file, all CSS/JS inline
- Include the FULL contents of viewport-base.css in the
<style> block (Path A only)
- Add detailed comments explaining each section
- Every section needs a clear
/* === SECTION NAME === */ comment block
Phase 4: PPT Conversion
When converting PowerPoint files:
- Extract content — Run
python scripts/extract-pptx.py <input.pptx> <output_dir> (install python-pptx if needed: pip install python-pptx)
- Confirm with user — Present extracted slide titles, content summaries, and image counts
- Style selection — Proceed to Phase 2 for style discovery
- Generate HTML — Convert to chosen style, preserving all text, images (from assets/), slide order, and speaker notes (as HTML comments)
Phase 5: Delivery
- Clean up — Delete
.claude-design/slide-previews/ if it exists
- Open — Use
open [filename].html to launch in browser
- Summarize — Tell the user:
- File location, style name, slide count
- Navigation: Arrow keys, Space, scroll/swipe, click nav dots
- How to customize (Path A):
:root CSS variables for colors, font link for typography, .reveal class for animations
- How to customize (Path B): Edit template's CSS variables and HTML structure directly
- If inline editing was enabled: Hover top-left corner or press E to enter edit mode, click any text to edit, Ctrl+S to save
Supporting Files
| File |
Purpose |
When to Read |
| STYLE_PRESETS.md |
12 curated visual presets with colors, fonts, and signature elements |
Phase 2 (style selection) |
| viewport-base.css |
Mandatory responsive CSS — copy into every presentation |
Phase 3 (generation) |
| html-template.md |
HTML structure, JS features, code quality standards |
Phase 3 (generation) |
| animation-patterns.md |
CSS/JS animation snippets and effect-to-feeling guide |
Phase 3 (generation) |
| scripts/extract-pptx.py |
Python script for PPT content extraction |
Phase 4 (conversion) |
| templates/ |
8 professional HTML slide templates (Signal, Pin & Paper, Mat, Grove, Coral, Cartesian, Vellum, Soft Editorial) |
Phase 2.P (Professional Template Selection) |
1---2name: frontend-slides3description: Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.4---56# Frontend Slides78Create zero-dependency, animation-rich HTML presentations that run entirely in the browser.910## Core Principles11121. **Zero Dependencies** — Single HTML files with inline CSS/JS. No npm, no build tools.132. **Show, Don't Tell** — Generate visual previews, not abstract choices. People discover what they want by seeing it.143. **Distinctive Design** — No generic "AI slop." Every presentation must feel custom-crafted.154. **Viewport Fitting (NON-NEGOTIABLE)** — Every slide MUST fit exactly within 100vh. No scrolling within slides, ever. Content overflows? Split into multiple slides.1617## Design Aesthetics1819You tend to converge toward generic, "on distribution" outputs. In frontend design, this creates what users call the "AI slop" aesthetic. Avoid this: make creative, distinctive frontends that surprise and delight.2021Focus on:22- Typography: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics.23- Color & Theme: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes. Draw from IDE themes and cultural aesthetics for inspiration.24- Motion: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions.25- Backgrounds: Create atmosphere and depth rather than defaulting to solid colors. Layer CSS gradients, use geometric patterns, or add contextual effects that match the overall aesthetic.2627Avoid generic AI-generated aesthetics:28- Overused font families (Inter, Roboto, Arial, system fonts)29- Cliched color schemes (particularly purple gradients on white backgrounds)30- Predictable layouts and component patterns31- Cookie-cutter design that lacks context-specific character3233Interpret creatively and make unexpected choices that feel genuinely designed for the context. Vary between light and dark themes, different fonts, different aesthetics. You still tend to converge on common choices (Space Grotesk, for example) across generations. Avoid this: it is critical that you think outside the box!3435## Viewport Fitting Rules3637These invariants apply to EVERY slide in EVERY presentation:3839- Every `.slide` must have `height: 100vh; height: 100dvh; overflow: hidden;`40- ALL font sizes and spacing must use `clamp(min, preferred, max)` — never fixed px/rem41- Content containers need `max-height` constraints42- Images: `max-height: min(50vh, 400px)`43- Breakpoints required for heights: 700px, 600px, 500px44- Include `prefers-reduced-motion` support45- Never negate CSS functions directly (`-clamp()`, `-min()`, `-max()` are silently ignored) — use `calc(-1 * clamp(...))` instead4647**When generating, read `viewport-base.css` and include its full contents in every presentation.**4849### Content Density Limits Per Slide5051| Slide Type | Maximum Content |52|------------|-----------------|53| Title slide | 1 heading + 1 subtitle + optional tagline |54| Content slide | 1 heading + 4-6 bullet points OR 1 heading + 2 paragraphs |55| Feature grid | 1 heading + 6 cards maximum (2x3 or 3x2) |56| Code slide | 1 heading + 8-10 lines of code |57| Quote slide | 1 quote (max 3 lines) + attribution |58| Image slide | 1 heading + 1 image (max 60vh height) |5960**Content exceeds limits? Split into multiple slides. Never cram, never scroll.**6162---6364## Phase 0: Detect Mode6566Determine what the user wants:6768- **Mode A: New Presentation** — Create from scratch. Go to Phase 1.69- **Mode B: PPT Conversion** — Convert a .pptx file. Go to Phase 4.70- **Mode C: Enhancement** — Improve an existing HTML presentation. Read it, understand it, enhance. **Follow Mode C modification rules below.**7172### Mode C: Modification Rules7374When enhancing existing presentations, viewport fitting is the biggest risk:75761. **Before adding content:** Count existing elements, check against density limits772. **Adding images:** Must have `max-height: min(50vh, 400px)`. If slide already has max content, split into two slides783. **Adding text:** Max 4-6 bullets per slide. Exceeds limits? Split into continuation slides794. **After ANY modification, verify:** `.slide` has `overflow: hidden`, new elements use `clamp()`, images have viewport-relative max-height, content fits at 1280x720805. **Proactively reorganize:** If modifications will cause overflow, automatically split content and inform the user. Don't wait to be asked8182**When adding images to existing slides:** Move image to new slide or reduce other content first. Never add images without checking if existing content already fills the viewport.8384---8586## Phase 1: Content Discovery (New Presentations)8788**Ask ALL questions in a single AskUserQuestion call** so the user fills everything out at once:8990**Question 1 — Purpose** (header: "Purpose"):91What is this presentation for? Options: Pitch deck / Teaching-Tutorial / Conference talk / Internal presentation9293**Question 2 — Length** (header: "Length"):94Approximately how many slides? Options: Short 5-10 / Medium 10-20 / Long 20+9596**Question 3 — Content** (header: "Content"):97Do you have content ready? Options: All content ready / Rough notes / Topic only9899**Question 4 — Inline Editing** (header: "Editing"):100Do you need to edit text directly in the browser after generation? Options:101- "Yes (Recommended)" — Can edit text in-browser, auto-save to localStorage, export file102- "No" — Presentation only, keeps file smaller103104**Remember the user's editing choice — it determines whether edit-related code is included in Phase 3.**105106If user has content, ask them to share it.107108### Step 1.2: Image Evaluation (if images provided)109110If user selected "No images" → skip to Phase 2.111112If user provides an image folder:1131. **Scan** — List all image files (.png, .jpg, .svg, .webp, etc.)1142. **View each image** — Use the Read tool (Claude is multimodal)1153. **Evaluate** — For each: what it shows, USABLE or NOT USABLE (with reason), what concept it represents, dominant colors1164. **Co-design the outline** — Curated images inform slide structure alongside text. This is NOT "plan slides then add images" — design around both from the start (e.g., 3 screenshots → 3 feature slides, 1 logo → title/closing slide)1175. **Confirm via AskUserQuestion** (header: "Outline"): "Does this slide outline and image selection look right?" Options: Looks good / Adjust images / Adjust outline118119**Logo in previews:** If a usable logo was identified, embed it (base64) into each style preview in Phase 2 — the user sees their brand styled three different ways.120121---122123## Phase 2: Style Discovery124125**This is the "show, don't tell" phase.** Most people can't articulate design preferences in words.126127### Step 2.0: Style Path128129Ask how they want to choose (header: "Style"):130- "Show me options" (recommended) — Generate 3 previews based on mood131- "I know what I want" — Pick from preset list directly132- "Professional templates" — Choose from 8 curated designer templates (beautiful-html-templates)133134**If direct selection:** Show preset picker and skip to Phase 3. Available presets are defined in [STYLE_PRESETS.md](STYLE_PRESETS.md).135136**If Professional templates:** Go to Step 2.P (Professional Template Selection).137138### Step 2.1: Mood Selection (Guided Discovery)139140Ask (header: "Vibe", multiSelect: true, max 2):141What feeling should the audience have? Options:142- Impressed/Confident — Professional, trustworthy143- Excited/Energized — Innovative, bold144- Calm/Focused — Clear, thoughtful145- Inspired/Moved — Emotional, memorable146147### Step 2.2: Generate 3 Style Previews148149Based on mood, generate 3 distinct single-slide HTML previews showing typography, colors, animation, and overall aesthetic. Read [STYLE_PRESETS.md](STYLE_PRESETS.md) for available presets and their specifications.150151| Mood | Suggested Presets |152|------|-------------------|153| Impressed/Confident | Bold Signal, Electric Studio, Dark Botanical |154| Excited/Energized | Creative Voltage, Neon Cyber, Split Pastel |155| Calm/Focused | Notebook Tabs, Paper & Ink, Swiss Modern |156| Inspired/Moved | Dark Botanical, Vintage Editorial, Pastel Geometry |157158Save previews to `.claude-design/slide-previews/` (style-a.html, style-b.html, style-c.html). Each should be self-contained, ~50-100 lines, showing one animated title slide.159160Open each preview automatically for the user.161162### Step 2.3: User Picks163164Ask (header: "Style"):165Which style preview do you prefer? Options: Style A: [Name] / Style B: [Name] / Style C: [Name] / Mix elements166167If "Mix elements", ask for specifics.168169---170171### Step 2.P: Professional Template Selection172173When user selects "Professional templates" in Step 2.0:1741751. **Read the template index** — Read `templates/<slug>/template.html` for each of the 8 templates:176 - Signal, Pin & Paper, Mat, Grove, Coral, Cartesian, Vellum, Soft Editorial1771782. **Match templates to purpose** — Based on user's Purpose (Phase 1):179 - Pitch deck → Signal, Coral, Soft Editorial180 - Teaching-Tutorial → Cartesian, Vellum, Mat181 - Conference talk → Signal, Coral, Grove182 - Internal presentation → Signal, Cartesian, Mat1831843. **Show template options** — Present 3 templates with their screenshots/description:185 ```186 Available templates:187 - Signal — Deep navy + bone paper + muted gold (investor decks, consulting)188 - Pin & Paper — Yellow paper + handwritten Caveat (research, workshop)189 - Mat — Sage green + burnt orange (design, architecture)190 - Grove — Forest green + Playfair (sustainability, wellness)191 - Coral — Cream + coral + Bebas Neue (fashion, bold)192 - Cartesian — Warm neutral + Playfair (academic, whitepaper)193 - Vellum — Navy + warm yellow serif (research, scholarly)194 - Soft Editorial — Warm paper + Cormorant (brand stories, elegant)195 ```1961974. **Generate preview** — For selected template:198 - Clone the template folder to a temp location199 - Replace placeholder content with user's actual title/subtitle200 - Save as `previews/template-<slug>.html`2012025. **User picks** — Ask which template they prefer203204**Template location:** `templates/<slug>/template.html` (relative to this skill folder)205206---207208## Phase 3: Generate Presentation209210Generate the full presentation using content from Phase 1 (text, or text + curated images) and style from Phase 2.211212### Path A: Code Presets (existing)213If user chose "Show me options" or "I know what I want":2142151. Read [html-template.md](html-template.md) — HTML architecture and JS features2162. Read [viewport-base.css](viewport-base.css) — Mandatory CSS (include in full)2173. Read [animation-patterns.md](animation-patterns.md) — Animation reference2184. Generate single HTML file with all CSS/JS inline2195. Use fonts from Fontshare or Google Fonts — never system fonts220221### Path B: Professional Templates (beautiful-html-templates)222If user chose "Professional templates" and selected a template:2232241. **Clone template folder** — Copy `templates/<slug>/` to project2252. **Adapt template** — Follow the template adaptation rules:226 - PRESERVE: fonts, color palette, layout grid, slide CSS classes, decorative elements227 - REPLACE: headlines, body copy, numbers, names, dates, images2283. **Add/remove slides** — Duplicate existing layouts to fit content; update page numbers2294. **Design missing layouts** — If needed, create new slide types using template's design system2305. Output: `<template-name>.html` (single file, merge all assets inline)231232**Key requirements:**233- Single self-contained HTML file, all CSS/JS inline234- Include the FULL contents of viewport-base.css in the `<style>` block (Path A only)235- Add detailed comments explaining each section236- Every section needs a clear `/* === SECTION NAME === */` comment block237238---239240## Phase 4: PPT Conversion241242When converting PowerPoint files:2432441. **Extract content** — Run `python scripts/extract-pptx.py <input.pptx> <output_dir>` (install python-pptx if needed: `pip install python-pptx`)2452. **Confirm with user** — Present extracted slide titles, content summaries, and image counts2463. **Style selection** — Proceed to Phase 2 for style discovery2474. **Generate HTML** — Convert to chosen style, preserving all text, images (from assets/), slide order, and speaker notes (as HTML comments)248249---250251## Phase 5: Delivery2522531. **Clean up** — Delete `.claude-design/slide-previews/` if it exists2542. **Open** — Use `open [filename].html` to launch in browser2553. **Summarize** — Tell the user:256 - File location, style name, slide count257 - Navigation: Arrow keys, Space, scroll/swipe, click nav dots258 - How to customize (Path A): `:root` CSS variables for colors, font link for typography, `.reveal` class for animations259 - How to customize (Path B): Edit template's CSS variables and HTML structure directly260 - If inline editing was enabled: Hover top-left corner or press E to enter edit mode, click any text to edit, Ctrl+S to save261262---263264## Supporting Files265266| File | Purpose | When to Read |267|------|---------|-------------|268| [STYLE_PRESETS.md](STYLE_PRESETS.md) | 12 curated visual presets with colors, fonts, and signature elements | Phase 2 (style selection) |269| [viewport-base.css](viewport-base.css) | Mandatory responsive CSS — copy into every presentation | Phase 3 (generation) |270| [html-template.md](html-template.md) | HTML structure, JS features, code quality standards | Phase 3 (generation) |271| [animation-patterns.md](animation-patterns.md) | CSS/JS animation snippets and effect-to-feeling guide | Phase 3 (generation) |272| [scripts/extract-pptx.py](scripts/extract-pptx.py) | Python script for PPT content extraction | Phase 4 (conversion) |273| [templates/](templates/) | 8 professional HTML slide templates (Signal, Pin & Paper, Mat, Grove, Coral, Cartesian, Vellum, Soft Editorial) | Phase 2.P (Professional Template Selection) |