presentation
Installation
SKILL.md
Presentation Generator
Generate PowerPoint presentations using JavaScript code with the pptxgenjs library.
⚠️ CRITICAL REQUIREMENTS - READ FIRST
YOU MUST FOLLOW THESE RULES - NO EXCEPTIONS:
- ONLY use the 4 predefined themes below (NOVA, ORBIT, PULSE, MINIMA)
- NEVER create custom color variables like
const colorAccent = "0078D7" - NEVER use hardcoded hex values in your code - always reference
theme.xxx - ALWAYS include the
#prefix in hex colors (e.g.,#EF4444notEF4444) - Slide 0 (first slide) MUST also be created via
const slide = pres.addSlide()and usetheme.cover- first slide is the cover with dark/high-contrast background - Slides 1+ MUST use
theme.content- all other slides use light/readable background