` tags - use Markdown ordered lists
- ❌ Don't rotate colors between sections
### 4. Content Slides (White/Black Background)
Regular learning content.
```md
---
layout: default
# NO COLOR - white/black background
---
# Fundamental Principle #1
**Definition**: Clear explanation of the concept
```python
# Code example
def example():
return "result"
\`\`\`
- **Key Point**: Important detail
- **Implication**: What this means
- **Usage**: When to apply
```
**Rules:**
- ✅ Use white/black background (NO color)
- ✅ Use primary color for accents only
- ❌ Don't use full-color backgrounds
**Two-column layout:**
```md
---
layout: two-cols-title
---
:: title ::
# Principle #2
:: left ::
### Concept
- Point 1
- Point 2
:: right ::
### Visual
```mermaid
graph LR
A --> B --> C
\`\`\`
```
### 5. Key Takeaways (White/Black Background)
Summary of main learnings.
```md
---
layout: default
---
# Key Takeaways
Main learnings from this presentation:
- **Concept A**: Core understanding gained
- **Concept B**: Key skill learned
- **Concept C**: Important principle
- **Next Steps**: Continue learning
- **Resources**: Community and docs
```
**Rules:**
- ✅ Use white/black background (NO color)
- ✅ Limit to 3-5 key points
- ✅ Make actionable and memorable
### 6. Thank You Slide (Full-Color)
Optional closing slide.
```md
---
layout: section
color: navy # Primary color
---
# Thank You!
```
## Color Guidelines
### Full-Color Slides (Use Primary Color)
- **Cover** - `layout: intro` + `color: navy`
- **Table of Contents** - `layout: side-title` + `color: navy`
- **Section Dividers** - `layout: section` + `color: navy`
- **Thank You** - `layout: section` + `color: navy`
### White/Black Background (NO Color)
- **All Content Slides** - `layout: default` or `two-cols-title` (no color)
- **Key Takeaways** - `layout: default` (no color)
### Accents (Primary Color)
Use primary color for highlights within content slides:
- Callout borders: `border-navy-500`
- Callout backgrounds: `bg-navy-50` (light) or `bg-navy-900` (dark)
- Important highlights
- Links and interactive elements
```md
# Content Slide (white background)
💡 **Tip**: Primary color as accent
```
## Layout Best Practices
### two-cols-title Content Placement
**CRITICAL**: Place ALL content inside `:: left ::` and `:: right ::` sections.
❌ **WRONG**:
```md
---
layout: two-cols-title
---
:: title ::
# Title
Text outside sections causes spacing issues
:: left ::
Left
:: right ::
Right
```
✅ **CORRECT**:
```md
---
layout: two-cols-title
---
:: title ::
# Title
:: left ::
All left content
:: right ::
All right content
```
### Consistent Spacing
**Option 1: Add descriptions (Recommended for educational content)**
```md
# Title
Brief description providing context.
- List items
```
**Option 2: Global CSS (Place after first slide content)**
```md
```
## Best Practices
1. **ONE primary color** - Use consistently throughout
2. **White/black for content** - Never use color backgrounds for learning slides
3. **Keep it simple** - Avoid excessive emojis and decorations
4. **Clean section titles** - No emojis in section headers
5. **3-5 major sections** - Stay focused on core objectives
6. **Section dividers every 8-12 slides** - Prevent overload
7. **Key Takeaways = 3-5 points** - Keep memorable
8. **Use ordered lists for section ToC** - Use Markdown lists (1. 2. 3.) with bold/opacity for progress
9. **Include contact info** - On cover slide
10. **Place global styles after first slide** - CSS applies to all slides when placed in `