shadcn-mantine-colors
v1.0.5
Published
Shadcn theme colors for Mantine UI
Downloads
32
Readme
Shadcn Theme colors for Mantine UI.
How to Use
import colors from "shadcn-mantine-colors"; //OKLCH format
import { MantineProvider, createTheme } from '@mantine/core';
const theme = createTheme({
colors: colors
});
function App() {
return (
<MantineProvider theme={theme}>
<div>page content</div>
</MantineProvider>
);
}You can also import other formats:
import {colorsRGB, colorsHSL, colorsHEX} from "shadcn-mantine-colors";