Releases: Sajarin-M/tailwind-plugin-mantine
Releases · Sajarin-M/tailwind-plugin-mantine
@devoss/[email protected]
Minor Changes
- 2eb5b33: Add DEFAULT color for all colors
@devoss/[email protected]
Major Changes
-
eec72d0: Allow passing custom theme to the plugin.
// mantine-theme.ts export const theme = createTheme({ // Put your mantine theme override here }); // tailwind.config.ts import type { Config } from "tailwindcss"; import pluginMantine from "@devoss/tailwind-plugin-mantine"; import { theme } from "./mantine-theme"; const config: Config = { // ... plugins: [pluginMantine(theme)], // ... }; export default config;