Simple and minimal Marp theme
Slide Patterns
Use <!-- _class: style-name --> to switch styles for each page.
<!-- _class: style-name -->
title
section
toc
agenda
display
Display: large text emphasis
Column Layout
Specify <!-- _class: cols --> and use <div class="col"> for each column.
<!-- _class: cols -->
<div class="col">
Columns are equally distributed by default.
Use col-N (N = 1-10) for ratio-based widths.
col-N
col-4
col-6
This allows flexible image-text combinations.
Combine with flex utilities for alignment control.
<!-- _class: cols items-center -->
Content is vertically centered relative to the image.
Components
Bold text for emphasis.
Italic text for nuance.
A sentence with highlighted text using the accent color.
Blockquotes for citing or calling attention to important notes.
Inline code: const theme = 'canvas'
const theme = 'canvas'
// Code block with syntax highlighting function greet(name) { return `Hello, ${name}!`; } console.log(greet('Canvas'));
Thank you!