Built-in themes
Five themes ship from @react-slides/themes:
| Export | Vibe |
|---|---|
minimal | Clean white background, blue accent, Inter. |
light | Pale neutrals. |
dark | Standard dark mode. |
corporate | Restrained palette for slide decks. |
hacker | Terminal green on black. |
import { Slide } from '@react-slides/core'import { ThemeProvider, dark } from '@react-slides/themes'
const slides = () => { return ( <ThemeProvider theme={dark}> <> <Slide> <h1>Dark theme</h1> </Slide> </> </ThemeProvider> )}
export default slidesImport any built-in: import { minimal, light, dark, corporate, hacker } from '@react-slides/themes'.