Skip to content

manthemes-dev/manthemes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Manthemes

A package that has made mantine themes.


Install

with npm:

npm install manthemes

or with yarn:

yarn add manthemes

or with pnpm:

pnpm add manthemes

To install nightly versions of manthemes use npm install manthemes@next


Usage

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.