summaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: ce94ce128cfd8f7ffe3f7428fb9dc199d9097102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const defaultTheme = require('tailwindcss/defaultTheme')

module.exports = {
    future: {
        // removeDeprecatedGapUtilities: true,
        // purgeLayersByDefault: true,
    },
    purge: [],
    theme: {
        extend: {
            fontFamily: {
                sans: ['Inter var', ...defaultTheme.fontFamily.sans],
            },
        },
    },
    variants: {},
    plugins: [],
}