๐Ÿ“ฆ IamLizu / cifar-web

๐Ÿ“„ tailwind.config.js ยท 12 lines
1
2
3
4
5
6
7
8
9
10
11
12module.exports = {
    purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
    darkMode: false, // or 'media' or 'class'
    theme: {
        extend: {},
    },
    variants: {
        extend: { backgroundColor: ["active"] },
    },
    plugins: [require("@tailwindcss/typography")],
};