Skip to content

Built-in themes

Five themes ship from @react-slides/themes:

ExportVibe
minimalClean white background, blue accent, Inter.
lightPale neutrals.
darkStandard dark mode.
corporateRestrained palette for slide decks.
hackerTerminal 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 slides

Import any built-in: import { minimal, light, dark, corporate, hacker } from '@react-slides/themes'.