summaryrefslogtreecommitdiff
path: root/tailwind.config.ts
blob: 806c6a09c60d21f3453aa6a2b95c3695ed6377fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)",
          "system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif",
        ],
      },
    },
  },
  plugins: [nextui()],
};
export default config;