§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>
)
}