A package that has made mantine themes.
with npm:
npm install manthemesor with yarn:
yarn add manthemesor with pnpm:
pnpm add manthemesTo install nightly versions of manthemes use npm install manthemes@next
import { MantineProvider } from "@mantine/core";
import { retro } from "manthemes/daisyui";
function App() {
return (
<MantineProvider theme={retro} withGlobalStyles withNormalizeCSS>
<YourOutlet />
</MantineProvider>
);
}For The Documentation pls refer to the manthemes documentation.