summaryrefslogtreecommitdiff
path: root/tailwind.config.ts
blob: 335d55feed843ca07c81fcec8ea5af1b46a44932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import type { Config } from "tailwindcss";
import { nextui } from "@nextui-org/react";

const config: Config = {
  content: [
    "./src/**/*.{js,ts,jsx,tsx,mdx}",
    "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
  ],
  darkMode: "class",
  theme: {
    container: { center: true },
    extend: {
      fontFamily: {
        primary: ["var(--font-inter)"],
      },
    },
  },
  plugins: [nextui()],
};
export default config;