Dracula Icon

Mantine

Dracula Theme for Mantine

mantine - Theme Preview

§Mantine

§Install using npm

npm i dracula-mantine -S

§Activating theme

import { MantineProvider } from '@mantine/core'
import { DraculaTheme } from 'dracula-mantine'
function Demo() {
  return (
    // Pass DraculaTheme to theme prop of MantineProvider
    <MantineProvider theme={DraculaTheme}>
      <App />
    </MantineProvider>
  )
}