@hpnzm/tailwind-plugin-mantine
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

Introduction

A tailwindcss plugin to bring Mantine and Tailwind CSS together with ease.

Installation

npm install @hpnzm/tailwind-plugin-mantine
# or
yarn add @hpnzm/tailwind-plugin-mantine

Usage

// mantine-theme.ts
export const theme = createTheme({
  // Put your mantine theme override here
});
// tailwind.config.ts
import type { Config } from "tailwindcss";
import pluginMantine from "@hpnzm/tailwind-plugin-mantine";

import { theme } from "./mantine-theme";
const config: Config = {
  // ...
  plugins: [pluginMantine(theme)],
  // ...
};
export default config;

/@hpnzm/tailwind-plugin-mantine/

    Package Sidebar

    Install

    npm i @hpnzm/tailwind-plugin-mantine

    Weekly Downloads

    2

    Version

    1.1.1

    License

    ISC

    Unpacked Size

    11.1 kB

    Total Files

    7

    Last publish

    Collaborators

    • nzzzm