Skip to content

Releases: Sajarin-M/tailwind-plugin-mantine

@devoss/[email protected]

09 Apr 07:22
9e366cd
Compare
Choose a tag to compare

Minor Changes

  • 2eb5b33: Add DEFAULT color for all colors

@devoss/[email protected]

30 Mar 08:13
2f7c2e6
Compare
Choose a tag to compare

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;

v1.1.0

13 Feb 07:16
1a702fd
Compare
Choose a tag to compare

Minor Changes